Skip to content

Commit

Permalink
chore(deps): update actions/upload-artifact action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 17, 2023
1 parent b597fcd commit f5d377b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
run: |
npm run test:lint -- --quiet --output-file test-results/eslint/results.xml --format junit
- name: Store Lint Results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: lint-output
path: ./test-results/*
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
- name: Run Unit Tests
run: npm run test:unit -- --reporters="default" --reporters="jest-junit" --coverage --coverageReporters=text --coverageReporters=lcov --maxWorkers="2"
- name: Store Unit Test Results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: unit-test-output
path: ./test-results/*
Expand Down Expand Up @@ -136,12 +136,12 @@ jobs:
./dist
key: ${{ runner.os }}-dist-${{ hashFiles('package-lock.json') }}
- name: Store Build Output
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-output
path: ./build
- name: Store Dist Output
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dist-output
path: ./dist
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
- name: Run Integration Tests
run: npm run test:integration -- --reporters="default" --reporters="jest-junit"
- name: Store Integration Test Results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: integration-test-output
path: ./test-results/*
Expand Down

0 comments on commit f5d377b

Please sign in to comment.