This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
SEC-18515: Bump boto3 to enable IMDSv2 #1115
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
release: | |
jobs: | |
tox: | |
env: | |
PIP_INDEX_URL: https://pypi.python.org/simple | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
make_target: | |
- run-pre-commit | |
- test-external | |
- itest-external | |
- itest_bionic-external | |
- itest_jammy-external | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.7 | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: 3.8 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: '1.17.3' | |
- uses: azure/setup-kubectl@v1 | |
with: | |
version: v1.22.0 | |
# GHA won't setup tox for us and we use tox-pip-extensions for venv-update | |
- run: pip install tox==3.8.6 tox-pip-extensions==1.6.0 | |
- run: go install sigs.k8s.io/[email protected] | |
- run: make ${{ matrix.make_target }} |