Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/go-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

go-release:
needs: get-dafny-version
runs-on: macos-13
runs-on: macos-latest
permissions:
contents: write
pull-requests: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/library_go_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
# Windows source code is tested downstream (ex. ESDK-Python CI).
# windows-latest,
ubuntu-22.04,
macos-13,
macos-latest,
]
runs-on: ${{ matrix.os }}
defaults:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/library_interop_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
# https://taskei.amazon.dev/tasks/CrypTool-5283
# windows-latest,
ubuntu-22.04,
macos-13,
macos-latest,
]
language: [java, net, rust, python, go]
# https://taskei.amazon.dev/tasks/CrypTool-5284
Expand Down Expand Up @@ -227,7 +227,7 @@ jobs:
# TODO just test on mac and ubuntu for now
# windows-latest,
ubuntu-22.04,
macos-13,
macos-latest,
]
decrypting_language: [java, net, rust, python, go]
dotnet-version: ["6.0.x"]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/library_java_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
# TODO just test on mac for now
# windows-latest,
ubuntu-22.04,
macos-13,
macos-latest,
]
java-versions: [8, 11, 16, 17]
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/library_net_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
TestVectorsAwsCryptographicMaterialProviders,
]
dotnet-version: ["6.0.x"]
os: [windows-latest, ubuntu-22.04, macos-13]
os: [windows-latest, ubuntu-22.04, macos-latest]
runs-on: ${{ matrix.os }}
defaults:
run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/library_python_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
# Windows source code is tested downstream (ex. ESDK-Python CI).
# windows-latest,
ubuntu-22.04,
macos-13,
macos-latest,
]
runs-on: ${{ matrix.os }}
defaults:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/library_rust_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
TestVectorsAwsCryptographicMaterialProviders,
]
# removed windows-latest because somehow it can't build aws-lc in CI
os: [ubuntu-22.04, macos-13]
os: [ubuntu-22.04, macos-latest]
runs-on: ${{ matrix.os }}
permissions:
id-token: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sem_ver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
semantic-release:
runs-on: macos-13
runs-on: macos-latest
permissions:
id-token: write
contents: read
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/semantic_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
# there is no easy way in gha to check if the actor is part of the team, running semantic release is a more
# privileged operation, so we must make sure this list of users is a subset of the users labeled as maintainers of
# https://github.com/orgs/aws/teams/aws-crypto-tools
if: contains('["seebees","texastony","ShubhamChaturvedi7","lucasmcdonald3","josecorella","imabhichow","rishav-karanjit","antonf-amzn","kessplas","RitvikKapila","ajewellamz"]', github.actor)
runs-on: macos-13
if: contains('["seebees","texastony","ShubhamChaturvedi7","lucasmcdonald3","josecorella","imabhichow","rishav-karanjit","antonf-amzn","kessplas","ajewellamz"]', github.actor)
runs-on: macos-latest
permissions:
id-token: write
contents: write
Expand Down
Loading