Skip to content

Commit 8c64008

Browse files
committed
chore: update all actions to use ubuntu-24.04
1 parent ccb7234 commit 8c64008

11 files changed

Lines changed: 19 additions & 19 deletions

.github/workflows/auto-reqs-update-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
workflow_dispatch
44
jobs:
55
auto-pull-request:
6-
runs-on: ubuntu-latest
6+
runs-on: ubuntu-24.04
77
steps:
88
- name: close existing PRs
99
run: |

.github/workflows/check-acceptance-test-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
jobs:
1111
formatting-check:
1212
name: Scala dependencies and code check
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-24.04
1414
steps:
1515
- uses: actions/checkout@v4.1.7
1616
- name: Setup JDK

.github/workflows/check-acceptance-test-fmt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
jobs:
1111
formatting-check:
1212
name: Scala formatting check
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-24.04
1414
steps:
1515
- uses: actions/checkout@v4.1.7
1616
- name: Setup JDK

.github/workflows/create-release-branch.yml

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

1515
jobs:
1616
create-release-pr:
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-24.04
1818
steps:
1919
- uses: actions/checkout@v4.1.7
2020
with:

.github/workflows/cron-jobs.yaml

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

99
jobs:
1010
remove-CI-deployments:
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-24.04
1212
steps:
1313
- name: renku teardown
1414
uses: SwissDataScienceCenter/renku-actions/cleanup-renku-ci-deployments@v1.14.1

.github/workflows/github-project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
add_to_project:
88
name: Add issue to project
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-24.04
1010
steps:
1111
- uses: actions/add-to-project@main
1212
with:

.github/workflows/publish-helm-chart.yml

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

88
jobs:
99
publish-chart:
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-24.04
1111
steps:
1212
- uses: actions/checkout@v4.1.7
1313
with:

.github/workflows/publish-master-merges.yaml

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

1313
jobs:
1414
publish-chart:
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-24.04
1616
steps:
1717
- uses: actions/checkout@v4.1.7
1818
with:

.github/workflows/pull-request-test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
test-docs:
1818
name: Documentation
1919
if: github.event.action != 'closed'
20-
runs-on: ubuntu-latest
20+
runs-on: ubuntu-24.04
2121
steps:
2222
- uses: actions/checkout@v4.1.7
2323
- uses: actions/setup-java@v4
@@ -50,7 +50,7 @@ jobs:
5050

5151
check-deploy:
5252
name: Analyze deploy string
53-
runs-on: ubuntu-22.04
53+
runs-on: ubuntu-24.04
5454
outputs:
5555
pr-contains-string: ${{ steps.deploy-comment.outputs.pr-contains-string }}
5656
renku-core: ${{ steps.deploy-comment.outputs.renku-core}}
@@ -75,7 +75,7 @@ jobs:
7575
name: Deploy
7676
if: github.event.action != 'closed'
7777
needs: [check-deploy]
78-
runs-on: ubuntu-22.04
78+
runs-on: ubuntu-24.04
7979
environment:
8080
name: ci-renku-${{ github.event.number }}
8181
url: https://ci-renku-${{ github.event.number }}.dev.renku.ch
@@ -126,7 +126,7 @@ jobs:
126126
name: Legacy Scala tests
127127
if: github.event.action != 'closed' && needs.check-deploy.outputs.pr-contains-string == 'true' && needs.check-deploy.outputs.test-enabled == 'true'
128128
needs: [check-deploy, deploy-pr]
129-
runs-on: ubuntu-22.04
129+
runs-on: ubuntu-24.04
130130
steps:
131131
- uses: SwissDataScienceCenter/renku-actions/test-renku@v1.14.1
132132
with:
@@ -140,7 +140,7 @@ jobs:
140140
legacy-cypress-acceptance-tests:
141141
name: Legacy Cypress tests
142142
needs: [check-deploy, deploy-pr]
143-
runs-on: ubuntu-22.04
143+
runs-on: ubuntu-24.04
144144

145145
strategy:
146146
fail-fast: false
@@ -167,7 +167,7 @@ jobs:
167167
cypress-acceptance-tests:
168168
name: Cypress tests
169169
needs: [check-deploy, deploy-pr]
170-
runs-on: ubuntu-22.04
170+
runs-on: ubuntu-24.04
171171
strategy:
172172
fail-fast: false
173173
matrix:
@@ -194,7 +194,7 @@ jobs:
194194
deploy-string-no-custom-version:
195195
name: Ensure no custom components
196196
needs: [check-deploy]
197-
runs-on: ubuntu-22.04
197+
runs-on: ubuntu-24.04
198198
steps:
199199
- name: Check deploy string
200200
if: ${{
@@ -215,7 +215,7 @@ jobs:
215215
cleanup:
216216
name: Cleanup
217217
if: github.event.action == 'closed'
218-
runs-on: ubuntu-22.04
218+
runs-on: ubuntu-24.04
219219
steps:
220220
- name: renku teardown
221221
uses: SwissDataScienceCenter/renku-actions/cleanup-renku-ci-deployments@v1.14.1

.github/workflows/release-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
check-open-prs:
1212
if: startsWith(github.event.pull_request.head.ref, 'release-')
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-24.04
1414
steps:
1515
- name: Check unmerged PRs
1616
uses: actions/github-script@v7

0 commit comments

Comments
 (0)