Skip to content

Commit adc3d71

Browse files
saikonensavingoyal
andauthored
chore: upgrade GH workflows base ubuntu image (#2334)
Ubuntu 20.04 runner is being deprecated and will be fully unsupported by 2025-04-01 --------- Co-authored-by: Savin <[email protected]>
1 parent 476a197 commit adc3d71

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/codeql.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ on:
2323
jobs:
2424
analyze:
2525
name: Analyze
26-
runs-on: ubuntu-latest
26+
runs-on: ubuntu-22.04
2727
permissions:
2828
actions: read
2929
contents: read

.github/workflows/metaflow.s3_tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ${{ matrix.os }}
2020
strategy:
2121
matrix:
22-
os: [macos-latest, ubuntu-20.04]
22+
os: [macos-latest, ubuntu-22.04]
2323
ver: ['3.8', '3.9', '3.10', '3.11', '3.12']
2424

2525
steps:

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
uses: './.github/workflows/test-stubs.yml'
1010
deploy:
1111
needs: [test, test-stubs]
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-22.04
1313
steps:
1414
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
1515
- name: Set up Python 3.x

.github/workflows/test-stubs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
os: [ubuntu-20.04]
20+
os: [ubuntu-22.04]
2121
ver: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
2222
include:
2323
- os: macos-latest

.github/workflows/test.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions: read-all
1212

1313
jobs:
1414
pre-commit:
15-
runs-on: ubuntu-20.04
15+
runs-on: ubuntu-22.04
1616
steps:
1717
- uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
1818
- uses: actions/setup-python@75f3110429a8c05be0e1bf360334e4cced2b63fa # v2.3.3
@@ -24,8 +24,8 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
os: [ubuntu-20.04]
28-
ver: ['3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
27+
os: [ubuntu-22.04]
28+
ver: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
2929
include:
3030
- os: macos-latest
3131
ver: "3.13"
@@ -60,7 +60,7 @@ jobs:
6060
strategy:
6161
fail-fast: false
6262
matrix:
63-
os: [ubuntu-20.04]
63+
os: [ubuntu-22.04]
6464
ver: ['4.4.1']
6565

6666
steps:
@@ -71,7 +71,7 @@ jobs:
7171
r-version: ${{ matrix.ver }}
7272

7373
- name: Install R ${{ matrix.ver }} system dependencies
74-
if: matrix.os == 'ubuntu-20.04'
74+
if: matrix.os == 'ubuntu-22.04'
7575
run: sudo apt-get update; sudo apt-get install -y libcurl4-openssl-dev qpdf libgit2-dev libharfbuzz-dev libfribidi-dev
7676

7777
- name: Install R ${{ matrix.ver }} Rlang dependencies

0 commit comments

Comments
 (0)