File tree Expand file tree Collapse file tree 5 files changed +17
-15
lines changed Expand file tree Collapse file tree 5 files changed +17
-15
lines changed Original file line number Diff line number Diff line change 3737 # Learn more about CodeQL language support at https://git.io/codeql-language-support
3838
3939 steps :
40- - name : Checkout repository
41- uses : actions/checkout@v2
40+ - name : Checkout source
41+ uses : actions/checkout@v3
4242
4343 # Initializes the CodeQL tools for scanning.
4444 - name : Initialize CodeQL
Original file line number Diff line number Diff line change 88 strategy :
99 max-parallel : 4
1010 matrix :
11- python-version : [" 3.7", " 3.8" ]
11+ python-version : [3.7, 3.8]
1212 steps :
13- - uses : actions/checkout@v2
13+ - name : Checkout source
14+ uses : actions/checkout@v3
1415
1516 - name : Run integration tests
1617 run : |
Original file line number Diff line number Diff line change 66 build :
77 runs-on : ubuntu-latest
88 steps :
9- - uses : actions/checkout@v2
10-
11- - name : Set up Python ${{ matrix.python-version }}
12- uses : actions/setup-python@v1
9+ - name : Checkout source
10+ uses : actions/checkout@v3
11+ - name : Setup Python
12+ uses : actions/setup-python@v3
1313 with :
1414 python-version : 3.7
1515
@@ -27,10 +27,10 @@ jobs:
2727 pip install black
2828 black --check --diff --exclude pb2.py ./aws/logs_monitoring
2929
30- - name : Setup Cloud Formation Linter with Latest Version
30+ - name : Setup CloudFormation Linter with Latest Version
3131 uses : scottbrenner/cfn-lint-action@v2
3232
33- - name : Print the Cloud Formation Linter Version & run Linter.
33+ - name : Print the CloudFormation Linter Version & run Linter
3434 run : |
3535 cfn-lint --version
3636 cfn-lint -t aws/logs_monitoring/template.yaml
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ jobs:
1010 matrix :
1111 python-version : [3.7, 3.8]
1212 steps :
13- - uses : actions/checkout@v2
14-
15- - name : Set up Python ${{ matrix.python-version }}
16- uses : actions/setup-python@v1
13+ - name : Checkout source
14+ uses : actions/checkout@v3
15+ - name : Setup Python ${{ matrix.python-version }}
16+ uses : actions/setup-python@v3
1717 with :
1818 python-version : ${{ matrix.python-version }}
1919
Original file line number Diff line number Diff line change 66 build :
77 runs-on : ubuntu-latest
88 steps :
9- - uses : actions/checkout@v2
9+ - name : Checkout source
10+ uses : actions/checkout@v3
1011 - name : Run trace forwarder tests
1112 run : |
1213 ./aws/logs_monitoring/trace_forwarder/scripts/run_tests.sh
You can’t perform that action at this time.
0 commit comments