Skip to content

Commit 6ec7890

Browse files
Bump the all-actions group across 1 directory with 6 updates
Bumps the all-actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `6` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `7` | `8` | | [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) | `3` | `4` | | [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` | Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v7...v8) Updates `docker/setup-qemu-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](docker/setup-qemu-action@v3...v4) 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) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: docker/setup-qemu-action dependency-version: '4' 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: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major 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 ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 0a5e4ac commit 6ec7890

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101

102102
- run: echo ${{ steps.vars.outputs.sha7 }} > ./out/sha7
103103

104-
- uses: actions/upload-artifact@v6
104+
- uses: actions/upload-artifact@v7
105105
with:
106106
name: fider-image
107107
path: out/
@@ -136,7 +136,7 @@ jobs:
136136
with:
137137
node-version: 22.x
138138
cache: 'npm'
139-
- uses: actions/download-artifact@v7
139+
- uses: actions/download-artifact@v8
140140
with:
141141
name: fider-image
142142
path: ./out
@@ -191,7 +191,7 @@ jobs:
191191
with:
192192
node-version: 22.x
193193
cache: 'npm'
194-
- uses: actions/download-artifact@v7
194+
- uses: actions/download-artifact@v8
195195
with:
196196
name: fider-image
197197
path: ./out

.github/workflows/publish-pr-multiarch.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ jobs:
1515
- uses: actions/checkout@v6
1616

1717
- name: Set up QEMU
18-
uses: docker/setup-qemu-action@v3
18+
uses: docker/setup-qemu-action@v4
1919

2020
- name: Set up Docker Buildx
21-
uses: docker/setup-buildx-action@v3
21+
uses: docker/setup-buildx-action@v4
2222

2323
- name: Login to Docker Hub
24-
uses: docker/login-action@v3
24+
uses: docker/login-action@v4
2525
with:
2626
username: ${{ secrets.DOCKER_USER }}
2727
password: ${{ secrets.DOCKER_PASS }}
2828

2929
- name: Build and push
30-
uses: docker/build-push-action@v6
30+
uses: docker/build-push-action@v7
3131
with:
3232
push: true
3333
context: .

.github/workflows/publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,20 @@ jobs:
2222
ref: ${{ github.event.workflow_run.head_sha }}
2323

2424
- name: Set up QEMU
25-
uses: docker/setup-qemu-action@v3
25+
uses: docker/setup-qemu-action@v4
2626

2727
- name: Set up Docker Buildx
28-
uses: docker/setup-buildx-action@v3
28+
uses: docker/setup-buildx-action@v4
2929

3030
- name: Login to Docker Hub
31-
uses: docker/login-action@v3
31+
uses: docker/login-action@v4
3232
with:
3333
username: ${{ secrets.DOCKER_USER }}
3434
password: ${{ secrets.DOCKER_PASS }}
3535

3636
- name: build and push docker image (pull_request)
3737
if: ${{ github.event.workflow_run.event == 'pull_request' }}
38-
uses: docker/build-push-action@v6
38+
uses: docker/build-push-action@v7
3939
with:
4040
push: true
4141
context: .
@@ -47,7 +47,7 @@ jobs:
4747

4848
- name: build and push docker image (push branch)
4949
if: ${{ github.event.workflow_run.event == 'push' }}
50-
uses: docker/build-push-action@v6
50+
uses: docker/build-push-action@v7
5151
with:
5252
push: true
5353
context: .
@@ -61,7 +61,7 @@ jobs:
6161

6262
- name: build and push docker image (push tag)
6363
if: ${{ github.event.workflow_run.event == 'release' }}
64-
uses: docker/build-push-action@v6
64+
uses: docker/build-push-action@v7
6565
with:
6666
push: true
6767
context: .

0 commit comments

Comments
 (0)