Skip to content

Commit 41e202c

Browse files
committed
build: upgrade action versions
Signed-off-by: Inho Oh <webispy@gmail.com>
1 parent 642178b commit 41e202c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/release-docker.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Check out the repo
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121
- name: Generate docker image
2222
run: |
2323
echo "OS=$OSTYPE"
@@ -75,19 +75,19 @@ jobs:
7575
echo "${{ env.build }}"
7676
- name: Set up QEMU
7777
if: ${{ env.build == 1}}
78-
uses: docker/setup-qemu-action@v2
78+
uses: docker/setup-qemu-action@v3
7979
- name: Set up Docker Buildx
8080
if: ${{ env.build == 1}}
81-
uses: docker/setup-buildx-action@v2
81+
uses: docker/setup-buildx-action@v3
8282
- name: Login to GitHub Container Registry
8383
if: ${{ env.build == 1}}
84-
uses: docker/login-action@v2
84+
uses: docker/login-action@v3
8585
with:
8686
username: ${{ secrets.DOCKER_USERNAME }}
8787
password: ${{ secrets.DOCKER_PASSWORD }}
8888
- name: Build and push
8989
if: ${{ env.build == 1}}
90-
uses: docker/build-push-action@v3
90+
uses: docker/build-push-action@v5
9191
with:
9292
context: docker/.
9393
platforms: linux/amd64,linux/arm64

.github/workflows/release-ubuntu.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ jobs:
220220
BASEROOT: /tmp/www
221221
steps:
222222
- name: Check out the repo
223-
uses: actions/checkout@v3
223+
uses: actions/checkout@v4
224224
- name: Setup
225225
id: setup
226226
run: |

0 commit comments

Comments
 (0)