Skip to content

Commit 9377d3f

Browse files
authored
Merge pull request EESSI#848 from bedroge/ci_ubuntu_2204
Stick to Ubuntu 22.04 for Github workflows
2 parents 3af9cf6 + 028a70a commit 9377d3f

12 files changed

+15
-15
lines changed

.github/workflows/scorecards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
analysis:
2020
if: github.repository_owner == 'EESSI' # Prevent running on forks
2121
name: Scorecards analysis
22-
runs-on: ubuntu-latest
22+
runs-on: ubuntu-22.04
2323
permissions:
2424
# Needed to upload the results to code-scanning dashboard.
2525
security-events: write

.github/workflows/test-software.eessi.io.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515
- nvidia/cc80
1616
jobs:
1717
check_missing:
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-22.04
1919
strategy:
2020
fail-fast: false
2121
matrix:

.github/workflows/test_eessi_container_script.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99
contents: read # to fetch code (actions/checkout)
1010
jobs:
1111
eessi_container_script:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-22.04
1313
strategy:
1414
fail-fast: false
1515
matrix:

.github/workflows/test_licenses.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ permissions:
88
contents: read # to fetch code (actions/checkout)
99
jobs:
1010
build:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-22.04
1212
steps:
1313
- name: Check out software-layer repository
1414
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ permissions:
88
contents: read # to fetch code (actions/checkout)
99
jobs:
1010
build:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-22.04
1212
strategy:
1313
matrix:
1414
python: [3.7, 3.8, 3.9, '3.10']

.github/workflows/tests_archdetect.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ permissions:
88
contents: read # to fetch code (actions/checkout)
99
jobs:
1010
build:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-22.04
1212
strategy:
1313
matrix:
1414
proc_cpuinfo:

.github/workflows/tests_archdetect_nvidia_gpu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ permissions:
77
contents: read # to fetch code (actions/checkout)
88
jobs:
99
build:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-22.04
1111
strategy:
1212
matrix:
1313
fake_nvidia_smi_script:

.github/workflows/tests_eessi_module.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ permissions:
88
contents: read # to fetch code (actions/checkout)
99
jobs:
1010
basic_checks:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-22.04
1212
strategy:
1313
fail-fast: false
1414
matrix:
@@ -63,7 +63,7 @@ jobs:
6363
set -e # Re-enable exit on non-zero status
6464
6565
lmod_and_init_script_comparison:
66-
runs-on: ubuntu-latest
66+
runs-on: ubuntu-22.04
6767
strategy:
6868
fail-fast: false
6969
matrix:
@@ -136,7 +136,7 @@ jobs:
136136
fi
137137
138138
make_sure_load_and_unload_work:
139-
runs-on: ubuntu-latest
139+
runs-on: ubuntu-22.04
140140
strategy:
141141
fail-fast: false
142142
matrix:
@@ -204,4 +204,4 @@ jobs:
204204
echo "Test for checking env variables FAILED" >&2
205205
diff --unified=0 "${initial_env_file}" "${module_cycled_file}"
206206
exit 1
207-
fi
207+
fi

.github/workflows/tests_init.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ permissions:
88
contents: read # to fetch code (actions/checkout)
99
jobs:
1010
build:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-22.04
1212
strategy:
1313
matrix:
1414
python: [3.7, 3.8, 3.9, '3.10']

.github/workflows/tests_init_module.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99
contents: read # to fetch code (actions/checkout)
1010
jobs:
1111
build:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-22.04
1313
strategy:
1414
fail-fast: false
1515
matrix:

0 commit comments

Comments
 (0)