Skip to content

Commit c7b97a8

Browse files
Bump the all-github-actions group across 1 directory with 3 updates
Bumps the all-github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-go](https://github.com/actions/setup-go) and [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action). 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](actions/checkout@v4...v5) 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 to 9 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@v8...v9) --- 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 - dependency-name: golangci/golangci-lint-action dependency-version: '9' 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 a127fd7 commit c7b97a8

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build-docker.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
lint:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v6
1515

1616
- name: Set Swap Space
1717
uses: pierotofy/set-swap-space@49819abfb41bd9b44fb781159c033dba90353a7c
@@ -25,14 +25,14 @@ jobs:
2525
echo "version=$GO_VERSION" >> "$GITHUB_OUTPUT"
2626
echo "$GO_VERSION"
2727
28-
- uses: actions/setup-go@v5
28+
- uses: actions/setup-go@v6
2929
with:
3030
go-version: ${{ steps.toolchain.outputs.version }}
3131
cache-dependency-path: "go.sum"
3232
check-latest: true
3333

3434
- name: Run Golangci lint
35-
uses: golangci/golangci-lint-action@v8
35+
uses: golangci/golangci-lint-action@v9
3636
with:
3737
version: latest
3838
args: --print-resources-usage
@@ -51,7 +51,7 @@ jobs:
5151

5252
runs-on: ubuntu-latest
5353
steps:
54-
- uses: actions/checkout@v4
54+
- uses: actions/checkout@v6
5555

5656
- name: Set Swap Space
5757
uses: pierotofy/set-swap-space@49819abfb41bd9b44fb781159c033dba90353a7c
@@ -65,7 +65,7 @@ jobs:
6565
echo "version=$GO_VERSION" >> "$GITHUB_OUTPUT"
6666
echo "$GO_VERSION"
6767
68-
- uses: actions/setup-go@v5
68+
- uses: actions/setup-go@v6
6969
with:
7070
go-version: ${{ steps.toolchain.outputs.version }}
7171
cache-dependency-path: "go.sum"

.github/workflows/release-assets.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
release:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v6
1212

1313
- name: Set Swap Space
1414
uses: pierotofy/set-swap-space@49819abfb41bd9b44fb781159c033dba90353a7c
@@ -22,7 +22,7 @@ jobs:
2222
echo "version=$GO_VERSION" >> "$GITHUB_OUTPUT"
2323
echo "$GO_VERSION"
2424
25-
- uses: actions/setup-go@v5
25+
- uses: actions/setup-go@v6
2626
with:
2727
go-version: ${{ steps.toolchain.outputs.version }}
2828
cache-dependency-path: "go.sum"

0 commit comments

Comments
 (0)