Skip to content

Commit 1904042

Browse files
committed
Bump actions
1 parent 75a9dfd commit 1904042

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout repository
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212
- name: Build image
1313
run: make docker-build
1414
- name: Test image
@@ -36,13 +36,13 @@ jobs:
3636
#- { platform: "linux/mips64", platform-tag: "mips64" }
3737
steps:
3838
- name: Checkout repository
39-
uses: actions/checkout@v3
39+
uses: actions/checkout@v4
4040
# https://github.com/docker/setup-qemu-action
4141
- name: Set up QEMU
42-
uses: docker/setup-qemu-action@v2
42+
uses: docker/setup-qemu-action@v3
4343
# https://github.com/docker/setup-buildx-action
4444
- name: Set up Docker Buildx
45-
uses: docker/setup-buildx-action@v2
45+
uses: docker/setup-buildx-action@v3
4646
- name: Build image
4747
run: make docker-build
4848
env:

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Check out the repository
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818
- name: Login to DockerHub
19-
uses: docker/login-action@v2
19+
uses: docker/login-action@v3
2020
with:
2121
registry: docker.io
2222
username: ${{ secrets.DOCKER_REPOSITORY_LOGIN }}

0 commit comments

Comments
 (0)