Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update GitHub Action Versions #1110

Merged
merged 1 commit into from
Jul 23, 2024
Merged
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
14 changes: 7 additions & 7 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ jobs:
uses: rlespinasse/[email protected]

- name: Prepare - Setup QEMU
uses: docker/setup-qemu-action@v3.0.0
uses: docker/setup-qemu-action@v3.1.0

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

- name: Prepare - Setup Node
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
node-version: 18

- name: Build - BUILD
uses: docker/build-push-action@v5.4.0
uses: docker/build-push-action@v6.4.1
with:
load: true
build-args: "SQUIDEX__RUNTIME__VERSION=7.0.0-dev-${{ env.BUILD_NUMBER }}"
Expand Down Expand Up @@ -103,15 +103,15 @@ jobs:

- name: Test - Upload Playwright Artifacts
if: always()
uses: actions/[email protected].3
uses: actions/[email protected].4
with:
name: playwright-report
path: tools/e2e/playwright-report/
retention-days: 30

- name: Test - Upload Screenshots
if: failure()
uses: actions/[email protected].3
uses: actions/[email protected].4
with:
path: |
tools/TestSuite/TestSuite.ApiTests/bin/Debug/net8.0/screenshots/
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:

- name: Publish - Build & Push for Multi-Platforms
if: github.event_name != 'pull_request'
uses: docker/build-push-action@v5.4.0
uses: docker/build-push-action@v6.4.1
with:
build-args: "SQUIDEX__RUNTIME__VERSION=7.0.0-dev-${{ env.BUILD_NUMBER }}"
cache-from: type=gha
Expand Down
10 changes: 5 additions & 5 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/[email protected]

- name: Prepare - Setup QEMU
uses: docker/setup-qemu-action@v3.0.0
uses: docker/setup-qemu-action@v3.1.0

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

- name: Prepare - Setup Node
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
node-version: 18

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

- name: Test - Upload Playwright Artifacts
if: always()
uses: actions/[email protected].3
uses: actions/[email protected].4
with:
name: snapshots
path: tools/e2e/snapshots/
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@ jobs:
uses: rlespinasse/[email protected]

- name: Prepare - Setup QEMU
uses: docker/setup-qemu-action@v3.0.0
uses: docker/setup-qemu-action@v3.1.0

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

- name: Prepare - Setup Node
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
node-version: 18

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

- name: Test - Upload Playwright Artifacts
if: always()
uses: actions/[email protected].3
uses: actions/[email protected].4
with:
name: playwright-report
path: tools/e2e/playwright-report/
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Publish - Build & Push for Multi-Platforms
uses: docker/build-push-action@v5.3.0
uses: docker/build-push-action@v6.4.1
with:
build-args: "SQUIDEX__BUILD__VERSION=${{ env.GITHUB_REF_SLUG }},SQUIDEX__RUNTIME__VERSION=${{ env.GITHUB_REF_SLUG }}"
cache-from: type=gha
Expand Down