diff --git a/.github/workflows/pull-request-checks.yml b/.github/workflows/pull-request-checks.yml index 0658299d..3894e558 100644 --- a/.github/workflows/pull-request-checks.yml +++ b/.github/workflows/pull-request-checks.yml @@ -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 @@ -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 @@ -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 @@ -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 @@ -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 @@ -107,7 +107,7 @@ jobs: needs: build steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -115,7 +115,7 @@ jobs: 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: . @@ -133,7 +133,7 @@ jobs: needs: build steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -141,7 +141,7 @@ jobs: 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: . @@ -159,7 +159,7 @@ jobs: needs: build steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -167,7 +167,7 @@ jobs: 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: . @@ -185,7 +185,7 @@ jobs: needs: build steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -193,7 +193,7 @@ jobs: 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: . @@ -211,7 +211,7 @@ jobs: needs: build steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -219,7 +219,7 @@ jobs: 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: . @@ -237,7 +237,7 @@ jobs: needs: build steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -245,7 +245,7 @@ jobs: 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: . @@ -263,7 +263,7 @@ jobs: needs: build steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -271,7 +271,7 @@ jobs: 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: . @@ -288,7 +288,7 @@ jobs: needs: build steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -296,7 +296,7 @@ jobs: 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: . @@ -319,7 +319,7 @@ jobs: needs: build steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -327,7 +327,7 @@ jobs: 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: . @@ -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: | @@ -358,7 +358,7 @@ jobs: needs: build steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -366,7 +366,7 @@ jobs: 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: . @@ -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: | @@ -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-* @@ -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: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a05b44f4..6af992b4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: new_release_version: ${{ steps.semantic-release.outputs.new_release_version }} steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: persist-credentials: false fetch-depth: 0 @@ -35,7 +35,7 @@ jobs: private_key: ${{ secrets.SEMANTIC_RELEASE_KEY_PEM }} - name: Semantic release - uses: cycjimmy/semantic-release-action@v5 + uses: cycjimmy/semantic-release-action@v6 id: semantic-release with: semantic_version: 22.0.5 @@ -55,7 +55,7 @@ jobs: run: npx nx run-many --target=scripts-binary --parallel=3 || echo "No projects for scripts binary build" - name: Upload build artifacts - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 if: steps.semantic-release.outputs.new_release_published == 'true' with: name: build-artifacts @@ -76,7 +76,7 @@ jobs: packages: write steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: persist-credentials: false fetch-depth: 0 @@ -85,7 +85,7 @@ jobs: 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: . @@ -117,7 +117,7 @@ jobs: packages: write steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: persist-credentials: false fetch-depth: 0 @@ -126,7 +126,7 @@ jobs: 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: . @@ -158,7 +158,7 @@ jobs: packages: write steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: persist-credentials: false fetch-depth: 0 @@ -167,7 +167,7 @@ jobs: 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: . @@ -199,7 +199,7 @@ jobs: packages: write steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: persist-credentials: false fetch-depth: 0 @@ -208,7 +208,7 @@ jobs: 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: . @@ -240,7 +240,7 @@ jobs: packages: write steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: persist-credentials: false fetch-depth: 0 @@ -249,7 +249,7 @@ jobs: 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: . @@ -281,7 +281,7 @@ jobs: packages: write steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: persist-credentials: false fetch-depth: 0 @@ -290,7 +290,7 @@ jobs: 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: . @@ -322,7 +322,7 @@ jobs: packages: write steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: persist-credentials: false fetch-depth: 0 @@ -331,7 +331,7 @@ jobs: 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: . @@ -366,7 +366,7 @@ jobs: packages: write steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: persist-credentials: false fetch-depth: 0 @@ -375,7 +375,7 @@ jobs: 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: . @@ -391,7 +391,7 @@ jobs: xvfb-run -a npx nx run-many --target=package --configuration=production-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: | @@ -412,7 +412,7 @@ jobs: packages: write steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: persist-credentials: false fetch-depth: 0 @@ -421,7 +421,7 @@ jobs: 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: . @@ -441,7 +441,7 @@ jobs: xvfb-run -a npx nx run-many --target=package --configuration=production-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: | @@ -463,7 +463,7 @@ jobs: environment: production steps: - name: Download binaries - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: path: artifacts pattern: binary-artifacts-* @@ -499,7 +499,7 @@ jobs: environment: production steps: - name: Download build artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: name: build-artifacts path: .