From d71f25532d156b5a53c54dc0941af2d60885dbe9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Nov 2025 00:22:39 +0000 Subject: [PATCH] Bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/go-build.yml | 2 +- .github/workflows/go-test.yml | 2 +- .github/workflows/golangci-lint.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/go-build.yml b/.github/workflows/go-build.yml index c3c2a81..796d2f8 100644 --- a/.github/workflows/go-build.yml +++ b/.github/workflows/go-build.yml @@ -20,7 +20,7 @@ jobs: id: go - name: Check out code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Build run: | diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index 0499746..3e8c27b 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -23,7 +23,7 @@ jobs: id: go - name: Check out code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Check for .codecov.yaml id: codecov-enabled diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 4587f87..2e5ffc3 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -13,6 +13,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/setup-go@v3 - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: golangci-lint uses: golangci/golangci-lint-action@v8