Skip to content

Commit

Permalink
build: upgrade action versions
Browse files Browse the repository at this point in the history
Signed-off-by: Inho Oh <[email protected]>
  • Loading branch information
webispy committed Jan 31, 2024
1 parent 642178b commit 41e202c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Generate docker image
run: |
echo "OS=$OSTYPE"
Expand Down Expand Up @@ -75,19 +75,19 @@ jobs:
echo "${{ env.build }}"
- name: Set up QEMU
if: ${{ env.build == 1}}
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
if: ${{ env.build == 1}}
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
if: ${{ env.build == 1}}
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push
if: ${{ env.build == 1}}
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: docker/.
platforms: linux/amd64,linux/arm64
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-ubuntu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ jobs:
BASEROOT: /tmp/www
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup
id: setup
run: |
Expand Down

0 comments on commit 41e202c

Please sign in to comment.