Skip to content

Commit

Permalink
Bump action versions (#139618)
Browse files Browse the repository at this point in the history
  • Loading branch information
gmrabian authored May 3, 2024
1 parent 57ee5fd commit 0ca5cd5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ jobs:
with:
role-to-assume: ${{ env.AWS_OIDC_ROLE_TO_ASSUME }}
aws-region: ${{ env.AWS_DEFAULT_REGION }}
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock', 'plugins/**') }}
Expand All @@ -57,7 +57,7 @@ jobs:
run: ./test-unit.sh
- name: publish test coverage to code climate
if: env.CODE_CLIMATE_ID != ''
uses: paambaati/codeclimate-action@v5
uses: paambaati/codeclimate-action@v6
env:
CC_TEST_REPORTER_ID: ${{ secrets.CODE_CLIMATE_ID }}
with:
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Run Cypress Tests
uses: cypress-io/github-action@v5
uses: cypress-io/github-action@v6
with:
working-directory: tests/cypress
spec: tests/integration/*.spec.js
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Check Project A11y
uses: cypress-io/github-action@v5
uses: cypress-io/github-action@v6
with:
working-directory: tests/cypress
spec: tests/a11y/*.spec.js
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pre-commit/[email protected].0
- uses: pre-commit/[email protected].1
jest-frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
- name: Prepare for Jest (frontend)
Expand All @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
- name: Prepare for Jest (backend)
Expand Down

0 comments on commit 0ca5cd5

Please sign in to comment.