Skip to content

Commit c46a810

Browse files
Update dependency ubuntu to v24
1 parent 62ba021 commit c46a810

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/ci.yml

+6-6
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
@@ -189,7 +189,7 @@ jobs:
189189
-t mitodl/mit-learn-frontend:$VERSION .
190190
191191
build-storybook:
192-
runs-on: ubuntu-22.04
192+
runs-on: ubuntu-24.04
193193
steps:
194194
- name: Checkout
195195
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
@@ -214,7 +214,7 @@ jobs:
214214
GENERATOR_IGNORE_FILE: ./frontends/api/.openapi-generator-ignore
215215
GENERATOR_OUTPUT_DIR_CI: ./frontends/api/tmp/generated/v0
216216
GENERATOR_OUTPUT_DIR_VC: ./frontends/api/src/generated/v0
217-
runs-on: ubuntu-22.04
217+
runs-on: ubuntu-24.04
218218
steps:
219219
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
220220
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
@@ -253,7 +253,7 @@ jobs:
253253
GENERATOR_IGNORE_FILE: ./frontends/api/.openapi-generator-ignore
254254
GENERATOR_OUTPUT_DIR_CI: ./frontends/api/tmp/generated/v1
255255
GENERATOR_OUTPUT_DIR_VC: ./frontends/api/src/generated/v1
256-
runs-on: ubuntu-22.04
256+
runs-on: ubuntu-24.04
257257
steps:
258258
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
259259
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4

.github/workflows/openapi-diff.yml

+1-1
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

+2-2
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'
@@ -96,7 +96,7 @@ jobs:
9696

9797
# runs ONLY on a failure of the CI workflow
9898
on-failure:
99-
runs-on: ubuntu-22.04
99+
runs-on: ubuntu-24.04
100100
if: >
101101
github.event_name == 'workflow_dispatch' ||
102102
github.event.workflow_run.conclusion == 'failure'

.github/workflows/publish-pages.yml

+2-2
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

+2-2
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'
@@ -96,7 +96,7 @@ jobs:
9696

9797
# runs ONLY on a failure of the CI workflow
9898
on-failure:
99-
runs-on: ubuntu-22.04
99+
runs-on: ubuntu-24.04
100100
if: >
101101
github.event_name == 'workflow_dispatch' ||
102102
github.event.workflow_run.conclusion == 'failure'

0 commit comments

Comments
 (0)