diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml index 45518de..c1b80f5 100644 --- a/.github/workflows/auto-merge.yml +++ b/.github/workflows/auto-merge.yml @@ -152,7 +152,7 @@ jobs: run: gh pr review --approve "$PR_URL" - name: Wait for all workflow runs to complete - uses: go-openapi/gh-actions/ci-jobs/wait-pending-jobs@b0542d87f701a2fdba9629421026a2bdd54e2859 # v1.4.15 + uses: go-openapi/gh-actions/ci-jobs/wait-pending-jobs@8dac43b693193389fbdb110e0c39aa013ae089ef # v1.4.16 with: pr-url: ${{ env.PR_URL }} github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/bump-release-monorepo.yml b/.github/workflows/bump-release-monorepo.yml index ee90161..63fe62a 100644 --- a/.github/workflows/bump-release-monorepo.yml +++ b/.github/workflows/bump-release-monorepo.yml @@ -136,7 +136,7 @@ jobs: - name: Detect go mono-repo id: detect-monorepo - uses: go-openapi/gh-actions/ci-jobs/detect-go-monorepo@b0542d87f701a2fdba9629421026a2bdd54e2859 # v1.4.15 + uses: go-openapi/gh-actions/ci-jobs/detect-go-monorepo@8dac43b693193389fbdb110e0c39aa013ae089ef # v1.4.16 bump-release-single: name: Bump release (single module) @@ -195,7 +195,7 @@ jobs: - name: Determine next tag id: bump-release - uses: go-openapi/gh-actions/ci-jobs/next-tag@b0542d87f701a2fdba9629421026a2bdd54e2859 # v1.4.15 + uses: go-openapi/gh-actions/ci-jobs/next-tag@8dac43b693193389fbdb110e0c39aa013ae089ef # v1.4.16 with: bump-patch: ${{ steps.bump-check.outputs.bump-patch }} bump-minor: ${{ steps.bump-check.outputs.bump-minor }} @@ -307,7 +307,7 @@ jobs: - name: Configure bot credentials if: ${{ inputs.enable-tag-signing == 'true' }} - uses: go-openapi/gh-actions/ci-jobs/bot-credentials@b0542d87f701a2fdba9629421026a2bdd54e2859 # v1.4.15 + uses: go-openapi/gh-actions/ci-jobs/bot-credentials@8dac43b693193389fbdb110e0c39aa013ae089ef # v1.4.16 # This is using the GPG signature of bot-go-openapi. # # For go-openapi repos (using secrets: inherit): diff --git a/.github/workflows/bump-release.yml b/.github/workflows/bump-release.yml index e15d381..88c8e00 100644 --- a/.github/workflows/bump-release.yml +++ b/.github/workflows/bump-release.yml @@ -114,7 +114,7 @@ jobs: - name: Determine next tag id: bump-release - uses: go-openapi/gh-actions/ci-jobs/next-tag@b0542d87f701a2fdba9629421026a2bdd54e2859 # v1.4.15 + uses: go-openapi/gh-actions/ci-jobs/next-tag@8dac43b693193389fbdb110e0c39aa013ae089ef # v1.4.16 with: bump-patch: ${{ steps.bump-check.outputs.bump-patch }} bump-minor: ${{ steps.bump-check.outputs.bump-minor }} @@ -122,7 +122,7 @@ jobs: - name: Configure bot credentials if: ${{ inputs.enable-tag-signing == 'true' }} - uses: go-openapi/gh-actions/ci-jobs/bot-credentials@b0542d87f701a2fdba9629421026a2bdd54e2859 # v1.4.15 + uses: go-openapi/gh-actions/ci-jobs/bot-credentials@8dac43b693193389fbdb110e0c39aa013ae089ef # v1.4.16 # This is using the GPG signature of bot-go-openapi. # # For go-openapi repos (using secrets: inherit): diff --git a/.github/workflows/collect-reports.yml b/.github/workflows/collect-reports.yml index b9b6f8b..48965e4 100644 --- a/.github/workflows/collect-reports.yml +++ b/.github/workflows/collect-reports.yml @@ -48,7 +48,7 @@ jobs: path: reports/ - name: Install go-junit-report - uses: go-openapi/gh-actions/install/go-junit-report@b0542d87f701a2fdba9629421026a2bdd54e2859 # v1.4.15 + uses: go-openapi/gh-actions/install/go-junit-report@8dac43b693193389fbdb110e0c39aa013ae089ef # v1.4.16 - name: Convert test reports to a merged JUnit XML # NOTE: codecov test reports only support JUnit format at this moment. See https://docs.codecov.com/docs/test-analytics. @@ -73,7 +73,7 @@ jobs: verbose: true - name: Install go-ctrf-json-reporter - uses: go-openapi/gh-actions/install/go-ctrf-json-reporter@b0542d87f701a2fdba9629421026a2bdd54e2859 # v1.4.15 + uses: go-openapi/gh-actions/install/go-ctrf-json-reporter@8dac43b693193389fbdb110e0c39aa013ae089ef # v1.4.16 - name: Convert test reports to CTRF JSON # description: | diff --git a/.github/workflows/contributors.yml b/.github/workflows/contributors.yml index 5720636..6e6f154 100644 --- a/.github/workflows/contributors.yml +++ b/.github/workflows/contributors.yml @@ -118,7 +118,7 @@ jobs: } > "${file}" done - name: Configure bot credentials - uses: go-openapi/gh-actions/ci-jobs/bot-credentials@b0542d87f701a2fdba9629421026a2bdd54e2859 # v1.4.15 + uses: go-openapi/gh-actions/ci-jobs/bot-credentials@8dac43b693193389fbdb110e0c39aa013ae089ef # v1.4.16 id: bot-credentials # For go-openapi repos (using secrets: inherit): # Falls back to: CI_BOT_APP_ID, CI_BOT_APP_PRIVATE_KEY, CI_BOT_GPG_PRIVATE_KEY, etc. @@ -183,7 +183,7 @@ jobs: - name: Auto-approve PR run: gh pr review --approve "$PR_URL" - name: Wait for all workflow runs to complete - uses: go-openapi/gh-actions/ci-jobs/wait-pending-jobs@b0542d87f701a2fdba9629421026a2bdd54e2859 # v1.4.15 + uses: go-openapi/gh-actions/ci-jobs/wait-pending-jobs@8dac43b693193389fbdb110e0c39aa013ae089ef # v1.4.16 with: pr-url: ${{ env.PR_URL }} github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/go-test-monorepo.yml b/.github/workflows/go-test-monorepo.yml index e13aeee..8934722 100644 --- a/.github/workflows/go-test-monorepo.yml +++ b/.github/workflows/go-test-monorepo.yml @@ -55,7 +55,7 @@ jobs: - name: Detect go mono-repo id: detect-monorepo - uses: go-openapi/gh-actions/ci-jobs/detect-go-monorepo@b0542d87f701a2fdba9629421026a2bdd54e2859 # v1.4.15 + uses: go-openapi/gh-actions/ci-jobs/detect-go-monorepo@8dac43b693193389fbdb110e0c39aa013ae089ef # v1.4.16 - name: golangci-lint [monorepo] # golangci-action v9.1+ has an experimental built-in mono repo detection setup. @@ -132,10 +132,10 @@ jobs: - name: Detect go version capabilities id: detect-go-version - uses: go-openapi/gh-actions/ci-jobs/detect-go-version@b0542d87f701a2fdba9629421026a2bdd54e2859 # v1.4.15 + uses: go-openapi/gh-actions/ci-jobs/detect-go-version@8dac43b693193389fbdb110e0c39aa013ae089ef # v1.4.16 - name: Install gotestsum - uses: go-openapi/gh-actions/install/gotestsum@b0542d87f701a2fdba9629421026a2bdd54e2859 # v1.4.15 + uses: go-openapi/gh-actions/install/gotestsum@8dac43b693193389fbdb110e0c39aa013ae089ef # v1.4.16 - name: Ensure TMP is created on windows runners # On windows, some tests require testing.TempDir to reside on the same drive as the code. diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index 64ad8e3..9b2b049 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -80,7 +80,7 @@ jobs: cache: true - name: Install gotestsum - uses: go-openapi/gh-actions/install/gotestsum@b0542d87f701a2fdba9629421026a2bdd54e2859 # v1.4.15 + uses: go-openapi/gh-actions/install/gotestsum@8dac43b693193389fbdb110e0c39aa013ae089ef # v1.4.16 - name: Ensure TMP is created on windows runners # On windows, some tests require testing.TempDir to reside on the same drive as the code. diff --git a/.github/workflows/prepare-release-monorepo.yml b/.github/workflows/prepare-release-monorepo.yml index 3dde2ac..6532fb9 100644 --- a/.github/workflows/prepare-release-monorepo.yml +++ b/.github/workflows/prepare-release-monorepo.yml @@ -108,7 +108,7 @@ jobs: cache-dependency-path: "**/go.sum" - name: Detect go mono-repo id: detect-monorepo - uses: go-openapi/gh-actions/ci-jobs/detect-go-monorepo@b0542d87f701a2fdba9629421026a2bdd54e2859 # v1.4.15 + uses: go-openapi/gh-actions/ci-jobs/detect-go-monorepo@8dac43b693193389fbdb110e0c39aa013ae089ef # v1.4.16 - name: Update go.mod files for new release env: TARGET_TAG: ${{ inputs.target-tag }} @@ -185,7 +185,7 @@ jobs: echo "::notice title=changes::Git status after updates" git status --short - name: Configure bot credentials - uses: go-openapi/gh-actions/ci-jobs/bot-credentials@b0542d87f701a2fdba9629421026a2bdd54e2859 # v1.4.15 + uses: go-openapi/gh-actions/ci-jobs/bot-credentials@8dac43b693193389fbdb110e0c39aa013ae089ef # v1.4.16 id: bot-credentials # For go-openapi repos (using secrets: inherit): # Falls back to: CI_BOT_APP_ID, CI_BOT_APP_PRIVATE_KEY, CI_BOT_GPG_PRIVATE_KEY, etc. @@ -268,7 +268,7 @@ jobs: run: gh pr review --approve "$PR_URL" - name: Wait for all workflow runs to complete if: ${{ needs.prepare-modules.outputs.pull-request-url != '' }} - uses: go-openapi/gh-actions/ci-jobs/wait-pending-jobs@b0542d87f701a2fdba9629421026a2bdd54e2859 # v1.4.15 + uses: go-openapi/gh-actions/ci-jobs/wait-pending-jobs@8dac43b693193389fbdb110e0c39aa013ae089ef # v1.4.16 with: pr-url: ${{ env.PR_URL }} github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0d63b17..1575dc9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -89,7 +89,7 @@ jobs: name: Detect go mono-repo if: ${{ inputs.is-monorepo == 'true' }} id: detect-monorepo - uses: go-openapi/gh-actions/ci-jobs/detect-go-monorepo@b0542d87f701a2fdba9629421026a2bdd54e2859 # v1.4.15 + uses: go-openapi/gh-actions/ci-jobs/detect-go-monorepo@8dac43b693193389fbdb110e0c39aa013ae089ef # v1.4.16 - name: Install git-cliff uses: taiki-e/install-action@a6b2e2dcd845ddd7f509ce4f3ed3d922b80cc5d9 # v2.84.0