Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ jobs:
- name: Get installed Playwright version
id: playwright-version
run: echo "version=$(npm view @playwright/test version)" >> $GITHUB_OUTPUT
- uses: actions/cache@v4
- uses: actions/cache@v5
id: playwright-cache
with:
path: "~/.cache/ms-playwright"
Expand Down Expand Up @@ -238,7 +238,7 @@ jobs:
shell: bash
- name: Cache Fixtures
id: cache-fixtures
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: tests/fixtures
key:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:
run: echo "PATH=$(pnpm store path --silent)" >> ${GITHUB_OUTPUT}

- name: cache pnpm deps
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ steps.pnpm-store.outputs.PATH }}
key: pnpm-store-${{ hashFiles('next.js/pnpm-lock.yaml') }}
Expand All @@ -162,7 +162,7 @@ jobs:
run: echo "PATH=$(npm config get cache)" >> ${GITHUB_OUTPUT}

- name: cache npm deps
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ steps.npm-cache.outputs.PATH }}
key: node-cache-${{ hashFiles('opennextjs-netlify/package-lock.json') }}
Expand Down
Loading