From 341fd57b36ca49dcd4a1a60ce749a08cb55a5871 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 13:36:35 +0000 Subject: [PATCH] build(deps): bump the dependencies group across 1 directory with 5 updates Bumps the dependencies group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5` | `6` | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `8.0.0` | `9.2.0` | | [megalinter/megalinter](https://github.com/megalinter/megalinter) | `9.1.0` | `9.4.0` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) | `6` | `7` | Updates `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) Updates `golangci/golangci-lint-action` from 8.0.0 to 9.2.0 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](https://github.com/golangci/golangci-lint-action/compare/v8.0.0...v9.2.0) Updates `megalinter/megalinter` from 9.1.0 to 9.4.0 - [Release notes](https://github.com/megalinter/megalinter/releases) - [Changelog](https://github.com/oxsecurity/megalinter/blob/main/CHANGELOG.md) - [Commits](https://github.com/megalinter/megalinter/compare/v9.1.0...v9.4.0) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) Updates `goreleaser/goreleaser-action` from 6 to 7 - [Release notes](https://github.com/goreleaser/goreleaser-action/releases) - [Commits](https://github.com/goreleaser/goreleaser-action/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: golangci/golangci-lint-action dependency-version: 9.2.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: megalinter/megalinter dependency-version: 9.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: goreleaser/goreleaser-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/checks.yml | 18 +++++++++--------- .github/workflows/codespell.yml | 2 +- .github/workflows/promote.yml | 4 ++-- .github/workflows/release.yml | 6 +++--- 4 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 5d735c94..6a4fb756 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -15,17 +15,17 @@ jobs: name: lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 - uses: actions/setup-go@v6 with: go-version-file: go.mod check-latest: true - - uses: golangci/golangci-lint-action@v8.0.0 + - uses: golangci/golangci-lint-action@v9.2.0 with: version: v2.1.6 - - uses: megalinter/megalinter/flavors/go@v9.1.0 + - uses: megalinter/megalinter/flavors/go@v9.4.0 env: DEFAULT_BRANCH: ${{ github.event.repository.default_branch }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -37,7 +37,7 @@ jobs: name: test-linux runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 2 - name: Set up QEMU @@ -46,7 +46,7 @@ jobs: with: go-version-file: go.mod check-latest: true - - uses: actions/cache@v4 + - uses: actions/cache@v5 if: ${{ !env.ACT }} with: path: ~/go/pkg/mod @@ -77,7 +77,7 @@ jobs: name: test-host-${{matrix.os}} runs-on: ${{matrix.os}} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 2 - uses: actions/setup-go@v6 @@ -95,12 +95,12 @@ jobs: name: snapshot runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: go-version-file: go.mod check-latest: true - - uses: actions/cache@v4 + - uses: actions/cache@v5 if: ${{ !env.ACT }} with: path: ~/go/pkg/mod @@ -109,7 +109,7 @@ jobs: ${{ runner.os }}-go- - name: GoReleaser id: goreleaser - uses: goreleaser/goreleaser-action@v6 + uses: goreleaser/goreleaser-action@v7 with: version: v2 args: release --snapshot --clean diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index 7b6140c4..2404046c 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -18,6 +18,6 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Codespell uses: codespell-project/actions-codespell@v2 diff --git a/.github/workflows/promote.yml b/.github/workflows/promote.yml index 6acd6dc7..241cac9b 100644 --- a/.github/workflows/promote.yml +++ b/.github/workflows/promote.yml @@ -10,7 +10,7 @@ jobs: name: promote runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 ref: master @@ -20,7 +20,7 @@ jobs: with: go-version-file: go.mod check-latest: true - - uses: actions/cache@v4 + - uses: actions/cache@v5 if: ${{ !env.ACT }} with: path: ~/go/pkg/mod diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e6ea61d9..1d54a11b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,14 +10,14 @@ jobs: name: release runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 - uses: actions/setup-go@v6 with: go-version-file: go.mod check-latest: true - - uses: actions/cache@v4 + - uses: actions/cache@v5 if: ${{ !env.ACT }} with: path: ~/go/pkg/mod @@ -25,7 +25,7 @@ jobs: restore-keys: | ${{ runner.os }}-go- - name: GoReleaser - uses: goreleaser/goreleaser-action@v6 + uses: goreleaser/goreleaser-action@v7 with: version: latest args: release --clean