Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ jobs:
uses: rlespinasse/github-slug-action@v5.0.0

- name: Prepare - Setup QEMU
uses: docker/setup-qemu-action@v3.3.0
uses: docker/setup-qemu-action@v3.4.0

- name: Prepare - Setup Docker Buildx
uses: docker/setup-buildx-action@v3.8.0
uses: docker/setup-buildx-action@v3.9.0

- name: Prepare - Setup Node
uses: actions/setup-node@v4.2.0
with:
node-version: 18

- name: Build - BUILD
uses: docker/build-push-action@v6.13.0
uses: docker/build-push-action@v6.14.0
with:
load: true
cache-from: type=gha
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:

- name: Test - Upload Playwright Artifacts
if: always()
uses: actions/upload-artifact@v4.6.0
uses: actions/upload-artifact@v4.6.1
with:
name: playwright-report
path: tools/e2e/playwright-report/
Expand All @@ -166,7 +166,7 @@ jobs:

- name: Test - Upload docker logs
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.6.1
with:
name: docker-logs
path: './docker-logs'
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:

- name: Publish - Build & Push for Multi-Platforms
if: github.event_name != 'pull_request'
uses: docker/build-push-action@v6.13.0
uses: docker/build-push-action@v6.14.0
with:
build-args: "SQUIDEX__RUNTIME__VERSION=7.0.0-dev-${{ env.BUILD_NUMBER }}"
cache-from: type=gha
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/make-screenshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ jobs:
uses: actions/checkout@v4.2.2

- name: Prepare - Setup QEMU
uses: docker/setup-qemu-action@v3.3.0
uses: docker/setup-qemu-action@v3.4.0

- name: Prepare - Setup Docker Buildx
uses: docker/setup-buildx-action@v3.8.0
uses: docker/setup-buildx-action@v3.9.0

- name: Prepare - Setup Node
uses: actions/setup-node@v4.2.0
with:
node-version: 18

- name: Build - BUILD
uses: docker/build-push-action@v6.13.0
uses: docker/build-push-action@v6.14.0
with:
load: true
cache-from: type=gha
Expand All @@ -50,7 +50,7 @@ jobs:

- name: Test - Upload Playwright Artifacts
if: always()
uses: actions/upload-artifact@v4.6.0
uses: actions/upload-artifact@v4.6.1
with:
name: snapshots
path: tools/e2e/snapshots/
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@ jobs:
uses: rlespinasse/github-slug-action@v5.0.0

- name: Prepare - Setup QEMU
uses: docker/setup-qemu-action@v3.3.0
uses: docker/setup-qemu-action@v3.4.0

- name: Prepare - Setup Docker Buildx
uses: docker/setup-buildx-action@v3.8.0
uses: docker/setup-buildx-action@v3.9.0

- name: Prepare - Setup Node
uses: actions/setup-node@v4.2.0
with:
node-version: 18

- name: Build - BUILD
uses: docker/build-push-action@v6.13.0
uses: docker/build-push-action@v6.14.0
with:
load: true
build-args: "SQUIDEX__BUILD__VERSION=${{ env.GITHUB_REF_SLUG }},SQUIDEX__RUNTIME__VERSION=${{ env.GITHUB_REF_SLUG }}"
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:

- name: Test - Upload Playwright Artifacts
if: always()
uses: actions/upload-artifact@v4.6.0
uses: actions/upload-artifact@v4.6.1
with:
name: playwright-report
path: tools/e2e/playwright-report/
Expand All @@ -84,7 +84,7 @@ jobs:

- name: Test - Upload docker logs
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.6.1
with:
name: docker-logs
path: './docker-logs'
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Publish - Build & Push for Multi-Platforms
uses: docker/build-push-action@v6.13.0
uses: docker/build-push-action@v6.14.0
with:
build-args: "SQUIDEX__BUILD__VERSION=${{ env.GITHUB_REF_SLUG }},SQUIDEX__RUNTIME__VERSION=${{ env.GITHUB_REF_SLUG }}"
cache-from: type=gha
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
path: ./CHANGELOG.md

- name: Release - Publish Binaries
uses: ncipollo/release-action@v1.15.0
uses: ncipollo/release-action@v1.16.0
with:
allowUpdates: true
artifactErrorsFailBuild: true
Expand Down
Loading