From 5c1f0da1acf3eaeba28d32018e880d5432214551 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 18 Jan 2026 10:13:23 +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.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 4cb7078..ceaf2ff 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -9,7 +9,7 @@ jobs: # Execute the checks inside the container instead the VM. container: golangci/golangci-lint:v2.8.0-alpine steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Configure git for container run: git config --global --add safe.directory "$GITHUB_WORKSPACE" - run: ./scripts/check/check.sh @@ -18,7 +18,7 @@ jobs: name: Unit test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions/setup-go@v5 with: go-version-file: go.mod @@ -40,7 +40,7 @@ jobs: name: Release images runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Docker login run: docker login ghcr.io -u ${{ github.actor }} -p "${{ secrets.GITHUB_TOKEN }}" - name: Build and publish docker images @@ -56,7 +56,7 @@ jobs: runs-on: ubuntu-latest steps: - run: echo "VERSION=${GITHUB_REF#refs/*/}" >> ${GITHUB_ENV} # Sets VERSION env var. - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Docker login run: docker login ghcr.io -u ${{ github.actor }} -p "${{ secrets.GITHUB_TOKEN }}" - name: Build and publish docker images @@ -70,7 +70,7 @@ jobs: runs-on: ubuntu-latest steps: - run: echo "VERSION=${GITHUB_REF#refs/*/}" >> ${GITHUB_ENV} # Sets VERSION env var. - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Build binaries run: | mkdir -p ./bin