From 8e1e671b0d4f289fbda11c50068e22bf684442a8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jun 2026 00:52:35 +0000 Subject: [PATCH] Bump actions/checkout from 5 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 7. - [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...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' 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..aa46c24 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@v7 - name: Build run: | diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index 0499746..687b095 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@v7 - name: Check for .codecov.yaml id: codecov-enabled diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 4587f87..2c4c072 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@v7 - name: golangci-lint uses: golangci/golangci-lint-action@v8