From 8a32998dc8f81549c9af2559327649925ea0826b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Oct 2025 14:01:04 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 3 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 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/v3...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/codeql-analysis.yml | 2 +- .github/workflows/release.yml | 4 ++-- .github/workflows/test_pr.yml | 6 +++--- .github/workflows/test_push.yml | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 80c7825e..7b52ab7f 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -35,7 +35,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v5 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3e5f01e3..8893351c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: uses: actions/setup-node@v4 - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v5 with: fetch-depth: 0 @@ -34,7 +34,7 @@ jobs: needs: [tag] steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v5 with: fetch-depth: 0 diff --git a/.github/workflows/test_pr.yml b/.github/workflows/test_pr.yml index 40964f52..016a947c 100644 --- a/.github/workflows/test_pr.yml +++ b/.github/workflows/test_pr.yml @@ -17,7 +17,7 @@ jobs: id: go - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v5 with: fetch-depth: 0 @@ -38,7 +38,7 @@ jobs: id: go - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v5 with: ref: "refs/pull/${{ github.event.number }}/merge" @@ -56,7 +56,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v5 with: fetch-depth: 0 ref: "refs/pull/${{ github.event.number }}/merge" diff --git a/.github/workflows/test_push.yml b/.github/workflows/test_push.yml index b475f8e5..54e0fb26 100644 --- a/.github/workflows/test_push.yml +++ b/.github/workflows/test_push.yml @@ -20,7 +20,7 @@ jobs: id: go - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v5 with: fetch-depth: 0 @@ -41,7 +41,7 @@ jobs: id: go - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v5 - name: Test run: go test -coverprofile cover.out ./... @@ -57,7 +57,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v5 with: fetch-depth: 0