diff --git a/.github/workflows/docker-release.yml b/.github/workflows/docker-release.yml index 44c98be..7947eaa 100644 --- a/.github/workflows/docker-release.yml +++ b/.github/workflows/docker-release.yml @@ -170,7 +170,7 @@ jobs: - name: Mint private-module read token id: private-module-token if: ${{ inputs.private-modules }} - uses: actions/create-github-app-token@v2 + uses: actions/create-github-app-token@v3 with: app-id: ${{ secrets.BOOTSTRAP_APP_ID }} private-key: ${{ secrets.BOOTSTRAP_APP_PRIVATE_KEY }} diff --git a/.github/workflows/tag-config.yml b/.github/workflows/tag-config.yml index a3f7e7f..71d1243 100644 --- a/.github/workflows/tag-config.yml +++ b/.github/workflows/tag-config.yml @@ -141,7 +141,7 @@ jobs: - name: Mint GitHub App token if: steps.changed.outputs.list != '' id: app-token - uses: actions/create-github-app-token@v2 + uses: actions/create-github-app-token@v3 with: app-id: ${{ secrets.BOOTSTRAP_APP_ID }} private-key: ${{ secrets.BOOTSTRAP_APP_PRIVATE_KEY }} diff --git a/README.md b/README.md index b2d2235..1977ab2 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ jobs: runs-on: ubuntu-latest if: github.event_name == 'pull_request' steps: - - uses: actions/create-github-app-token@v2 + - uses: actions/create-github-app-token@v3 id: pg-read-token with: app-id: ${{ secrets.BOOTSTRAP_APP_ID }} diff --git a/actions/setup-go/action.yml b/actions/setup-go/action.yml index 9b07dec..1d67c2a 100644 --- a/actions/setup-go/action.yml +++ b/actions/setup-go/action.yml @@ -60,7 +60,7 @@ runs: - name: Mint private-module read token id: private-module-token if: ${{ inputs.private-modules == 'true' }} - uses: actions/create-github-app-token@v2 + uses: actions/create-github-app-token@v3 with: app-id: ${{ inputs.private-modules-app-id }} private-key: ${{ inputs.private-modules-app-private-key }}