Skip to content

Commit b603b08

Browse files
committed
Update GitHub Actions to Node 24 compatible versions
1 parent 7615541 commit b603b08

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010

1111
steps:
1212
- name: Check out repository
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v6
1414

1515
- name: Set up Python
16-
uses: actions/setup-python@v5
16+
uses: actions/setup-python@v6
1717
with:
1818
python-version: "3.11"
1919
cache: "pip"

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ jobs:
4141

4242
steps:
4343
- name: Check out repository
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v6
4545

4646
- name: Set up Python
47-
uses: actions/setup-python@v5
47+
uses: actions/setup-python@v6
4848
with:
4949
python-version: "3.11"
5050
cache: "pip"
@@ -141,7 +141,7 @@ jobs:
141141
run: python scripts/real_backend_smoke.py --binary "${{ steps.package.outputs.bundle_executable }}"
142142

143143
- name: Upload packaged artefact
144-
uses: actions/upload-artifact@v4
144+
uses: actions/upload-artifact@v6
145145
with:
146146
name: ${{ matrix.target }}
147147
path: ${{ steps.package.outputs.archive_path }}
@@ -155,7 +155,7 @@ jobs:
155155

156156
steps:
157157
- name: Download packaged artefacts
158-
uses: actions/download-artifact@v4
158+
uses: actions/download-artifact@v8
159159
with:
160160
path: release-artifacts
161161
merge-multiple: true

0 commit comments

Comments
 (0)