Skip to content
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ jobs:
steps:
- uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: '24'
- name: Build driver bundles from source
run: bash scripts/build_driver.sh
- name: Upload driver bundles
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: driver-bundles
path: driver/playwright-*.zip
Expand All @@ -50,7 +50,7 @@ jobs:
with:
python-version: "3.10"
- name: Download driver bundles
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: driver-bundles
path: driver/
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Download driver bundles
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: driver-bundles
path: driver/
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
with:
python-version: "3.10"
- name: Download driver bundles
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: driver-bundles
path: driver/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
python-version: "3.10"
- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: '24'
- name: Set up Docker QEMU for arm64 docker builds
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
with:
python-version: "3.10"
- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: '24'
- name: Install dependencies
Expand Down
Loading