Skip to content

Commit 2bc8b68

Browse files
committed
Bump workflows
1 parent 85b4ec3 commit 2bc8b68

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
uses: actions/checkout@v3
1919
# https://github.com/docker/setup-qemu-action
2020
- name: Set up QEMU
21-
uses: docker/setup-qemu-action@v1
21+
uses: docker/setup-qemu-action@v2
2222
# https://github.com/docker/setup-buildx-action
2323
- name: Set up Docker Buildx
24-
uses: docker/setup-buildx-action@v1
24+
uses: docker/setup-buildx-action@v2
2525
- name: Build docker image
2626
run: make docker-build
2727
env:

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,18 @@ jobs:
2424
- name: Check out the repository
2525
uses: actions/checkout@v3
2626
- name: Login to DockerHub
27-
uses: docker/login-action@v1
27+
uses: docker/login-action@v2
2828
with:
2929
registry: docker.io
3030
username: ${{ secrets.DOCKER_REPOSITORY_LOGIN }}
3131
password: ${{ secrets.DOCKER_REPOSITORY_PASSWORD }}
3232

3333
# https://github.com/docker/setup-qemu-action
3434
- name: Set up QEMU
35-
uses: docker/setup-qemu-action@v1
35+
uses: docker/setup-qemu-action@v2
3636
# https://github.com/docker/setup-buildx-action
3737
- name: Set up Docker Buildx
38-
uses: docker/setup-buildx-action@v1
38+
uses: docker/setup-buildx-action@v2
3939

4040
- name: Build docker image
4141
run: make docker-build

0 commit comments

Comments
 (0)