From e0fc5903cd55ae713f784a3d514cef9f45f3897e Mon Sep 17 00:00:00 2001 From: ooks-io Date: Sun, 19 Jan 2025 22:00:37 +1100 Subject: [PATCH] ci: app_id -> app-id --- .github/workflows/check.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index c7d50b3..3418066 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -21,13 +21,13 @@ jobs: id: generate-token uses: actions/create-github-app-token@v1 with: - app_id: ${{ vars.APP_ID }} - private_key: ${{ secrets.APP_PRIVATE_KEY }} + app-id: ${{ vars.APP_ID }} # Updated input name + private-key: ${{ secrets.APP_PRIVATE_KEY }} # Updated input name repositories: - name: Setup Git Config run: | - git config --global url."https://x-access-token:${{ steps.app-token.outputs.token }}@github.com/".insteadOf "git+ssh://git@github.com/" + git config --global url."https://x-access-token:${{ steps.generate-token.outputs.token }}@github.com/".insteadOf "git+ssh://git@github.com/" - name: Setup Nix uses: DeterminateSystems/nix-installer-action@main