Skip to content

Commit ecd9e02

Browse files
committed
stop using Ubuntu 20.04 in CI workflows
1 parent 198a7fc commit ecd9e02

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/build.yml

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

88
jobs:
99
build:
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-24.04
1111
steps:
1212
- name: checkout
1313
uses: actions/checkout@v3

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ permissions:
88
contents: write # to fetch code (actions/checkout) + deploy docs to GitHub Pages (gh-pages branch)
99
jobs:
1010
build:
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-24.04
1212
steps:
1313
- name: checkout
1414
uses: actions/checkout@v3

.github/workflows/detect_html.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push, pull_request]
44

55
jobs:
66
html-check:
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-24.04
88
steps:
99
- name: Checkout code
1010
uses: actions/checkout@v3

.github/workflows/script_module_list.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ permissions: read-all
1414
jobs:
1515

1616
flake8-lint:
17-
runs-on: ubuntu-20.04
17+
runs-on: ubuntu-24.04
1818
name: Lint
1919
steps:
2020
- name: Check out source repository
@@ -46,4 +46,4 @@ jobs:
4646
- name: Test with pytest
4747
run: |
4848
cd scripts/available_software
49-
./test.sh
49+
./test.sh

0 commit comments

Comments
 (0)