Skip to content

Commit a10872c

Browse files
committed
cicd: update ubuntu runners to ubuntu-24.04
According to actions/runner-images#11101 ubuntu-20.04 is going to be depricated soon, we need to move to modern version.
1 parent fed644a commit a10872c

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/build-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: "Publish wheels to PyPi"
2020
if: ${{ endsWith(github.event.ref, 'scylla') }}
2121
needs: build-and-publish
22-
runs-on: ubuntu-22.04
22+
runs-on: ubuntu-24.04
2323
permissions:
2424
id-token: write
2525
steps:

.github/workflows/docs-pages.yaml

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

1414
jobs:
1515
release:
16-
runs-on: ubuntu-20.04
16+
runs-on: ubuntu-24.04
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v4

.github/workflows/docs-pr.yaml

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

1414
jobs:
1515
build:
16-
runs-on: ubuntu-20.04
16+
runs-on: ubuntu-24.04
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v4

.github/workflows/lib-build-and-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
do
5050
if [[ "${target}" == "linux" ]]; then
5151
[ -n "$was_added" ] && echo -n "," >> /tmp/matrix.json
52-
echo -n '{"os":"ubuntu-20.04", "target": "linux"}' >> /tmp/matrix.json
52+
echo -n '{"os":"ubuntu-24.04", "target": "linux"}' >> /tmp/matrix.json
5353
was_added=1
5454
elif [[ "${target}" == "linux-aarch64" ]]; then
5555
[ -n "$was_added" ] && echo -n "," >> /tmp/matrix.json

.github/workflows/publish-manually.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
name: "Publish wheels to PyPi"
5050
needs: build-and-publish
5151
if: inputs.upload
52-
runs-on: ubuntu-22.04
52+
runs-on: ubuntu-24.04
5353
permissions:
5454
id-token: write
5555
steps:

0 commit comments

Comments
 (0)