Skip to content

Commit eea7b84

Browse files
build(deps): bump the all-actions group across 1 directory with 9 updates
Bumps the all-actions group with 9 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3` | `4` | | [docker/login-action](https://github.com/docker/login-action) | `3` | `4` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `6` | `7` | | [docker/metadata-action](https://github.com/docker/metadata-action) | `5` | `6` | | [PowerDNS/pdns-publish-docs-action](https://github.com/powerdns/pdns-publish-docs-action) | `1.1.0` | `1.1.1` | | [actions/setup-go](https://github.com/actions/setup-go) | `5` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [check-spelling/check-spelling](https://github.com/check-spelling/check-spelling) | `0.0.24` | `0.0.26` | 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 `docker/setup-buildx-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v3...v4) Updates `docker/login-action` from 3 to 4 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v3...v4) Updates `docker/build-push-action` from 6 to 7 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v6...v7) Updates `docker/metadata-action` from 5 to 6 - [Release notes](https://github.com/docker/metadata-action/releases) - [Commits](docker/metadata-action@v5...v6) Updates `PowerDNS/pdns-publish-docs-action` from 1.1.0 to 1.1.1 - [Release notes](https://github.com/powerdns/pdns-publish-docs-action/releases) - [Commits](PowerDNS/pdns-publish-docs-action@v1.1.0...v1.1.1) 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 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) Updates `check-spelling/check-spelling` from 0.0.24 to 0.0.26 - [Release notes](https://github.com/check-spelling/check-spelling/releases) - [Commits](check-spelling/check-spelling@v0.0.24...v0.0.26) --- 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: '7' 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 - dependency-name: docker/build-push-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: docker/metadata-action dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: PowerDNS/pdns-publish-docs-action dependency-version: 1.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 3716c4a commit eea7b84

6 files changed

Lines changed: 20 additions & 20 deletions

File tree

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ 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
20-
uses: docker/setup-buildx-action@v3
20+
uses: docker/setup-buildx-action@v4
2121
with:
2222
platforms: ${{ vars.PLATFORMS }}
2323
- name: Log in to Docker Hub
24-
uses: docker/login-action@v3
24+
uses: docker/login-action@v4
2525
with:
2626
username: ${{ secrets.DOCKERHUB_USERNAME }}
2727
password: ${{ secrets.DOCKERHUB_TOKEN }}
2828
- name: Build and push Docker image
29-
uses: docker/build-push-action@v6
29+
uses: docker/build-push-action@v7
3030
with:
3131
platforms: ${{ vars.PLATFORMS }}
3232
push: true

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,24 +15,24 @@ 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
20-
uses: docker/setup-buildx-action@v3
20+
uses: docker/setup-buildx-action@v4
2121
with:
2222
platforms: ${{ vars.PLATFORMS }}
2323
- name: Log in to Docker Hub
24-
uses: docker/login-action@v3
24+
uses: docker/login-action@v4
2525
with:
2626
username: ${{ secrets.DOCKERHUB_USERNAME }}
2727
password: ${{ secrets.DOCKERHUB_TOKEN }}
2828
- name: Derive image tag(s)
29-
uses: docker/metadata-action@v5
29+
uses: docker/metadata-action@v6
3030
with:
3131
images: >-
3232
${{ secrets.DOCKERHUB_ORGANIZATION_NAME }}/${{ vars.IMAGE_NAME }}
3333
tags: type=semver,pattern={{version}}
3434
- name: Build and push Docker image
35-
uses: docker/build-push-action@v6
35+
uses: docker/build-push-action@v7
3636
with:
3737
platforms: ${{ vars.PLATFORMS }}
3838
push: true

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
echo "release=YES" >> $GITHUB_OUTPUT
2121
echo "version_string=${{ github.ref_name }}" | sed -r 's/(=)v/\1/' >> $GITHUB_OUTPUT
2222
fi
23-
- uses: PowerDNS/pdns-publish-docs-action@v1.1.0
23+
- uses: PowerDNS/pdns-publish-docs-action@v1.1.1
2424
if: ${{ steps.release_check.outputs.release == 'YES' }} # Only build and push docs for releases
2525
with:
2626
aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }}

.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@v7
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@v7
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@v7
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
@@ -21,9 +21,9 @@ jobs:
2121

2222
name: Go ${{ matrix.go }} tests
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v6
2525
- name: Set up Go
26-
uses: actions/setup-go@v5
26+
uses: actions/setup-go@v6
2727
with:
2828
go-version: ${{ matrix.go }}
2929
- 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.26
9696
with:
9797
suppress_push_for_open_pull_request: 1
9898
checkout: true

0 commit comments

Comments
 (0)