Skip to content

Commit 98df298

Browse files
authored
Upgrade checkout action to use Node 20 (#17417)
1 parent ddeb02f commit 98df298

12 files changed

+18
-18
lines changed

.github/workflows/build-ddev.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434

3535
steps:
3636
- name: Checkout code
37-
uses: actions/checkout@v3
37+
uses: actions/checkout@v4
3838
with:
3939
fetch-depth: 0
4040

@@ -96,7 +96,7 @@ jobs:
9696

9797
steps:
9898
- name: Checkout code
99-
uses: actions/checkout@v3
99+
uses: actions/checkout@v4
100100
with:
101101
fetch-depth: 0
102102

@@ -262,7 +262,7 @@ jobs:
262262

263263
steps:
264264
- name: Checkout code
265-
uses: actions/checkout@v3
265+
uses: actions/checkout@v4
266266

267267
- name: Set up Python ${{ env.PYTHON_VERSION }}
268268
uses: actions/setup-python@v4
@@ -365,7 +365,7 @@ jobs:
365365

366366
steps:
367367
- name: Checkout code
368-
uses: actions/checkout@v3
368+
uses: actions/checkout@v4
369369

370370
- name: Set up Python ${{ env.PYTHON_VERSION }}
371371
uses: actions/setup-python@v4

.github/workflows/cache-shared-deps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
PYTHON_VERSION: "3.11"
2020

2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323

2424
- name: Set up Python ${{ env.PYTHON_VERSION }}
2525
uses: actions/setup-python@v4
@@ -48,7 +48,7 @@ jobs:
4848
pip install ./ddev
4949
pip install ./datadog_checks_dev[cli]
5050
pip install ./datadog_checks_base[deps]
51-
51+
5252
- name: Set up Python 2.7
5353
if: steps.cache.outputs.cache-hit != 'true'
5454
run: |

.github/workflows/compute-matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
data: "${{ steps.compute.outputs.data }}"
2727

2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v4
3030
with:
3131
ref: "${{ github.event.pull_request.head.sha }}"
3232

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525

2626
steps:
27-
- uses: actions/checkout@v2
27+
- uses: actions/checkout@v4
2828
with:
2929
# Fetch all history for applying timestamps to every page
3030
fetch-depth: 0

.github/workflows/pr-quick-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
# Uncomment for testing purposes
25-
# - uses: actions/checkout@v3
25+
# - uses: actions/checkout@v4
2626
# if: inputs.repo == 'core'
2727
# with:
2828
# ref: "${{ github.event.pull_request.head.sha }}"
@@ -75,4 +75,4 @@ jobs:
7575
github-token: ${{ secrets.GITHUB_TOKEN }}
7676
script: |
7777
const { issue: { number: issue_number }, repo: { owner, repo } } = context;
78-
github.issues.createComment({ issue_number, owner, repo, body: "The changelog type `changed` or `removed` was used in this Pull Request, so the next release will bump major version. Please make sure this is a breaking change, or use the `fixed` or `added` type instead." });
78+
github.issues.createComment({ issue_number, owner, repo, body: "The changelog type `changed` or `removed` was used in this Pull Request, so the next release will bump major version. Please make sure this is a breaking change, or use the `fixed` or `added` type instead." });

.github/workflows/release-base.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414

1515
- name: Set up Python
1616
uses: actions/setup-python@v2

.github/workflows/release-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414

1515
- name: Set up Python
1616
uses: actions/setup-python@v2

.github/workflows/release-hash-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
with:
1717
fetch-depth: 0
1818

@@ -39,4 +39,4 @@ jobs:
3939
git config user.email "<>"
4040
git merge --no-commit --no-edit origin/$HEAD_BRANCH
4141
42-
- run: python .github/workflows/release-hash-check.py ${{ steps.files.outputs.all }}
42+
- run: python .github/workflows/release-hash-check.py ${{ steps.files.outputs.all }}

.github/workflows/run-validations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
TARGET: ${{ github.event_name == 'pull_request' && 'changed' || '' }}
118118

119119
steps:
120-
- uses: actions/checkout@v3
120+
- uses: actions/checkout@v4
121121
with:
122122
fetch-depth: "0"
123123

.github/workflows/submit-traces.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
DD_LOG_LEVEL: "trace"
3030

3131
steps:
32-
- uses: actions/checkout@v3
32+
- uses: actions/checkout@v4
3333

3434
- uses: actions/download-artifact@v3
3535
id: download

.github/workflows/test-results-master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
BADGE_PATH: test-results.svg
1818

1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
with:
2222
ref: "${{ env.BADGES_BRANCH }}"
2323

.github/workflows/test-target.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
# Enable disk performance counters
114114
diskperf -y
115115
116-
- uses: actions/checkout@v3
116+
- uses: actions/checkout@v4
117117

118118
- name: Set up Python 2.7
119119
if: inputs.test-py2

0 commit comments

Comments
 (0)