Skip to content

Commit feba04d

Browse files
committed
Bump workflows
1 parent 1d65dc9 commit feba04d

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
uses: actions/checkout@v4
2424
# https://github.com/docker/setup-qemu-action
2525
- name: Set up QEMU
26-
uses: docker/setup-qemu-action@v2
26+
uses: docker/setup-qemu-action@v3
2727
# https://github.com/docker/setup-buildx-action
2828
- name: Set up Docker Buildx
29-
uses: docker/setup-buildx-action@v2
29+
uses: docker/setup-buildx-action@v3
3030
- name: Build docker image
3131
run: make docker-build
3232
env:

.github/workflows/publish.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
uses: actions/checkout@v4
2727
# https://github.com/docker/setup-qemu-action
2828
- name: Set up QEMU
29-
uses: docker/setup-qemu-action@v2
29+
uses: docker/setup-qemu-action@v3
3030
# https://github.com/docker/setup-buildx-action
3131
- name: Set up Docker Buildx
32-
uses: docker/setup-buildx-action@v2
32+
uses: docker/setup-buildx-action@v3
3333
- name: Login to DockerHub
34-
uses: docker/login-action@v2
34+
uses: docker/login-action@v3
3535
with:
3636
registry: docker.io
3737
username: ${{ secrets.DOCKER_REPOSITORY_LOGIN }}
@@ -56,7 +56,7 @@ jobs:
5656
name: Create the image manifest
5757
steps:
5858
- name: Login to DockerHub
59-
uses: docker/login-action@v2
59+
uses: docker/login-action@v3
6060
with:
6161
registry: docker.io
6262
username: ${{ secrets.DOCKER_REPOSITORY_LOGIN }}
@@ -69,7 +69,8 @@ jobs:
6969
docker.io/botsudo/docker-rustpython:arm64v8-latest \
7070
docker.io/botsudo/docker-rustpython:386-latest \
7171
docker.io/botsudo/docker-rustpython:ppc64le-latest \
72-
docker.io/botsudo/docker-rustpython:amd64-latest
72+
docker.io/botsudo/docker-rustpython:amd64-latest \
73+
--amend
7374
- name: Push the manifest
7475
run: docker manifest push docker.io/botsudo/docker-rustpython:latest
7576
- name: Inspect the manifest

0 commit comments

Comments
 (0)