diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index eae5dc053..99a1efd8f 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -22,10 +22,10 @@ jobs: uses: rlespinasse/github-slug-action@v4.5.0 - name: Prepare - Setup QEMU - uses: docker/setup-qemu-action@v3.1.0 + uses: docker/setup-qemu-action@v3.2.0 - name: Prepare - Setup Docker Buildx - uses: docker/setup-buildx-action@v3.4.0 + uses: docker/setup-buildx-action@v3.6.1 - name: Prepare - Setup Node uses: actions/setup-node@v4.0.3 @@ -33,7 +33,7 @@ jobs: node-version: 18 - name: Build - BUILD - uses: docker/build-push-action@v6.4.1 + uses: docker/build-push-action@v6.7.0 with: load: true build-args: "SQUIDEX__RUNTIME__VERSION=7.0.0-dev-${{ env.BUILD_NUMBER }}" @@ -103,7 +103,7 @@ jobs: - name: Test - Upload Playwright Artifacts if: always() - uses: actions/upload-artifact@v4.3.4 + uses: actions/upload-artifact@v4.3.6 with: name: playwright-report path: tools/e2e/playwright-report/ @@ -111,7 +111,7 @@ jobs: - name: Test - Upload Screenshots if: failure() - uses: actions/upload-artifact@v4.3.4 + uses: actions/upload-artifact@v4.3.6 with: path: | tools/TestSuite/TestSuite.ApiTests/bin/Debug/net8.0/screenshots/ @@ -142,14 +142,14 @@ jobs: - name: Publish - Login to Docker Hub if: github.event_name != 'pull_request' - uses: docker/login-action@v3.2.0 + uses: docker/login-action@v3.3.0 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Publish - Build & Push for Multi-Platforms if: github.event_name != 'pull_request' - uses: docker/build-push-action@v6.4.1 + uses: docker/build-push-action@v6.7.0 with: build-args: "SQUIDEX__RUNTIME__VERSION=7.0.0-dev-${{ env.BUILD_NUMBER }}" cache-from: type=gha diff --git a/.github/workflows/make-screenshots.yml b/.github/workflows/make-screenshots.yml index c0e8ccd64..215673196 100644 --- a/.github/workflows/make-screenshots.yml +++ b/.github/workflows/make-screenshots.yml @@ -12,10 +12,10 @@ jobs: uses: actions/checkout@v4.1.7 - name: Prepare - Setup QEMU - uses: docker/setup-qemu-action@v3.1.0 + uses: docker/setup-qemu-action@v3.2.0 - name: Prepare - Setup Docker Buildx - uses: docker/setup-buildx-action@v3.4.0 + uses: docker/setup-buildx-action@v3.6.1 - name: Prepare - Setup Node uses: actions/setup-node@v4.0.3 @@ -23,7 +23,7 @@ jobs: node-version: 18 - name: Build - BUILD - uses: docker/build-push-action@v6.4.1 + uses: docker/build-push-action@v6.7.0 with: load: true cache-from: type=gha @@ -50,7 +50,7 @@ jobs: - name: Test - Upload Playwright Artifacts if: always() - uses: actions/upload-artifact@v4.3.4 + uses: actions/upload-artifact@v4.3.6 with: name: snapshots path: tools/e2e/snapshots/ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c914c9547..516c4a4a7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,10 +17,10 @@ jobs: uses: rlespinasse/github-slug-action@v4.5.0 - name: Prepare - Setup QEMU - uses: docker/setup-qemu-action@v3.1.0 + uses: docker/setup-qemu-action@v3.2.0 - name: Prepare - Setup Docker Buildx - uses: docker/setup-buildx-action@v3.4.0 + uses: docker/setup-buildx-action@v3.6.1 - name: Prepare - Setup Node uses: actions/setup-node@v4.0.3 @@ -28,7 +28,7 @@ jobs: node-version: 18 - name: Build - BUILD - uses: docker/build-push-action@v6.4.1 + uses: docker/build-push-action@v6.7.0 with: load: true build-args: "SQUIDEX__BUILD__VERSION=${{ env.GITHUB_REF_SLUG }},SQUIDEX__RUNTIME__VERSION=${{ env.GITHUB_REF_SLUG }}" @@ -98,7 +98,7 @@ jobs: - name: Test - Upload Playwright Artifacts if: always() - uses: actions/upload-artifact@v4.3.4 + uses: actions/upload-artifact@v4.3.6 with: name: playwright-report path: tools/e2e/playwright-report/ @@ -136,13 +136,13 @@ jobs: fi - name: Publish - Login to Docker Hub - uses: docker/login-action@v3.2.0 + uses: docker/login-action@v3.3.0 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Publish - Build & Push for Multi-Platforms - uses: docker/build-push-action@v6.4.1 + uses: docker/build-push-action@v6.7.0 with: build-args: "SQUIDEX__BUILD__VERSION=${{ env.GITHUB_REF_SLUG }},SQUIDEX__RUNTIME__VERSION=${{ env.GITHUB_REF_SLUG }}" cache-from: type=gha