Skip to content

Commit 5e24233

Browse files
authored
chore(gha): use ubuntu-22.04 (#1594)
1 parent 46076f8 commit 5e24233

16 files changed

+16
-16
lines changed

.github/workflows/check-files.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
require-approvals:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-22.04
1111
permissions:
1212
issues: write
1313
pull-requests: write

.github/workflows/check_only_key_word.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
grep-only-verification-keyword:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-22.04
1212
permissions:
1313
issues: write
1414
pull-requests: write

.github/workflows/ci_codegen.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# Note dotnet is only used for formatting generated code
1818
# in this workflow
1919
dotnet-version: ["6.0.x"]
20-
os: [ubuntu-latest]
20+
os: [ubuntu-22.04]
2121
runs-on: ${{ matrix.os }}
2222
defaults:
2323
run:

.github/workflows/ci_duvet.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
duvet:
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-22.04
1515
steps:
1616
- uses: actions/checkout@v3
1717

.github/workflows/ci_static_analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
not-grep:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-22.04
1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: not-grep

.github/workflows/ci_test_net.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
matrix:
2626
library: [DynamoDbEncryption]
2727
dotnet-version: ["6.0.x"]
28-
os: [macos-13, ubuntu-latest, windows-latest]
28+
os: [macos-13, ubuntu-22.04, windows-latest]
2929
runs-on: ${{ matrix.os }}
3030
permissions:
3131
id-token: write

.github/workflows/ci_test_vector_net.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
dotnet-version: ["6.0.x"]
2828
os: [
2929
# Run on ubuntu image that comes pre-configured with docker
30-
ubuntu-latest,
30+
ubuntu-22.04,
3131
]
3232
runs-on: ${{ matrix.os }}
3333
permissions:

.github/workflows/dafny_interop_test_net.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
matrix:
2525
library: [DynamoDbEncryption]
2626
dotnet-version: ["6.0.x"]
27-
os: [macos-13, ubuntu-latest, windows-latest]
27+
os: [macos-13, ubuntu-22.04, windows-latest]
2828
runs-on: ${{ matrix.os }}
2929
permissions:
3030
id-token: write

.github/workflows/dafny_interop_test_vector_java.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
java-version: [8, 11, 16, 17]
3131
os: [
3232
# Run on ubuntu image that comes pre-configured with docker
33-
ubuntu-latest,
33+
ubuntu-22.04,
3434
]
3535
runs-on: ${{ matrix.os }}
3636
permissions:

.github/workflows/dafny_interop_test_vector_net.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
matrix:
2525
library: [TestVectors]
2626
dotnet-version: ["6.0.x"]
27-
os: [ubuntu-latest]
27+
os: [ubuntu-22.04]
2828
runs-on: ${{ matrix.os }}
2929
permissions:
3030
id-token: write

.github/workflows/dafny_verify_version.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
getDafnyVerifyVersion:
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-22.04
1616
outputs:
1717
version: ${{ steps.read_property.outputs.dafnyVerifyVersion }}
1818
steps:

.github/workflows/dafny_version.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
getDafnyVersion:
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-22.04
1616
outputs:
1717
version: ${{ steps.read_property.outputs.dafnyVersion }}
1818
steps:

.github/workflows/library_rust_tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
matrix:
2727
library: [DynamoDbEncryption, TestVectors]
2828
# removed windows-latest because somehow it can't build aws-lc in CI
29-
os: [ubuntu-latest, macos-13]
29+
os: [ubuntu-22.04, macos-13]
3030
runs-on: ${{ matrix.os }}
3131
permissions:
3232
id-token: write

.github/workflows/mpl_head_version.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818

1919
jobs:
2020
getMplHeadVersion:
21-
runs-on: ubuntu-latest
21+
runs-on: ubuntu-22.04
2222
outputs:
2323
version: ${{ steps.read_property.outputs.mplVersion }}
2424
steps:

.github/workflows/nightly.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
regenerate-code: true
6767

6868
cut-issue-on-failure:
69-
runs-on: ubuntu-latest
69+
runs-on: ubuntu-22.04
7070
permissions:
7171
id-token: write
7272
contents: read

.github/workflows/smithy-diff.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
require-approvals:
11-
runs-on: ubuntu-latest
11+
runs-on: ubuntu-22.04
1212
permissions:
1313
issues: write
1414
pull-requests: write

0 commit comments

Comments
 (0)