Skip to content
Open
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
58 changes: 29 additions & 29 deletions .github/workflows/pull-request-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand All @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand All @@ -56,7 +56,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand All @@ -77,7 +77,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand All @@ -91,7 +91,7 @@ jobs:
run: npx nx affected --target=build --parallel=3 || echo "No affected projects for build"

- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: always()
with:
name: build-artifacts
Expand All @@ -107,15 +107,15 @@ jobs:
needs: build
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Set nx shas
uses: nrwl/nx-set-shas@v4

- name: Download build artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: build-artifacts
path: .
Expand All @@ -133,15 +133,15 @@ jobs:
needs: build
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Set nx shas
uses: nrwl/nx-set-shas@v4

- name: Download build artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: build-artifacts
path: .
Expand All @@ -159,15 +159,15 @@ jobs:
needs: build
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Set nx shas
uses: nrwl/nx-set-shas@v4

- name: Download build artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: build-artifacts
path: .
Expand All @@ -185,15 +185,15 @@ jobs:
needs: build
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Set nx shas
uses: nrwl/nx-set-shas@v4

- name: Download build artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: build-artifacts
path: .
Expand All @@ -211,15 +211,15 @@ jobs:
needs: build
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Set nx shas
uses: nrwl/nx-set-shas@v4

- name: Download build artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: build-artifacts
path: .
Expand All @@ -237,15 +237,15 @@ jobs:
needs: build
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Set nx shas
uses: nrwl/nx-set-shas@v4

- name: Download build artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: build-artifacts
path: .
Expand All @@ -263,15 +263,15 @@ jobs:
needs: build
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Set nx shas
uses: nrwl/nx-set-shas@v4

- name: Download build artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: build-artifacts
path: .
Expand All @@ -288,15 +288,15 @@ jobs:
needs: build
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Set nx shas
uses: nrwl/nx-set-shas@v4

- name: Download build artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: build-artifacts
path: .
Expand All @@ -319,15 +319,15 @@ jobs:
needs: build
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Set nx shas
uses: nrwl/nx-set-shas@v4

- name: Download build artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: build-artifacts
path: .
Expand All @@ -342,7 +342,7 @@ jobs:
xvfb-run -a npx nx affected --target=package --configuration=development-linux --parallel=3 || echo "No projects for native applications build"

- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: binary-artifacts-linux
path: |
Expand All @@ -358,15 +358,15 @@ jobs:
needs: build
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Set nx shas
uses: nrwl/nx-set-shas@v4

- name: Download build artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: build-artifacts
path: .
Expand All @@ -385,7 +385,7 @@ jobs:
xvfb-run -a npx nx affected --target=package --configuration=development-windows --parallel=3 || echo "No projects for native applications build"

- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: binary-artifacts-windows
path: |
Expand All @@ -404,7 +404,7 @@ jobs:
- build-native-applications-windows
steps:
- name: Download binaries
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
path: artifacts
pattern: binary-artifacts-*
Expand All @@ -422,7 +422,7 @@ jobs:
find artifacts -type f -name '*.msix' -exec cp {} release/ \;

- name: Upload binaries to GitHub Actions artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: binary-bundle
path: |
Expand Down
Loading
Loading