Skip to content

Commit fa1599c

Browse files
committed
Bump workflows
1 parent 6dbb5ff commit fa1599c

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
uses: actions/checkout@v4
2525
# https://github.com/docker/setup-qemu-action
2626
- name: Set up QEMU
27-
uses: docker/setup-qemu-action@v2
27+
uses: docker/setup-qemu-action@v3
2828
# https://github.com/docker/setup-buildx-action
2929
- name: Set up Docker Buildx
30-
uses: docker/setup-buildx-action@v2
30+
uses: docker/setup-buildx-action@v3
3131
- name: Build docker image
3232
run: make docker-build
3333
env:

.github/workflows/publish.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ name: Publish Docker image
22

33
permissions:
44
contents: read
5-
packages: write
65

76
on:
87
workflow_dispatch:
@@ -14,16 +13,16 @@ jobs:
1413
name: Push Docker image to Docker Hub
1514
runs-on: ubuntu-latest
1615
steps:
17-
- name: Check out the repo
16+
- name: Checkout the repository
1817
uses: actions/checkout@v4
1918
# https://github.com/docker/setup-qemu-action
2019
- name: Set up QEMU
21-
uses: docker/setup-qemu-action@v2
20+
uses: docker/setup-qemu-action@v3
2221
# https://github.com/docker/setup-buildx-action
2322
- name: Set up Docker Buildx
24-
uses: docker/setup-buildx-action@v2
25-
- name: Login to GitHub registry
26-
uses: docker/login-action@v2
23+
uses: docker/setup-buildx-action@v3
24+
- name: Login to DockerHub
25+
uses: docker/login-action@v3
2726
with:
2827
registry: docker.io
2928
username: ${{ secrets.DOCKER_REPOSITORY_LOGIN }}

0 commit comments

Comments
 (0)