Skip to content

Commit

Permalink
[workflows] update: action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Istador committed Oct 13, 2024
1 parent 6ec213b commit 479e37a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ jobs:
echo "IMAGE=$IMAGE" >>$GITHUB_ENV
-
name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
-
id: meta
name: Docker meta
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/${{ env.IMAGE }}
Expand All @@ -47,22 +47,22 @@ jobs:
org.opencontainers.image.licenses=UNLICENSED
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
with:
platforms: amd64,arm64,arm
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
-
name: Login to GHCR
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry : ghcr.io
username : ${{ github.repository_owner }}
password : ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
pull : true
push : true
Expand All @@ -79,28 +79,28 @@ jobs:
./docker-build.sh all
-
name : Upload Server
uses : actions/upload-artifact@v3
uses : actions/upload-artifact@v4
with:
name : Server
path : ./bin/Server
if-no-files-found : error
-
name : Upload Server.arm
uses : actions/upload-artifact@v3
uses : actions/upload-artifact@v4
with:
name : Server.arm
path : ./bin/Server.arm
if-no-files-found : error
-
name : Upload Server.arm64
uses : actions/upload-artifact@v3
uses : actions/upload-artifact@v4
with:
name : Server.arm64
path : ./bin/Server.arm64
if-no-files-found : error
-
name : Upload Server.exe
uses : actions/upload-artifact@v3
uses : actions/upload-artifact@v4
with:
name : Server.exe
path : ./bin/Server.exe
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3
with:
platforms: amd64,arm64,arm
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3
-
name: Build
uses: docker/build-push-action@v3
uses: docker/build-push-action@v6
with:
pull : true
push : false
Expand Down

0 comments on commit 479e37a

Please sign in to comment.