Skip to content

Commit 01261ef

Browse files
build(deps): bump the all-actions group across 1 directory with 4 updates
Bumps the all-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-go](https://github.com/actions/setup-go), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [check-spelling/check-spelling](https://github.com/check-spelling/check-spelling). 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](actions/checkout@v4...v6) Updates `actions/setup-go` from 5 to 6 - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](actions/setup-go@v5...v6) Updates `actions/upload-artifact` from 4 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v6) Updates `check-spelling/check-spelling` from 0.0.24 to 0.0.25 - [Release notes](https://github.com/check-spelling/check-spelling/releases) - [Commits](check-spelling/check-spelling@v0.0.24...v0.0.25) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: check-spelling/check-spelling dependency-version: 0.0.25 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 2fa9f98 commit 01261ef

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/build-image-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-22.04
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
- name: Set up Docker Buildx for multi-platform builds
2020
uses: docker/setup-buildx-action@v3
2121
with:

.github/workflows/build-image-semver.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-22.04
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919
- name: Set up Docker Buildx for multi-platform builds
2020
uses: docker/setup-buildx-action@v3
2121
with:

.github/workflows/go-build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ jobs:
1818
runs-on: ubuntu-22.04
1919
name: Go build (Linux)
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v6
2222
- name: Set up Go
23-
uses: actions/setup-go@v5
23+
uses: actions/setup-go@v6
2424
with:
2525
go-version: '1.24'
2626
check-latest: true
2727

2828
- name: Build (amd64)
2929
run: GOOS=linux GOARCH=amd64 CGO_ENABLED=1 ./build.sh
3030
- name: Upload binary
31-
uses: actions/upload-artifact@v4
31+
uses: actions/upload-artifact@v6
3232
with:
3333
name: lightningstream_linux_amd64.bin
3434
path: bin/lightningstream
@@ -38,25 +38,25 @@ jobs:
3838
runs-on: macos-15
3939
name: Go build (macOS)
4040
steps:
41-
- uses: actions/checkout@v4
41+
- uses: actions/checkout@v6
4242
- name: Set up Go
43-
uses: actions/setup-go@v5
43+
uses: actions/setup-go@v6
4444
with:
4545
go-version: '1.24'
4646
check-latest: true
4747

4848
- name: Build (amd64)
4949
run: GOOS=darwin GOARCH=amd64 CGO_ENABLED=1 ./build.sh
5050
- name: Upload binary
51-
uses: actions/upload-artifact@v4
51+
uses: actions/upload-artifact@v6
5252
with:
5353
name: lightningstream_darwin_amd64.bin
5454
path: bin/lightningstream
5555

5656
- name: Build (arm64)
5757
run: GOOS=darwin GOARCH=arm64 CGO_ENABLED=1 ./build.sh
5858
- name: Upload binary
59-
uses: actions/upload-artifact@v4
59+
uses: actions/upload-artifact@v6
6060
with:
6161
name: lightningstream_darwin_arm64.bin
6262
path: bin/lightningstream

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222

2323
name: Go ${{ matrix.go }} tests
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v6
2626
- name: Set up Go
27-
uses: actions/setup-go@v5
27+
uses: actions/setup-go@v6
2828
with:
2929
go-version: ${{ matrix.go }}
3030
- name: Build

.github/workflows/spelling.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
steps:
9393
- name: check-spelling
9494
id: spelling
95-
uses: check-spelling/check-spelling@v0.0.24
95+
uses: check-spelling/check-spelling@v0.0.25
9696
with:
9797
suppress_push_for_open_pull_request: 1
9898
checkout: true

0 commit comments

Comments
 (0)