Skip to content

Commit 1b8ff91

Browse files
authored
Add packageManager field and update workflow actions (#1216)
1 parent df7f890 commit 1b8ff91

7 files changed

Lines changed: 10 additions & 11 deletions

File tree

.github/actions/install-dependencies/action.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@ runs:
99
using: "composite"
1010
steps:
1111
- name: Install pnpm
12-
uses: pnpm/action-setup@v4
13-
with:
14-
version: 9
12+
uses: pnpm/action-setup@v5
1513

1614
- name: Install Node.js ${{ inputs.node-version }}
17-
uses: actions/setup-node@v4
15+
uses: actions/setup-node@v6
1816
with:
1917
node-version: ${{ inputs.node-version }}
2018
cache: "pnpm"

.github/actions/setup-playwright/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ runs:
1111

1212
- name: Cache Playwright
1313
id: playwright-cache
14-
uses: actions/cache@v4
14+
uses: actions/cache@v5
1515
with:
1616
path: ${{ runner.os == 'Windows' && format('{0}{1}', env.HOME, '\AppData\Local\ms-playwright') || runner.os == 'Linux' && '~/.cache/ms-playwright' || '~/Library/Caches/ms-playwright' }}
1717
key: playwright-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}

.github/workflows/changesets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout Repo
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020
with:
2121
# See https://github.com/changesets/action/issues/187
2222
token: ${{ secrets.GH_ACCESS_TOKEN }}

.github/workflows/checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
script: ["prettier:check", "lint:check", "ts:check", "test"]
1616
steps:
1717
- name: Check out code
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919

2020
- name: Install Dependencies
2121
uses: ./.github/actions/install-dependencies

.github/workflows/playwright.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Check out code
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v6
1515

1616
- name: Install Dependencies
1717
uses: ./.github/actions/install-dependencies
@@ -34,7 +34,7 @@ jobs:
3434
- name: Run playwright dev tests
3535
run: pnpm e2e:dev
3636

37-
- uses: actions/upload-artifact@v4
37+
- uses: actions/upload-artifact@v7
3838
if: always()
3939
with:
4040
name: playwright-report

.github/workflows/prereleases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Checkout Repo
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0
1919

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,6 @@
2525
"install-playwright": "playwright install --with-deps",
2626
"postinstall": "pnpm --filter cloudflare build",
2727
"benchmark": "pnpm run --filter benchmarking benchmark"
28-
}
28+
},
29+
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
2930
}

0 commit comments

Comments
 (0)