Skip to content

Commit 9ce38c7

Browse files
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](actions/checkout@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](nixbuild/nix-quick-install-action@v33...v34) Updates `DeterminateSystems/update-flake-lock` from 27 to 28 - [Release notes](https://github.com/determinatesystems/update-flake-lock/releases) - [Commits](DeterminateSystems/update-flake-lock@v27...v28) Updates `actions/setup-go` from 5 to 6 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@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](golangci/golangci-lint-action@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] <support@github.com>
1 parent 72bad0a commit 9ce38c7

7 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- name: Checkout repo
8-
uses: actions/checkout@v5
8+
uses: actions/checkout@v6
99
- name: Install nix
10-
uses: nixbuild/nix-quick-install-action@v33
10+
uses: nixbuild/nix-quick-install-action@v34
1111
with:
1212
nix_conf: experimental-features = nix-command flakes
1313
- name: build goshrt server

.github/workflows/flake-update.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout repo
12-
uses: actions/checkout@v5
12+
uses: actions/checkout@v6
1313
- name: Install nix
14-
uses: nixbuild/nix-quick-install-action@v33
14+
uses: nixbuild/nix-quick-install-action@v34
1515
with:
1616
nix_conf: experimental-features = nix-command flakes
1717
- name: Run gomod2nix generate
1818
run: |
1919
nix develop --command \
2020
gomod2nix generate
2121
- name: Update flake.lock
22-
uses: DeterminateSystems/update-flake-lock@v27
22+
uses: DeterminateSystems/update-flake-lock@v28
2323
with:
2424
token: ${{ secrets.GH_TOKEN_FOR_FLAKE_UPDATE }}
2525
pr-title: "Update flake.lock"

.github/workflows/gotest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- name: Checkout repo
8-
uses: actions/checkout@v5
8+
uses: actions/checkout@v6
99
- name: Install nix
10-
uses: nixbuild/nix-quick-install-action@v33
10+
uses: nixbuild/nix-quick-install-action@v34
1111
with:
1212
nix_conf: experimental-features = nix-command flakes
1313
- name: Start postgres database

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ jobs:
1818
fail-fast: true
1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222
- name: Install Go
23-
uses: actions/setup-go@v5
23+
uses: actions/setup-go@v6
2424
with:
2525
go-version-file: "go.mod"
2626
cache: false
2727
- name: Lint
28-
uses: golangci/golangci-lint-action@v8.0.0
28+
uses: golangci/golangci-lint-action@v9.2.0
2929
with:
3030
version: latest
3131
args: --timeout 15m -v

.github/workflows/nix.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- name: Checkout repo
8-
uses: actions/checkout@v5
8+
uses: actions/checkout@v6
99
- name: Install nix
10-
uses: nixbuild/nix-quick-install-action@v33
10+
uses: nixbuild/nix-quick-install-action@v34
1111
with:
1212
nix_conf: experimental-features = nix-command flakes
1313
- name: nix build goshrt

.github/workflows/testcoverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- name: Checkout repo
8-
uses: actions/checkout@v5
8+
uses: actions/checkout@v6
99
- name: Install nix
10-
uses: nixbuild/nix-quick-install-action@v33
10+
uses: nixbuild/nix-quick-install-action@v34
1111
with:
1212
nix_conf: experimental-features = nix-command flakes
1313
- name: Start postgres database

.github/workflows/vuln.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout repo
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
- name: Install nix
18-
uses: nixbuild/nix-quick-install-action@v33
18+
uses: nixbuild/nix-quick-install-action@v34
1919
with:
2020
nix_conf: experimental-features = nix-command flakes
2121
- name: Run govulncheck

0 commit comments

Comments
 (0)