From 876e25ffaa9b568ec9b4969c838bc02fa9c36851 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 07:21:06 +0000 Subject: [PATCH] Bump the all-github-actions group across 1 directory with 2 updates Bumps the all-github-actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-go](https://github.com/actions/setup-go). Updates `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) Updates `actions/setup-go` from 5 to 6 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build-docker.yaml | 8 ++++---- .github/workflows/release-assets.yaml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-docker.yaml b/.github/workflows/build-docker.yaml index 619eb40..be66aec 100644 --- a/.github/workflows/build-docker.yaml +++ b/.github/workflows/build-docker.yaml @@ -11,7 +11,7 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set Swap Space uses: pierotofy/set-swap-space@49819abfb41bd9b44fb781159c033dba90353a7c @@ -25,7 +25,7 @@ jobs: echo "version=$GO_VERSION" >> "$GITHUB_OUTPUT" echo "$GO_VERSION" - - uses: actions/setup-go@v5 + - uses: actions/setup-go@v6 with: go-version: ${{ steps.toolchain.outputs.version }} cache-dependency-path: "go.sum" @@ -51,7 +51,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set Swap Space uses: pierotofy/set-swap-space@49819abfb41bd9b44fb781159c033dba90353a7c @@ -65,7 +65,7 @@ jobs: echo "version=$GO_VERSION" >> "$GITHUB_OUTPUT" echo "$GO_VERSION" - - uses: actions/setup-go@v5 + - uses: actions/setup-go@v6 with: go-version: ${{ steps.toolchain.outputs.version }} cache-dependency-path: "go.sum" diff --git a/.github/workflows/release-assets.yaml b/.github/workflows/release-assets.yaml index 5d7d56e..2e12710 100644 --- a/.github/workflows/release-assets.yaml +++ b/.github/workflows/release-assets.yaml @@ -8,7 +8,7 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set Swap Space uses: pierotofy/set-swap-space@49819abfb41bd9b44fb781159c033dba90353a7c @@ -22,7 +22,7 @@ jobs: echo "version=$GO_VERSION" >> "$GITHUB_OUTPUT" echo "$GO_VERSION" - - uses: actions/setup-go@v5 + - uses: actions/setup-go@v6 with: go-version: ${{ steps.toolchain.outputs.version }} cache-dependency-path: "go.sum"