From aed30fa15332d19056dadcbf304f9baeb90d23e4 Mon Sep 17 00:00:00 2001 From: Sebastian Stehle Date: Tue, 19 Sep 2023 08:34:43 +0200 Subject: [PATCH] Update GitHub Action Versions (#1028) Co-authored-by: github-actions[bot] --- .github/workflows/dev.yml | 8 ++++---- .github/workflows/release.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 2aa6d933b2..adc1859f26 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -22,13 +22,13 @@ jobs: uses: rlespinasse/github-slug-action@v4.4.1 - name: Prepare - Set up QEMU - uses: docker/setup-qemu-action@v2.2.0 + uses: docker/setup-qemu-action@v3.0.0 - name: Prepare - Set up Docker Buildx - uses: docker/setup-buildx-action@v2.10.0 + uses: docker/setup-buildx-action@v3.0.0 - name: Build - BUILD - uses: docker/build-push-action@v4.2.1 + uses: docker/build-push-action@v5.0.0 with: load: true build-args: "SQUIDEX__RUNTIME__VERSION=7.0.0-dev-${{ env.BUILD_NUMBER }}" @@ -103,7 +103,7 @@ jobs: - name: Publish - Login to Docker Hub if: github.event_name != 'pull_request' - uses: docker/login-action@v2.2.0 + uses: docker/login-action@v3.0.0 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b17731a00e..bd84b42e8b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,13 +17,13 @@ jobs: uses: rlespinasse/github-slug-action@v4.4.1 - name: Prepare - Set up QEMU - uses: docker/setup-qemu-action@v2.2.0 + uses: docker/setup-qemu-action@v3.0.0 - name: Prepare - Set up Docker Buildx - uses: docker/setup-buildx-action@v2.10.0 + uses: docker/setup-buildx-action@v3.0.0 - name: Build - BUILD - uses: docker/build-push-action@v4.2.1 + uses: docker/build-push-action@v5.0.0 with: load: true build-args: "SQUIDEX__BUILD__VERSION=${{ env.GITHUB_REF_SLUG }},SQUIDEX__RUNTIME__VERSION=${{ env.GITHUB_REF_SLUG }}" @@ -104,7 +104,7 @@ jobs: fi - name: Publish - Login to Docker Hub - uses: docker/login-action@v2.2.0 + uses: docker/login-action@v3.0.0 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }}