diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index df6caf9..8316629 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,13 +25,13 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 # Ensure node version is great enough - name: Use Node.js v20.17.x - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: "20.17.x" @@ -62,13 +62,13 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 # Ensure node version is great enough - name: Use Node.js v20.17.x - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: "20.17.x" diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 253c651..3e2d8c9 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/create-release-branch.yml b/.github/workflows/create-release-branch.yml index 7a9bced..c4684da 100644 --- a/.github/workflows/create-release-branch.yml +++ b/.github/workflows/create-release-branch.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: # Check-out repo - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 # Use a service account when checking out. This is to workaround the issue were GitHub @@ -42,7 +42,7 @@ jobs: # Ensure node version is great enough - name: Use Node.js v20.17.x - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: "20.17.x" diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 28f7066..9099e29 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -29,7 +29,7 @@ jobs: name: Run e2e tests steps: # Checks-out your repository - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # Check out onto desired branch to run e2e tests from - name: Checkout branch @@ -37,7 +37,7 @@ jobs: # Ensure node version is great enough - name: Use Node.js v20.17.x - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: "20.17.x" @@ -73,7 +73,7 @@ jobs: - name: Comment on PR if: ${{ github.event_name == 'pull_request' && always() && steps.e2eTests.outcome == 'failure' && !contains( github.event.pull_request.labels.*.name, 'ui change') }} - uses: actions/github-script@v3 + uses: actions/github-script@v7 with: github-token: ${{secrets.GITHUB_TOKEN}} script: | @@ -86,7 +86,7 @@ jobs: - name: Upload snapshots if failed if: ${{ always() && steps.e2eTests.outcome == 'failure' }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: snapshots path: e2e-tests/test-results/ diff --git a/.github/workflows/publish-nightly-build.yml b/.github/workflows/publish-nightly-build.yml index 18c0dcc..a1d8179 100644 --- a/.github/workflows/publish-nightly-build.yml +++ b/.github/workflows/publish-nightly-build.yml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest steps: # Check-out repo - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # Check if any changes have been pushed to main since last release - name: Check latest commit age @@ -61,12 +61,12 @@ jobs: id-token: write steps: - name: Install Node.js v20.17.x - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: "20.17.x" - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/publish-release-artifacts.yml b/.github/workflows/publish-release-artifacts.yml index 6025c80..0a12ada 100644 --- a/.github/workflows/publish-release-artifacts.yml +++ b/.github/workflows/publish-release-artifacts.yml @@ -20,12 +20,12 @@ jobs: id-token: write steps: - name: Use Node.js v20.17.x - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: "20.17.x" - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0