From 39c3596615e1cdf47a218402308941888d4145d1 Mon Sep 17 00:00:00 2001 From: Peter Stadler Date: Thu, 10 Oct 2024 15:30:01 +0200 Subject: [PATCH] more updates to github actions --- .github/workflows/artifacts.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index fe873ab6..9ba16126 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -18,19 +18,19 @@ jobs: # fetch all history to include latest tag for the git revision info fetch-depth: 0 - name: Set up JDK 11 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: zulu java-version: 11 - name: Build with Ant run: ant clean xar - name: Archive xar package - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: xar-package path: build/*.xar - name: Release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/') && github.event_name != 'pull_request' with: prerelease: true @@ -64,7 +64,7 @@ jobs: uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: Log in to GitHub Container registry uses: docker/login-action@v3