Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump CRT version #579

Merged
merged 2 commits into from
May 22, 2024
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ env:
jobs:

windows:
runs-on: windows-latest
runs-on: windows-2022
permissions:
id-token: write # This is required for requesting the JWT
steps:
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
python ./deviceadvisor/script/DATestRun.py

osx:
runs-on: macos-latest
runs-on: macos-13
permissions:
id-token: write # This is required for requesting the JWT
steps:
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
python3 ./deviceadvisor/script/DATestRun.py

linux:
runs-on: ubuntu-20.04 # latest
runs-on: ubuntu-22.04 # latest
permissions:
id-token: write # This is required for requesting the JWT
steps:
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:

# Runs the samples and ensures that everything is working
linux-smoke-tests:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
permissions:
id-token: write # This is required for requesting the JWT
steps:
Expand Down Expand Up @@ -393,7 +393,7 @@ jobs:

# check that docs can still build
check-docs:
runs-on: ubuntu-20.04 # latest
runs-on: ubuntu-22.04 # latest
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -405,7 +405,7 @@ jobs:
./make-docs.py

check-codegen-edits:
runs-on: ubuntu-20.04 # latest
runs-on: ubuntu-22.04 # latest
steps:
- uses: actions/checkout@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def _load_version():
"Operating System :: OS Independent",
],
install_requires=[
'awscrt==0.20.9',
'awscrt==0.20.10',
],
python_requires='>=3.7',
)
Loading