Skip to content

Commit

Permalink
Update versions of deprecated actions
Browse files Browse the repository at this point in the history
  • Loading branch information
rlskoeser committed May 8, 2024
1 parent 99cbaec commit 61eb9a5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Cache node modules
Expand All @@ -34,12 +34,12 @@ jobs:
- name: Run webpack build
run: npm run build:prod
- name: Upload built files
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: bundles
path: bundles/
- name: Upload stats file
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: webpack-stats.json
path: webpack-stats.json
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
- name: Run Jest
run: npx jest --collectCoverage
- name: Upload test coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
flags: typescript

Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
pip install -r dev-requirements.txt
- name: Download webpack stats
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: webpack-stats.json

Expand All @@ -140,7 +140,7 @@ jobs:
run: py.test --cov=./ --cov-report=xml

- name: Upload test coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
flags: python

Expand Down

0 comments on commit 61eb9a5

Please sign in to comment.