Skip to content

Commit 17430c0

Browse files
chore: Fix CI (#380)
1 parent 2f4773f commit 17430c0

36 files changed

+65
-43
lines changed

.github/workflows/ci_decrypt-oracle.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v2
15-
- uses: actions/setup-python@v1
15+
- uses: actions/setup-python@v2
1616
with:
1717
# The oracle runs in a Python 3.6 Lamba
1818
python-version: 3.6

.github/workflows/ci_static-analysis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- isort-check
2929
steps:
3030
- uses: actions/checkout@v2
31-
- uses: actions/setup-python@v1
31+
- uses: actions/setup-python@v2
3232
with:
3333
python-version: 3.8
3434
- run: |

.github/workflows/ci_test-vector-handler.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
aws-secret-access-key: ${{ secrets.INTEG_AWS_SECRET_ACCESS_KEY }}
4848
aws-region: us-west-2
4949
- uses: actions/checkout@v2
50-
- uses: actions/setup-python@v1
50+
- uses: actions/setup-python@v2
5151
with:
5252
python-version: ${{ matrix.python }}
5353
architecture: ${{ matrix.architecture }}

.github/workflows/ci_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
architecture: x86
5454
steps:
5555
- uses: actions/checkout@v2
56-
- uses: actions/setup-python@v1
56+
- uses: actions/setup-python@v2
5757
with:
5858
python-version: ${{ matrix.python }}
5959
architecture: ${{ matrix.architecture }}

codebuild/py35/awses_local.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ phases:
2020
python: latest
2121
build:
2222
commands:
23-
- pyenv install 3.5.9
24-
- pyenv local 3.5.9
23+
- pyenv install 3.5.10
24+
- pyenv local 3.5.10
2525
- pip install tox tox-pyenv
2626
- cd test_vector_handlers
2727
- tox

codebuild/py35/examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ phases:
1818
python: latest
1919
build:
2020
commands:
21-
- pyenv install 3.5.9
22-
- pyenv local 3.5.9
21+
- pyenv install 3.5.10
22+
- pyenv local 3.5.10
2323
- pip install tox tox-pyenv
2424
- tox

codebuild/py35/integ.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ phases:
1818
python: latest
1919
build:
2020
commands:
21-
- pyenv install 3.5.9
22-
- pyenv local 3.5.9
21+
- pyenv install 3.5.10
22+
- pyenv local 3.5.10
2323
- pip install tox tox-pyenv
2424
- tox

codebuild/py36/awses_local.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ phases:
2020
python: latest
2121
build:
2222
commands:
23-
- pip install tox
23+
- pyenv install 3.6.15
24+
- pyenv local 3.6.15
25+
- pip install tox tox-pyenv
2426
- cd test_vector_handlers
2527
- tox

codebuild/py36/examples.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,7 @@ phases:
1818
python: latest
1919
build:
2020
commands:
21-
- pip install tox
21+
- pyenv install 3.6.15
22+
- pyenv local 3.6.15
23+
- pip install tox tox-pyenv
2224
- tox

codebuild/py36/integ.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,7 @@ phases:
1818
python: latest
1919
build:
2020
commands:
21-
- pip install tox
21+
- pyenv install 3.6.15
22+
- pyenv local 3.6.15
23+
- pip install tox tox-pyenv
2224
- tox

0 commit comments

Comments
 (0)