Skip to content

Commit e622ef8

Browse files
Updates versions in our workflows to fix the Node.js version 12 deprecation. (#4515)
Co-authored-by: Irene Smith <[email protected]>
1 parent f3b87e6 commit e622ef8

File tree

8 files changed

+11
-50
lines changed

8 files changed

+11
-50
lines changed

.github/workflows/ciTest.yml

Lines changed: 0 additions & 39 deletions
This file was deleted.

.github/workflows/extract-snippets-dryrun.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
env:
1212
REPORTS: issues
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
with:
1616
persist-credentials: false
1717
fetch-depth: 0
18-
- uses: actions/setup-python@v2
18+
- uses: actions/setup-python@v3
1919
with:
2020
python-version: "3.9.x"
2121
- run: bash .github/extract-snippets/extract-snippets.sh dryrun

.github/workflows/extract-snippets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: github.repository_owner == 'aws' || github.repository_owner == 'awsdocs' || github.repository_owner == 'aws-samples' || github.repository_owner == 'jerry-aws'
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
2020
with:
2121
persist-credentials: false
2222
fetch-depth: 0

.github/workflows/label-linter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
-
1414
name: Checkout
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v3
1616

1717
# The Add Labels workflow adds a label to pull requests
1818
# based on the files included in the proposed change.
@@ -40,7 +40,7 @@ jobs:
4040
-
4141
name: Audit Labels
4242
if: success()
43-
uses: crazy-max/ghaction-github-labeler@v3
43+
uses: crazy-max/ghaction-github-labeler@v4
4444
with:
4545
github-token: ${{ secrets.GITHUB_TOKEN }}
4646
yaml-file: .github/allowed-labels.yml

.github/workflows/pre-validate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
# Steps represent a sequence of tasks that will be executed as part of the job
2323
steps:
2424
- 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.
2626
- name: setup python
27-
uses: actions/setup-python@v2
27+
uses: actions/setup-python@v3
2828
with:
2929
python-version: 3.8 #install the python needed
3030
- name: Run Python script to vet code examples # Runs a single command using the runners shell

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: Check
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
2020
- name: pre-setup
2121
run: sudo apt-get update && sudo apt-get install -y libclang-dev
2222
- uses: actions-rs/toolchain@v1

.github/workflows/super-linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout code
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v3
2424
with:
2525
# Full git history is needed to get a proper list of changed files within `super-linter`
2626
fetch-depth: 0

.github/workflows/validate-doc-metadata.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ jobs:
77
validate-doc-metadata:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v3
1111
with:
1212
persist-credentials: false
1313
fetch-depth: 0
1414
- name: Set up Python 3.9.x
15-
uses: actions/setup-python@v2
15+
uses: actions/setup-python@v3
1616
with:
1717
python-version: "3.9.x"
1818
- name: Install dependencies

0 commit comments

Comments
 (0)