diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 2ff87b0..4d7ac19 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -18,14 +18,14 @@ jobs: build: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 id: checkout with: submodules: true fetch-depth: 0 - name: Install d2 run: curl -fsSL https://d2lang.com/install.sh | sh -s -- - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version: 22 - name: Yarn version @@ -35,7 +35,7 @@ jobs: - name: Build Quartz run: yarn nx build docs - name: Upload artifact - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v4 with: path: apps/docs/public diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 7a13028..ac0428c 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -14,7 +14,7 @@ jobs: name: TypeScript Problem Tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 2 ref: ${{ github.event.pull_request.head.sha }} @@ -27,7 +27,7 @@ jobs: with: cmd: jq .engines.node package.json -r | sed -e 's/"//g' | sed -e 's/>=//g' - name: Use Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: "${{ steps.node_version.outputs.value }}" - name: Use Yarn @@ -44,7 +44,7 @@ jobs: image: cypress/included:latest options: --user 1001 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 2 ref: ${{ github.event.pull_request.head.sha }} @@ -57,7 +57,7 @@ jobs: with: cmd: jq .engines.node package.json -r | sed -e 's/"//g' | sed -e 's/>=//g' - name: Use Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: "${{ steps.node_version.outputs.value }}" - name: Use Yarn @@ -68,7 +68,7 @@ jobs: run: yarn node scripts/affected-problems.js --base=${{ github.event.pull_request.base.sha }} --head=${{ github.event.pull_request.head.sha }} --target=test --tag=ui - name: Upload failed tests artifacts if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: Cypress-Artifacts if-no-files-found: ignore diff --git a/.github/workflows/verify-main.yml b/.github/workflows/verify-main.yml index 5cee285..43875b9 100644 --- a/.github/workflows/verify-main.yml +++ b/.github/workflows/verify-main.yml @@ -14,7 +14,7 @@ jobs: name: TypeScript Problem Tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 1 - name: Extract node version from package.json @@ -23,7 +23,7 @@ jobs: with: cmd: jq .engines.node package.json -r | sed -e 's/"//g' | sed -e 's/>=//g' - name: Use Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: "${{ steps.node_version.outputs.value }}" - name: Use Yarn @@ -41,7 +41,7 @@ jobs: image: cypress/included:latest options: --user 1001 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 1 - name: Extract node version from package.json @@ -50,7 +50,7 @@ jobs: with: cmd: jq .engines.node package.json -r | sed -e 's/"//g' | sed -e 's/>=//g' - name: Use Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: "${{ steps.node_version.outputs.value }}" - name: Use Yarn @@ -62,7 +62,7 @@ jobs: yarn node scripts/problems.js --target=test --tag=ui - name: Upload failed tests artifacts if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: Cypress-Artifacts if-no-files-found: ignore