From 1035995f96727303babe967a11ed79c2e96a936c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 26 Apr 2026 17:27:00 +0000 Subject: [PATCH] deps: bump the github-actions group with 5 updates Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3.11.1` | `4.0.0` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `7.0.0` | `7.1.0` | | [actions/setup-node](https://github.com/actions/setup-node) | `5` | `6` | | [actions/github-script](https://github.com/actions/github-script) | `8` | `9` | Updates `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) Updates `docker/setup-buildx-action` from 3.11.1 to 4.0.0 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v3.11.1...v4.0.0) Updates `docker/build-push-action` from 7.0.0 to 7.1.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v7.0.0...v7.1.0) Updates `actions/setup-node` from 5 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v5...v6) Updates `actions/github-script` from 8 to 9 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v8...v9) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/setup-buildx-action dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/build-push-action dependency-version: 7.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build-and-release.yml | 6 +++--- .github/workflows/discord-notify.yml | 2 +- .github/workflows/docker-package.yml | 6 +++--- .github/workflows/lint.yml | 8 ++++---- .github/workflows/run-test.yml | 2 +- .github/workflows/update-go-toolchain.yml | 4 ++-- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index 65f5ef94b..d8e1b6a63 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -26,7 +26,7 @@ jobs: datafiles_archive: ${{ steps.meta.outputs.datafiles_archive }} checksums_file: ${{ steps.meta.outputs.checksums_file }} steps: - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6 with: persist-credentials: false @@ -74,7 +74,7 @@ jobs: env: BINARY_VERSION: ${{ needs.prep.outputs.binary_version }} steps: - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6 with: persist-credentials: false - uses: ./.github/actions/setup-go @@ -142,7 +142,7 @@ jobs: CHECKSUMS_FILE: ${{ needs.prep.outputs.checksums_file }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6 with: persist-credentials: false diff --git a/.github/workflows/discord-notify.yml b/.github/workflows/discord-notify.yml index 5fcde7ef9..996d85c69 100644 --- a/.github/workflows/discord-notify.yml +++ b/.github/workflows/discord-notify.yml @@ -15,7 +15,7 @@ jobs: if: ${{ !github.event.pull_request.draft }} runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Resolve Discord webhook URL id: webhook run: | diff --git a/.github/workflows/docker-package.yml b/.github/workflows/docker-package.yml index 41c7bc6db..53388bfcb 100644 --- a/.github/workflows/docker-package.yml +++ b/.github/workflows/docker-package.yml @@ -27,7 +27,7 @@ jobs: attestations: write id-token: write steps: - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6 with: persist-credentials: false @@ -36,7 +36,7 @@ jobs: run: echo "version=$(make go-version)" >> "$GITHUB_OUTPUT" - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3.11.1 + uses: docker/setup-buildx-action@v4.0.0 - name: Log in to the Container registry ${{ env.REGISTRY }} uses: docker/login-action@v4.1.0 @@ -59,7 +59,7 @@ jobs: - name: Build and push Docker image id: push - uses: docker/build-push-action@v7.0.0 + uses: docker/build-push-action@v7.1.0 with: context: . push: ${{ github.event_name != 'pull_request' }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 3f42f7009..ed3e1dc6c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -27,7 +27,7 @@ jobs: js_lint: >- ${{ steps.filter.outputs.js_lint }} steps: - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6 with: fetch-depth: 0 persist-credentials: false @@ -59,7 +59,7 @@ jobs: go-lint: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6 with: persist-credentials: false @@ -74,12 +74,12 @@ jobs: if: >- needs.detect-changes.outputs.js_lint == 'true' steps: - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6 with: persist-credentials: false - name: Set up Node.js - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: node-version: '22' diff --git a/.github/workflows/run-test.yml b/.github/workflows/run-test.yml index 23dde67e2..36362eaea 100644 --- a/.github/workflows/run-test.yml +++ b/.github/workflows/run-test.yml @@ -24,7 +24,7 @@ jobs: test: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6 with: persist-credentials: false - uses: ./.github/actions/setup-go diff --git a/.github/workflows/update-go-toolchain.yml b/.github/workflows/update-go-toolchain.yml index 78f0faa90..fbb702eca 100644 --- a/.github/workflows/update-go-toolchain.yml +++ b/.github/workflows/update-go-toolchain.yml @@ -21,13 +21,13 @@ jobs: BASE_BRANCH: master PR_BRANCH: automation/update-go-toolchain steps: - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v6 with: persist-credentials: false - name: Detect latest stable Go release id: detect - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: script: | const fs = require('node:fs')