From a0692eef308231d65b967002109b761da8036fef Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 23:12:32 +0000 Subject: [PATCH] Bump the all-github-actions group across 1 directory with 5 updates Bumps the all-github-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5` | `6` | | [nixbuild/nix-quick-install-action](https://github.com/nixbuild/nix-quick-install-action) | `33` | `34` | | [DeterminateSystems/update-flake-lock](https://github.com/determinatesystems/update-flake-lock) | `27` | `28` | | [actions/setup-go](https://github.com/actions/setup-go) | `5` | `6` | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `8.0.0` | `9.1.0` | 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 `nixbuild/nix-quick-install-action` from 33 to 34 - [Release notes](https://github.com/nixbuild/nix-quick-install-action/releases) - [Changelog](https://github.com/nixbuild/nix-quick-install-action/blob/master/RELEASE) - [Commits](https://github.com/nixbuild/nix-quick-install-action/compare/v33...v34) Updates `DeterminateSystems/update-flake-lock` from 27 to 28 - [Release notes](https://github.com/determinatesystems/update-flake-lock/releases) - [Commits](https://github.com/determinatesystems/update-flake-lock/compare/v27...v28) 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) Updates `golangci/golangci-lint-action` from 8.0.0 to 9.1.0 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](https://github.com/golangci/golangci-lint-action/compare/v8.0.0...v9.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions - dependency-name: nixbuild/nix-quick-install-action dependency-version: '34' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions - dependency-name: DeterminateSystems/update-flake-lock dependency-version: '28' 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 - dependency-name: golangci/golangci-lint-action dependency-version: 9.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 4 ++-- .github/workflows/flake-update.yml | 6 +++--- .github/workflows/gotest.yml | 4 ++-- .github/workflows/lint.yml | 6 +++--- .github/workflows/nix.yml | 4 ++-- .github/workflows/testcoverage.yml | 4 ++-- .github/workflows/vuln.yml | 4 ++-- 7 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 924408a..6477361 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,9 +5,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install nix - uses: nixbuild/nix-quick-install-action@v33 + uses: nixbuild/nix-quick-install-action@v34 with: nix_conf: experimental-features = nix-command flakes - name: build goshrt server diff --git a/.github/workflows/flake-update.yml b/.github/workflows/flake-update.yml index 4b63873..bd55ad1 100644 --- a/.github/workflows/flake-update.yml +++ b/.github/workflows/flake-update.yml @@ -9,9 +9,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install nix - uses: nixbuild/nix-quick-install-action@v33 + uses: nixbuild/nix-quick-install-action@v34 with: nix_conf: experimental-features = nix-command flakes - name: Run gomod2nix generate @@ -19,7 +19,7 @@ jobs: nix develop --command \ gomod2nix generate - name: Update flake.lock - uses: DeterminateSystems/update-flake-lock@v27 + uses: DeterminateSystems/update-flake-lock@v28 with: token: ${{ secrets.GH_TOKEN_FOR_FLAKE_UPDATE }} pr-title: "Update flake.lock" diff --git a/.github/workflows/gotest.yml b/.github/workflows/gotest.yml index 653ea28..89f52e6 100644 --- a/.github/workflows/gotest.yml +++ b/.github/workflows/gotest.yml @@ -5,9 +5,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install nix - uses: nixbuild/nix-quick-install-action@v33 + uses: nixbuild/nix-quick-install-action@v34 with: nix_conf: experimental-features = nix-command flakes - name: Start postgres database diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index cf5bc7c..7da6881 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -18,14 +18,14 @@ jobs: fail-fast: true steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version-file: "go.mod" cache: false - name: Lint - uses: golangci/golangci-lint-action@v8.0.0 + uses: golangci/golangci-lint-action@v9.1.0 with: version: latest args: --timeout 15m -v diff --git a/.github/workflows/nix.yml b/.github/workflows/nix.yml index fef4ff8..5700d35 100644 --- a/.github/workflows/nix.yml +++ b/.github/workflows/nix.yml @@ -5,9 +5,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install nix - uses: nixbuild/nix-quick-install-action@v33 + uses: nixbuild/nix-quick-install-action@v34 with: nix_conf: experimental-features = nix-command flakes - name: nix build goshrt diff --git a/.github/workflows/testcoverage.yml b/.github/workflows/testcoverage.yml index 5e07bef..bb24642 100644 --- a/.github/workflows/testcoverage.yml +++ b/.github/workflows/testcoverage.yml @@ -5,9 +5,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install nix - uses: nixbuild/nix-quick-install-action@v33 + uses: nixbuild/nix-quick-install-action@v34 with: nix_conf: experimental-features = nix-command flakes - name: Start postgres database diff --git a/.github/workflows/vuln.yml b/.github/workflows/vuln.yml index dcda806..4b13046 100644 --- a/.github/workflows/vuln.yml +++ b/.github/workflows/vuln.yml @@ -13,9 +13,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install nix - uses: nixbuild/nix-quick-install-action@v33 + uses: nixbuild/nix-quick-install-action@v34 with: nix_conf: experimental-features = nix-command flakes - name: Run govulncheck