From 1353aaa3d64d25146c4f3a0632b4a04ee38498f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Oct 2025 14:03:38 +0000 Subject: [PATCH] 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/bump-minor.yml | 2 +- .github/workflows/bump-patch.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/test.yml | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/bump-minor.yml b/.github/workflows/bump-minor.yml index 46bc14fc..82226925 100644 --- a/.github/workflows/bump-minor.yml +++ b/.github/workflows/bump-minor.yml @@ -6,7 +6,7 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ssh-key: "${{ secrets.PUSH_TAG_PRIVATE_KEY }}" diff --git a/.github/workflows/bump-patch.yml b/.github/workflows/bump-patch.yml index c6f035aa..b9666e2b 100644 --- a/.github/workflows/bump-patch.yml +++ b/.github/workflows/bump-patch.yml @@ -6,7 +6,7 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: ssh-key: "${{ secrets.PUSH_TAG_PRIVATE_KEY }}" diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 8e27b108..cd332e28 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + 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 8a900bfb..3ec30c5d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: if: github.repository == 'go-rel/rel' steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 - name: Set up Go diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 22f48907..eedb5914 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,7 @@ jobs: with: go-version: ${{ matrix.go }} - name: Check out code into the Go module directory - uses: actions/checkout@v4 + uses: actions/checkout@v5 - run: go test -race ./... coverage: @@ -35,7 +35,7 @@ jobs: with: go-version: 1.21 - name: Check out code into the Go module directory - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 2 - run: go test -race -tags=all -coverprofile=coverage.txt -covermode=atomic ./...