Skip to content

Commit

Permalink
build: Bumped three action versions due to node 12 deprecation
Browse files Browse the repository at this point in the history
- actions/checkout@v2 to actions/checkout@v3
- actions/setup-node@v2 to actions/setup-node@v3
- actions/checkout@v2 to actions/checkout@v3
  • Loading branch information
dougmartin committed Oct 16, 2023
1 parent 39091c7 commit 2be5946
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/researcher-reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
name: Build and Run Jest Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
- name: Install Dependencies
Expand All @@ -23,7 +23,7 @@ jobs:
- name: Run Tests
run: npm run test:coverage -- --runInBand
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v2
with:
flags: jest
cypress:
Expand All @@ -40,7 +40,7 @@ jobs:
containers: [1, 2, 3]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- uses: cypress-io/github-action@v2
with:
working-directory: ./researcher-reports
Expand All @@ -61,7 +61,7 @@ jobs:
# should be much faster
CODE_COVERAGE: true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v2
with:
flags: cypress
s3-deploy:
Expand All @@ -71,8 +71,8 @@ jobs:
# - cypress
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
- name: Setup Ruby
Expand Down

0 comments on commit 2be5946

Please sign in to comment.