From 7f2bd73d788f9a753d6f69da1335a67cca7c3061 Mon Sep 17 00:00:00 2001 From: Michael Krolikowski Date: Tue, 12 Mar 2024 20:50:24 +0100 Subject: [PATCH] action updates --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4b3ae80..8004c89 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -67,7 +67,7 @@ jobs: name: ${{ github.event.repository.name }}_${{ matrix.suffix }} path: ${{ github.event.repository.name }}_${{ matrix.suffix }} - name: Release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/') with: files: ${{ github.event.repository.name }}_${{ matrix.suffix }} @@ -93,17 +93,17 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Setup qemu - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 - name: Setup Docker Buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 - name: GitHub Container Registry Login - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - name: Retrieve Artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ${{ github.event.repository.name }}_${{ matrix.suffix }} path: build/ @@ -139,7 +139,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: GitHub Container Registry Login - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.repository_owner }}