Skip to content

Commit

Permalink
Update GitHub Action Versions (#1131)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
SebastianStehle and github-actions[bot] authored Oct 17, 2024
1 parent 83467b7 commit 1c5f2d1
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.1
with:
token: ${{ secrets.WORKFLOW_SECRET }}

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Prepare - Checkout
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.1

- name: Prepare - Inject short Variables
uses: rlespinasse/[email protected]
Expand All @@ -25,15 +25,15 @@ jobs:
uses: docker/[email protected]

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

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

- name: Build - BUILD
uses: docker/build-push-action@v6.7.0
uses: docker/build-push-action@v6.9.0
with:
load: true
cache-from: type=gha
Expand Down Expand Up @@ -102,15 +102,15 @@ jobs:

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

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

- name: Publish - Build & Push for Multi-Platforms
if: github.event_name != 'pull_request'
uses: docker/build-push-action@v6.7.0
uses: docker/build-push-action@v6.9.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 @@ -9,21 +9,21 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Prepare - Checkout
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.1

- name: Prepare - Setup QEMU
uses: docker/[email protected]

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

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

- name: Build - BUILD
uses: docker/build-push-action@v6.7.0
uses: docker/build-push-action@v6.9.0
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].0
uses: actions/[email protected].3
with:
name: snapshots
path: tools/e2e/snapshots/
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Prepare - Checkout
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.1

- name: Prepare - Inject short Variables
uses: rlespinasse/[email protected]
Expand All @@ -20,15 +20,15 @@ jobs:
uses: docker/[email protected]

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

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

- name: Build - BUILD
uses: docker/build-push-action@v6.7.0
uses: docker/build-push-action@v6.9.0
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].0
uses: actions/[email protected].3
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@v6.7.0
uses: docker/build-push-action@v6.9.0
with:
build-args: "SQUIDEX__BUILD__VERSION=${{ env.GITHUB_REF_SLUG }},SQUIDEX__RUNTIME__VERSION=${{ env.GITHUB_REF_SLUG }}"
cache-from: type=gha
Expand Down

0 comments on commit 1c5f2d1

Please sign in to comment.