From a9caa78dbe954f7fe8a39414ea38a4301993b99b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Oct 2025 00:14:25 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yaml | 2 +- .github/workflows/ci.yaml | 6 +++--- .github/workflows/deploy.yaml | 2 +- .github/workflows/pr-bump-go-mod.yaml | 2 +- .github/workflows/release.yaml | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 1d07d59..751034d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -45,7 +45,7 @@ jobs: outputs: tag: ${{ steps.output.outputs.tag }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: docker/setup-buildx-action@v3 - name: Cache for buildx uses: actions/cache@v4 diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 46ef6d8..03122c0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -34,7 +34,7 @@ jobs: steps: - name: Add git config for Go private module run: git config --global url."https://${{ secrets.GH_PAT }}:x-oauth-basic@github.com/".insteadOf https://github.com/ - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-go@v6 with: go-version-file: 'go.mod' @@ -52,7 +52,7 @@ jobs: steps: - name: Add git config for Go private module run: git config --global url."https://${{ secrets.GH_PAT }}:x-oauth-basic@github.com/".insteadOf https://github.com/ - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-go@v6 with: go-version-file: 'go.mod' @@ -82,7 +82,7 @@ jobs: steps: - name: Add git config for Go private module run: git config --global url."https://${{ secrets.GH_PAT }}:x-oauth-basic@github.com/".insteadOf https://github.com/ - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ref: ${{ github.event.pull_request.base.ref }} - uses: actions/setup-go@v6 diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 29f05ee..b85d3e7 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -20,7 +20,7 @@ jobs: deploy: runs-on: ${{ inputs.runs-on }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: repository: ${{ github.repository_owner }}/kyber-applications token: ${{ secrets.GH_PAT }} diff --git a/.github/workflows/pr-bump-go-mod.yaml b/.github/workflows/pr-bump-go-mod.yaml index ad97aff..863efc9 100644 --- a/.github/workflows/pr-bump-go-mod.yaml +++ b/.github/workflows/pr-bump-go-mod.yaml @@ -28,7 +28,7 @@ jobs: matrix: repo: ${{ fromJson(inputs.repos) }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: repository: ${{ github.repository_owner }}/${{ matrix.repo }} token: ${{ secrets.GH_PAT }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 7cd3c9f..c57e14b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -52,7 +52,7 @@ jobs: build: ${{ steps.build.outputs.build }} version: ${{ steps.version.outputs.version }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - id: build name: Check whether to build run: echo "build=${{ hashFiles(inputs.file || 'Dockerfile') != '' }}" >> "$GITHUB_OUTPUT" @@ -89,7 +89,7 @@ jobs: env: VERSION: ${{ needs.prepare.outputs.version }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: softprops/action-gh-release@6cbd405e2c4e67a21c47fa9e383d020e4e28b836 # v2.3.3 with: body: ${{ inputs.release_body }}