Skip to content

Commit 6126ddb

Browse files
fix(.NET): CollectionOfErrors; list as string (#1247)
Co-authored-by: Lucas McDonald <lucasmcdonald3@gmail.com>
1 parent 898cb43 commit 6126ddb

30 files changed

Lines changed: 229 additions & 28 deletions

File tree

.github/workflows/check-files.yml

Lines changed: 1 addition & 1 deletion
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_keyword.yml

Lines changed: 1 addition & 1 deletion
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_static-analysis.yaml

Lines changed: 1 addition & 1 deletion
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@v4
1515
- name: not-grep

.github/workflows/dafny_verify_version.yaml

Lines changed: 1 addition & 1 deletion
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.yaml

Lines changed: 1 addition & 1 deletion
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/duvet.yaml

Lines changed: 1 addition & 1 deletion
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
# This environment stores a token
1616
# that can be used to checkout
1717
# the ESDK specification

.github/workflows/library_codegen.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
# in this workflow.
3030
# The workflow installs black and docformatter and runs them on generated code.
3131
python-version: [3.11]
32-
os: [ubuntu-latest]
32+
os: [ubuntu-22.04]
3333
runs-on: ${{ matrix.os }}
3434
defaults:
3535
run:

.github/workflows/library_format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
TestVectorsAwsCryptographicMaterialProviders,
3030
StandardLibrary,
3131
]
32-
os: [ubuntu-latest]
32+
os: [ubuntu-22.04]
3333
runs-on: ${{ matrix.os }}
3434
defaults:
3535
run:
@@ -77,7 +77,7 @@ jobs:
7777
format_java_misc:
7878
# Don't run the nightly build on forks
7979
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
80-
runs-on: ubuntu-latest
80+
runs-on: ubuntu-22.04
8181

8282
steps:
8383
- name: Support longpaths

.github/workflows/library_interop_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
os: [
2323
# https://taskei.amazon.dev/tasks/CrypTool-5283
2424
# windows-latest,
25-
ubuntu-latest,
2625
macos-13,
26+
ubuntu-22.04,
2727
]
2828
language: [java, net, python]
2929
# https://taskei.amazon.dev/tasks/CrypTool-5284
@@ -144,7 +144,7 @@ jobs:
144144
os: [
145145
# TODO just test on mac and ubuntu for now
146146
# windows-latest,
147-
ubuntu-latest,
147+
ubuntu-22.04,
148148
macos-13,
149149
]
150150
encrypting_language: [java, net, python]

.github/workflows/library_java_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
3131
os: [
3232
# TODO just test on mac for now
3333
# windows-latest,
34-
ubuntu-latest,
3534
macos-13,
35+
ubuntu-22.04,
3636
]
3737
runs-on: ${{ matrix.os }}
3838
permissions:

0 commit comments

Comments
 (0)