From 9bff76082e43db7a1554d84bc5295fa7adccaecb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 May 2026 16:30:26 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 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/v4...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/ci.yml | 6 +++--- .github/workflows/release.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 658a71a..fc4253b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: go-version: '^1.26.3' - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Lint Go Code with golangci-lint uses: golangci/golangci-lint-action@v9 @@ -39,7 +39,7 @@ jobs: go-version: '^1.26.3' - name: Check out code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Run Unit tests. run: | @@ -57,7 +57,7 @@ jobs: name: Build and Integration tests needs: [lint, test] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions/setup-go@v5 with: go-version: '^1.26.3' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 34d6565..8e57923 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest name: goreleaser steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Login to DockerHub Registry run: echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin - name: Unshallow Fetch