Skip to content

Commit f83153a

Browse files
Update dependency ubuntu to v24
1 parent aeb59d3 commit f83153a

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: CI
22
on: [push]
33
jobs:
44
python-tests:
5-
runs-on: ubuntu-22.04
5+
runs-on: ubuntu-24.04
66

77
services:
88
# Label used to access the service container
@@ -86,7 +86,7 @@ jobs:
8686
file: ./coverage.xml
8787

8888
javascript-tests:
89-
runs-on: ubuntu-22.04
89+
runs-on: ubuntu-24.04
9090
steps:
9191
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
9292
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
@@ -144,7 +144,7 @@ jobs:
144144

145145
build-nextjs-container:
146146
needs: javascript-tests
147-
runs-on: ubuntu-22.04
147+
runs-on: ubuntu-24.04
148148
steps:
149149
- name: Checkout
150150
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
@@ -193,7 +193,7 @@ jobs:
193193
-t mitodl/mit-learn-frontend:$VERSION .
194194
195195
build-storybook:
196-
runs-on: ubuntu-22.04
196+
runs-on: ubuntu-24.04
197197
steps:
198198
- name: Checkout
199199
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
@@ -218,7 +218,7 @@ jobs:
218218
GENERATOR_IGNORE_FILE: ./frontends/api/.openapi-generator-ignore
219219
GENERATOR_OUTPUT_DIR_CI: ./frontends/api/tmp/generated/v0
220220
GENERATOR_OUTPUT_DIR_VC: ./frontends/api/src/generated/v0
221-
runs-on: ubuntu-22.04
221+
runs-on: ubuntu-24.04
222222
steps:
223223
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
224224
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
@@ -257,7 +257,7 @@ jobs:
257257
GENERATOR_IGNORE_FILE: ./frontends/api/.openapi-generator-ignore
258258
GENERATOR_OUTPUT_DIR_CI: ./frontends/api/tmp/generated/v1
259259
GENERATOR_OUTPUT_DIR_VC: ./frontends/api/src/generated/v1
260-
runs-on: ubuntu-22.04
260+
runs-on: ubuntu-24.04
261261
steps:
262262
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
263263
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4

.github/workflows/openapi-diff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: OpenAPI Diff
22
on: [pull_request]
33
jobs:
44
openapi-diff:
5-
runs-on: ubuntu-22.04
5+
runs-on: ubuntu-24.04
66
steps:
77
- name: Checkout HEAD
88
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

.github/workflows/production.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
# runs if CI workflow was successful OR if this was manually triggered
1212
on-success:
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-24.04
1414
if: >
1515
github.event_name == 'workflow_dispatch' ||
1616
github.event.workflow_run.conclusion == 'success'
@@ -100,7 +100,7 @@ jobs:
100100

101101
# runs ONLY on a failure of the CI workflow
102102
on-failure:
103-
runs-on: ubuntu-22.04
103+
runs-on: ubuntu-24.04
104104
if: >
105105
github.event_name == 'workflow_dispatch' ||
106106
github.event.workflow_run.conclusion == 'failure'

.github/workflows/publish-pages.yml

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

1111
jobs:
1212
build:
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-24.04
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
@@ -43,7 +43,7 @@ jobs:
4343
name: github-pages
4444
url: ${{ steps.deployment.outputs.page_url }}
4545

46-
runs-on: ubuntu-22.04
46+
runs-on: ubuntu-24.04
4747
steps:
4848
- name: Deploy to GitHub Pages
4949
id: deployment

.github/workflows/release-candidate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
# runs if CI workflow was successful OR if this was manually triggered
1212
on-success:
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-24.04
1414
if: >
1515
github.event_name == 'workflow_dispatch' ||
1616
github.event.workflow_run.conclusion == 'success'
@@ -100,7 +100,7 @@ jobs:
100100

101101
# runs ONLY on a failure of the CI workflow
102102
on-failure:
103-
runs-on: ubuntu-22.04
103+
runs-on: ubuntu-24.04
104104
if: >
105105
github.event_name == 'workflow_dispatch' ||
106106
github.event.workflow_run.conclusion == 'failure'

0 commit comments

Comments
 (0)