Skip to content
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
20 changes: 10 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
steps:
- name: Checkout Repository
id: Checkout-Repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 1

Expand Down Expand Up @@ -213,7 +213,7 @@ jobs:
sha512sum wheels-module-${{ env.WHEELS_VERSION }}.zip > wheels-module-${{ env.WHEELS_VERSION }}.zip.sha512 || shasum -a 512 wheels-module-${{ env.WHEELS_VERSION }}.zip > wheels-module-${{ env.WHEELS_VERSION }}.zip.sha512

- name: Upload Wheels Base Template Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: build-artifacts-base-template
path: |
Expand All @@ -223,7 +223,7 @@ jobs:
artifacts/wheels/wheels-base-template-be.zip

- name: Upload Wheels Core Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: build-artifacts-core
path: |
Expand All @@ -233,7 +233,7 @@ jobs:
artifacts/wheels/wheels-core-be.zip

- name: Upload Wheels CLI Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: build-artifacts-cli
path: |
Expand All @@ -243,7 +243,7 @@ jobs:
artifacts/wheels/wheels-cli-be.zip

- name: Upload Wheels Starter App Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: build-artifacts-starter-app
path: |
Expand All @@ -253,7 +253,7 @@ jobs:
artifacts/wheels/wheels-starter-app-be.zip

- name: Upload Wheels Module Artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: build-artifacts-module
path: |
Expand All @@ -263,15 +263,15 @@ jobs:
artifacts/wheels/${{ env.WHEELS_VERSION }}/wheels-module-*.sha512

- name: Upload All Wheels Artifacts (Combined)
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: build-artifacts-all
path: |
artifacts/**/*

- name: Upload Workflow Logs
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: logs-release
path: |
Expand All @@ -294,7 +294,7 @@ jobs:

- name: Create GitHub Release
if: github.ref == 'refs/heads/main'
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v3
with:
tag_name: v${{ env.WHEELS_VERSION }}
name: Wheels ${{ env.WHEELS_VERSION }}
Expand Down Expand Up @@ -327,7 +327,7 @@ jobs:

- name: Create Snapshot Pre-Release
if: github.ref != 'refs/heads/main'
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v3
with:
tag_name: v${{ env.WHEELS_VERSION }}
name: Wheels ${{ env.WHEELS_VERSION }} (snapshot)
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- uses: actions/checkout@v5

- name: Set up JDK 21
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: '21'
Expand All @@ -49,7 +49,7 @@ jobs:

- name: Cache Playwright
id: playwright-cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.wheels/browser/lib
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Download API docs snapshot artifact
uses: actions/download-artifact@v6
Expand All @@ -240,12 +240,12 @@ jobs:
path: docs/api/

- name: Set up pnpm
uses: pnpm/action-setup@v4
uses: pnpm/action-setup@v5
with:
version: 10.23.0

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 22
cache: pnpm
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/web-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up pnpm
uses: pnpm/action-setup@v4
uses: pnpm/action-setup@v5
with:
version: 10.23.0

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 22
cache: pnpm
Expand Down Expand Up @@ -79,15 +79,15 @@ jobs:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up pnpm
uses: pnpm/action-setup@v4
uses: pnpm/action-setup@v5
with:
version: 10.23.0

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 22
cache: pnpm
Expand All @@ -98,7 +98,7 @@ jobs:
run: pnpm install --frozen-lockfile

- name: Cache Playwright browsers
uses: actions/cache@v4
uses: actions/cache@v5
id: playwright-cache
with:
path: ~/.cache/ms-playwright
Expand All @@ -119,7 +119,7 @@ jobs:

- name: Upload diffs on failure
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: visual-regression-diffs
path: |
Expand Down
Loading