Skip to content

Commit 32c2347

Browse files
Bump actions/checkout and actions/setup-python actions to latest major (DataDog#559)
1 parent 411c30c commit 32c2347

File tree

5 files changed

+17
-15
lines changed

5 files changed

+17
-15
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ jobs:
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

.github/workflows/integration_test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ jobs:
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: |

.github/workflows/lint.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ jobs:
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

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/trace_forwarder.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ jobs:
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

0 commit comments

Comments
 (0)