Skip to content

Commit a9bad78

Browse files
committed
CI: update checkout and setup-python actions
- actions/checkout@v3 - actions/setup-python@v4 the version we were using was using older node version, and github started warning us about it
1 parent d784fd2 commit a9bad78

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build-experimental.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
archs: [ aarch64, ppc64le ]
1919

2020
steps:
21-
- uses: actions/checkout@v2.1.0
21+
- uses: actions/checkout@v3
2222

2323
- name: Set up QEMU
2424
id: qemu
@@ -27,7 +27,7 @@ jobs:
2727
platforms: all
2828
if: runner.os == 'Linux'
2929

30-
- uses: actions/setup-python@v2
30+
- uses: actions/setup-python@v4
3131
name: Install Python
3232

3333
- name: Install cibuildwheel

.github/workflows/build-push.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ jobs:
4646
platform: PyPy
4747

4848
steps:
49-
- uses: actions/checkout@v2
49+
- uses: actions/checkout@v3
5050

51-
- uses: actions/setup-python@v2
51+
- uses: actions/setup-python@v4
5252
name: Install Python
5353

5454
- name: Install cibuildwheel
@@ -124,9 +124,9 @@ jobs:
124124
if: "(!contains(github.event.pull_request.labels.*.name, 'disable-test-build'))|| github.event_name == 'push' && endsWith(github.event.ref, 'scylla')"
125125
runs-on: ubuntu-latest
126126
steps:
127-
- uses: actions/checkout@v2
127+
- uses: actions/checkout@v3
128128

129-
- uses: actions/setup-python@v2
129+
- uses: actions/setup-python@v4
130130
name: Install Python
131131

132132
- name: Build sdist

0 commit comments

Comments
 (0)