File tree Expand file tree Collapse file tree 8 files changed +11
-50
lines changed Expand file tree Collapse file tree 8 files changed +11
-50
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -11,11 +11,11 @@ jobs:
11
11
env :
12
12
REPORTS : issues
13
13
steps :
14
- - uses : actions/checkout@v2
14
+ - uses : actions/checkout@v3
15
15
with :
16
16
persist-credentials : false
17
17
fetch-depth : 0
18
- - uses : actions/setup-python@v2
18
+ - uses : actions/setup-python@v3
19
19
with :
20
20
python-version : " 3.9.x"
21
21
- run : bash .github/extract-snippets/extract-snippets.sh dryrun
Original file line number Diff line number Diff line change 16
16
if : github.repository_owner == 'aws' || github.repository_owner == 'awsdocs' || github.repository_owner == 'aws-samples' || github.repository_owner == 'jerry-aws'
17
17
runs-on : ubuntu-latest
18
18
steps :
19
- - uses : actions/checkout@v2
19
+ - uses : actions/checkout@v3
20
20
with :
21
21
persist-credentials : false
22
22
fetch-depth : 0
Original file line number Diff line number Diff line change 12
12
steps :
13
13
-
14
14
name : Checkout
15
- uses : actions/checkout@v2
15
+ uses : actions/checkout@v3
16
16
17
17
# The Add Labels workflow adds a label to pull requests
18
18
# based on the files included in the proposed change.
40
40
-
41
41
name : Audit Labels
42
42
if : success()
43
- uses : crazy-max/ghaction-github-labeler@v3
43
+ uses : crazy-max/ghaction-github-labeler@v4
44
44
with :
45
45
github-token : ${{ secrets.GITHUB_TOKEN }}
46
46
yaml-file : .github/allowed-labels.yml
Original file line number Diff line number Diff line change 22
22
# Steps represent a sequence of tasks that will be executed as part of the job
23
23
steps :
24
24
- name : checkout repo content
25
- uses : actions/checkout@v2 # checkout the repository content to github runner.
25
+ uses : actions/checkout@v3 # checkout the repository content to github runner.
26
26
- name : setup python
27
- uses : actions/setup-python@v2
27
+ uses : actions/setup-python@v3
28
28
with :
29
29
python-version : 3.8 # install the python needed
30
30
- name : Run Python script to vet code examples # Runs a single command using the runners shell
Original file line number Diff line number Diff line change 16
16
name : Check
17
17
runs-on : ubuntu-latest
18
18
steps :
19
- - uses : actions/checkout@v2
19
+ - uses : actions/checkout@v3
20
20
- name : pre-setup
21
21
run : sudo apt-get update && sudo apt-get install -y libclang-dev
22
22
- uses : actions-rs/toolchain@v1
Original file line number Diff line number Diff line change 20
20
runs-on : ubuntu-latest
21
21
steps :
22
22
- name : Checkout code
23
- uses : actions/checkout@v2
23
+ uses : actions/checkout@v3
24
24
with :
25
25
# Full git history is needed to get a proper list of changed files within `super-linter`
26
26
fetch-depth : 0
Original file line number Diff line number Diff line change 7
7
validate-doc-metadata :
8
8
runs-on : ubuntu-latest
9
9
steps :
10
- - uses : actions/checkout@v2
10
+ - uses : actions/checkout@v3
11
11
with :
12
12
persist-credentials : false
13
13
fetch-depth : 0
14
14
- name : Set up Python 3.9.x
15
- uses : actions/setup-python@v2
15
+ uses : actions/setup-python@v3
16
16
with :
17
17
python-version : " 3.9.x"
18
18
- name : Install dependencies
You can’t perform that action at this time.
0 commit comments