Skip to content

Commit 7d2a498

Browse files
committed
Update actions to v4
1 parent 2d49b1c commit 7d2a498

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/e2e.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@ jobs:
99
timeout-minutes: 60
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- name: Prepare .env file
1414
run: |
1515
rm -f .env && touch .env
1616
echo "NEXT_PUBLIC_FORMSPREE_ID=fake123" >> .env
1717
echo "NEXT_PUBLIC_RECAPTCHA_SITE_KEY=123fAkE" >> .env
18-
- uses: actions/setup-node@v3
18+
- uses: actions/setup-node@v4
1919
with:
20-
node-version: '18.x'
20+
node-version: '20.x'
2121
- name: Install dependencies
2222
run: npm ci
2323
- name: Install Playwright Browsers
2424
run: npx playwright install --with-deps
2525
- name: Run Playwright tests
2626
run: npm run test
27-
- uses: actions/upload-artifact@v3
27+
- uses: actions/upload-artifact@v4
2828
if: always()
2929
with:
3030
name: playwright-report

.github/workflows/validate.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
timeout-minutes: 60
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
13-
- uses: actions/setup-node@v3
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-node@v4
1414
with:
15-
node-version: '14.x'
15+
node-version: '20.x'
1616
- name: Install dependencies
1717
run: npm ci
1818
- name: Run code validation (includes linting, prettier and building)

0 commit comments

Comments
 (0)