Skip to content

Commit

Permalink
chore: 👷 upgrade github actions steps versions (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
charlyautomatiza authored Apr 18, 2024
1 parent 50ac8e4 commit f84b645
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Install dependencies
Expand All @@ -24,18 +24,18 @@ jobs:
- name: Generate Allure Report
if: always()
run: npm run allure-report
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-test-results
path: test-results/
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: allure-test-results
path: allure-report/
- name: Publish JUnit Report
uses: mikepenz/action-junit-report@v3
uses: mikepenz/action-junit-report@v4
if: always() # always run even if the previous step fails
with:
report_paths: 'junit-results/*.xml'

0 comments on commit f84b645

Please sign in to comment.