Skip to content

Commit 59dfd67

Browse files
chore(ci): Bump actions/checkout from 3 to 4 (vectordotdev#18476)
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 69a1ca0 commit 59dfd67

19 files changed

+60
-60
lines changed

.github/workflows/changes.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
install: ${{ steps.filter.outputs.install }}
121121
k8s: ${{ steps.filter.outputs.k8s }}
122122
steps:
123-
- uses: actions/checkout@v3
123+
- uses: actions/checkout@v4
124124

125125
- uses: dorny/paths-filter@v2
126126
id: filter
@@ -214,7 +214,7 @@ jobs:
214214
splunk: ${{ steps.filter.outputs.splunk }}
215215
webhdfs: ${{ steps.filter.outputs.webhdfs }}
216216
steps:
217-
- uses: actions/checkout@v3
217+
- uses: actions/checkout@v4
218218

219219
# creates a yaml file that contains the filters for each integration,
220220
# extracted from the output of the `vdev int ci-paths` command, which

.github/workflows/cli.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ jobs:
2525

2626
- name: (PR comment) Checkout PR branch
2727
if: ${{ github.event_name == 'issue_comment' }}
28-
uses: actions/checkout@v3
28+
uses: actions/checkout@v4
2929
with:
3030
ref: ${{ steps.comment-branch.outputs.head_ref }}
3131

3232
- name: Checkout branch
3333
if: ${{ github.event_name != 'issue_comment' }}
34-
uses: actions/checkout@v3
34+
uses: actions/checkout@v4
3535

3636
- name: Cache Cargo registry + index
3737
uses: actions/cache@v3

.github/workflows/compilation-timings.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: [linux, ubuntu-20.04-8core]
1717
steps:
1818
- uses: colpal/actions-clean@v1
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020
- run: sudo -E bash scripts/environment/bootstrap-ubuntu-20.04.sh
2121
- run: bash scripts/environment/prepare.sh
2222
- run: cargo clean
@@ -32,7 +32,7 @@ jobs:
3232
PROFILE: debug
3333
steps:
3434
- uses: colpal/actions-clean@v1
35-
- uses: actions/checkout@v3
35+
- uses: actions/checkout@v4
3636
- run: sudo -E bash scripts/environment/bootstrap-ubuntu-20.04.sh
3737
- run: bash scripts/environment/prepare.sh
3838
- run: cargo clean
@@ -43,7 +43,7 @@ jobs:
4343
runs-on: [linux, ubuntu-20.04-8core]
4444
steps:
4545
- uses: colpal/actions-clean@v1
46-
- uses: actions/checkout@v3
46+
- uses: actions/checkout@v4
4747
- run: sudo -E bash scripts/environment/bootstrap-ubuntu-20.04.sh
4848
- run: bash scripts/environment/prepare.sh
4949
- run: cargo clean
@@ -54,7 +54,7 @@ jobs:
5454
runs-on: [linux, ubuntu-20.04-8core]
5555
steps:
5656
- uses: colpal/actions-clean@v1
57-
- uses: actions/checkout@v3
57+
- uses: actions/checkout@v4
5858
- run: sudo -E bash scripts/environment/bootstrap-ubuntu-20.04.sh
5959
- run: bash scripts/environment/prepare.sh
6060
- run: cargo clean
@@ -67,7 +67,7 @@ jobs:
6767
runs-on: [linux, ubuntu-20.04-8core]
6868
steps:
6969
- uses: colpal/actions-clean@v1
70-
- uses: actions/checkout@v3
70+
- uses: actions/checkout@v4
7171
- run: sudo -E bash scripts/environment/bootstrap-ubuntu-20.04.sh
7272
- run: bash scripts/environment/prepare.sh
7373
- run: cargo clean

.github/workflows/component_features.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ jobs:
3838

3939
- name: (PR comment) Checkout PR branch
4040
if: github.event_name == 'issue_comment'
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v4
4242
with:
4343
ref: ${{ steps.comment-branch.outputs.head_ref }}
4444

4545
- name: Checkout branch
4646
if: github.event_name != 'issue_comment'
47-
uses: actions/checkout@v3
47+
uses: actions/checkout@v4
4848

4949
- run: sudo -E bash scripts/environment/bootstrap-ubuntu-20.04.sh
5050
- run: bash scripts/environment/prepare.sh

.github/workflows/cross.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ jobs:
3636

3737
- name: (PR comment) Checkout PR branch
3838
if: ${{ github.event_name == 'issue_comment' }}
39-
uses: actions/checkout@v3
39+
uses: actions/checkout@v4
4040
with:
4141
ref: ${{ steps.comment-branch.outputs.head_ref }}
4242

4343
- name: Checkout branch
4444
if: ${{ github.event_name != 'issue_comment' }}
45-
uses: actions/checkout@v3
45+
uses: actions/checkout@v4
4646

4747
- uses: actions/cache@v3
4848
name: Cache Cargo registry + index

.github/workflows/environment.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131

3232
- name: (PR comment) Checkout PR branch
3333
if: ${{ github.event_name == 'issue_comment' }}
34-
uses: actions/checkout@v3
34+
uses: actions/checkout@v4
3535
with:
3636
ref: ${{ steps.comment-branch.outputs.head_ref }}
3737

3838
- name: Checkout branch
3939
if: ${{ github.event_name != 'issue_comment' }}
40-
uses: actions/checkout@v3
40+
uses: actions/checkout@v4
4141

4242
- name: Set up QEMU
4343
uses: docker/[email protected]

.github/workflows/gardener_remove_waiting_author.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
remove_label:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212
- uses: actions-ecosystem/action-remove-labels@v1
1313
with:
1414
labels: "meta: awaiting author"

.github/workflows/install-sh.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ jobs:
2525

2626
- name: (PR comment) Checkout PR branch
2727
if: ${{ github.event_name == 'issue_comment' }}
28-
uses: actions/checkout@v3
28+
uses: actions/checkout@v4
2929
with:
3030
ref: ${{ steps.comment-branch.outputs.head_ref }}
3131

3232
- name: Checkout branch
3333
if: ${{ github.event_name != 'issue_comment' }}
34-
uses: actions/checkout@v3
34+
uses: actions/checkout@v4
3535

3636
- run: pip3 install awscli --upgrade --user
3737
- env:

.github/workflows/integration-comment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
needs: prep-pr
8181
runs-on: [linux, ubuntu-20.04-4core]
8282
steps:
83-
- uses: actions/checkout@v3
83+
- uses: actions/checkout@v4
8484
with:
8585
submodules: "recursive"
8686

.github/workflows/integration-test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ jobs:
4141

4242
- name: (PR comment) Checkout PR branch
4343
if: ${{ github.event_name == 'issue_comment' }}
44-
uses: actions/checkout@v3
44+
uses: actions/checkout@v4
4545
with:
4646
ref: ${{ steps.comment-branch.outputs.head_ref }}
4747

4848
- name: Checkout branch
4949
if: ${{ github.event_name != 'issue_comment' }}
50-
uses: actions/checkout@v3
50+
uses: actions/checkout@v4
5151

5252
- run: sudo npm -g install @datadog/datadog-ci
5353

.github/workflows/integration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
)
8989
timeout-minutes: 75
9090
steps:
91-
- uses: actions/checkout@v3
91+
- uses: actions/checkout@v4
9292
with:
9393
submodules: "recursive"
9494

.github/workflows/k8s_e2e.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,13 @@ jobs:
7676

7777
- name: (PR comment) Checkout PR branch
7878
if: ${{ github.event_name == 'issue_comment' }}
79-
uses: actions/checkout@v3
79+
uses: actions/checkout@v4
8080
with:
8181
ref: ${{ steps.comment-branch.outputs.head_ref }}
8282

8383
- name: Checkout branch
8484
if: ${{ github.event_name != 'issue_comment' }}
85-
uses: actions/checkout@v3
85+
uses: actions/checkout@v4
8686

8787
- uses: actions/cache@v3
8888
with:
@@ -188,13 +188,13 @@ jobs:
188188

189189
- name: (PR comment) Checkout PR branch
190190
if: ${{ github.event_name == 'issue_comment' }}
191-
uses: actions/checkout@v3
191+
uses: actions/checkout@v4
192192
with:
193193
ref: ${{ steps.comment-branch.outputs.head_ref }}
194194

195195
- name: Checkout branch
196196
if: ${{ github.event_name != 'issue_comment' }}
197-
uses: actions/checkout@v3
197+
uses: actions/checkout@v4
198198

199199
- uses: actions/download-artifact@v3
200200
with:

.github/workflows/misc.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ jobs:
2525

2626
- name: (PR comment) Checkout PR branch
2727
if: ${{ github.event_name == 'issue_comment' }}
28-
uses: actions/checkout@v3
28+
uses: actions/checkout@v4
2929
with:
3030
ref: ${{ steps.comment-branch.outputs.head_ref }}
3131

3232
- name: Checkout branch
3333
if: ${{ github.event_name != 'issue_comment' }}
34-
uses: actions/checkout@v3
34+
uses: actions/checkout@v4
3535

3636
- uses: actions/cache@v3
3737
name: Cache Cargo registry + index

.github/workflows/msrv.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
check-msrv:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- run: sudo -E bash scripts/environment/bootstrap-ubuntu-20.04.sh
2020
- run: cargo install cargo-msrv --version 0.15.1
2121
- run: cargo msrv verify

.github/workflows/publish.yml

+17-17
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
vector_cloudsmith_repo: ${{ steps.generate-publish-metadata.outputs.vector_cloudsmith_repo }}
3737
steps:
3838
- name: Checkout Vector
39-
uses: actions/checkout@v3
39+
uses: actions/checkout@v4
4040
with:
4141
ref: ${{ inputs.git_ref }}
4242
- name: Generate publish metadata
@@ -53,7 +53,7 @@ jobs:
5353
CHANNEL: ${{ needs.generate-publish-metadata.outputs.vector_release_channel }}
5454
steps:
5555
- name: Checkout Vector
56-
uses: actions/checkout@v3
56+
uses: actions/checkout@v4
5757
with:
5858
ref: ${{ inputs.git_ref }}
5959
- name: Bootstrap runner environment (Ubuntu-specific)
@@ -78,7 +78,7 @@ jobs:
7878
CHANNEL: ${{ needs.generate-publish-metadata.outputs.vector_release_channel }}
7979
steps:
8080
- name: Checkout Vector
81-
uses: actions/checkout@v3
81+
uses: actions/checkout@v4
8282
with:
8383
ref: ${{ inputs.git_ref }}
8484
- name: Bootstrap runner environment (Ubuntu-specific)
@@ -103,7 +103,7 @@ jobs:
103103
CHANNEL: ${{ needs.generate-publish-metadata.outputs.vector_release_channel }}
104104
steps:
105105
- name: Checkout Vector
106-
uses: actions/checkout@v3
106+
uses: actions/checkout@v4
107107
with:
108108
ref: ${{ inputs.git_ref }}
109109
- name: Bootstrap runner environment (Ubuntu-specific)
@@ -130,7 +130,7 @@ jobs:
130130
CHANNEL: ${{ needs.generate-publish-metadata.outputs.vector_release_channel }}
131131
steps:
132132
- name: Checkout Vector
133-
uses: actions/checkout@v3
133+
uses: actions/checkout@v4
134134
with:
135135
ref: ${{ inputs.git_ref }}
136136
- name: Bootstrap runner environment (Ubuntu-specific)
@@ -157,7 +157,7 @@ jobs:
157157
CHANNEL: ${{ needs.generate-publish-metadata.outputs.vector_release_channel }}
158158
steps:
159159
- name: Checkout Vector
160-
uses: actions/checkout@v3
160+
uses: actions/checkout@v4
161161
with:
162162
ref: ${{ inputs.git_ref }}
163163
- name: Bootstrap runner environment (Ubuntu-specific)
@@ -184,7 +184,7 @@ jobs:
184184
CHANNEL: ${{ needs.generate-publish-metadata.outputs.vector_release_channel }}
185185
steps:
186186
- name: Checkout Vector
187-
uses: actions/checkout@v3
187+
uses: actions/checkout@v4
188188
with:
189189
ref: ${{ inputs.git_ref }}
190190
- name: Bootstrap runner environment (Ubuntu-specific)
@@ -211,7 +211,7 @@ jobs:
211211
CHANNEL: ${{ needs.generate-publish-metadata.outputs.vector_release_channel }}
212212
steps:
213213
- name: Checkout Vector
214-
uses: actions/checkout@v3
214+
uses: actions/checkout@v4
215215
with:
216216
ref: ${{ inputs.git_ref }}
217217
- name: Bootstrap runner environment (macOS-specific)
@@ -241,7 +241,7 @@ jobs:
241241
RELEASE_BUILDER: "true"
242242
steps:
243243
- name: Checkout Vector
244-
uses: actions/checkout@v3
244+
uses: actions/checkout@v4
245245
with:
246246
ref: ${{ inputs.git_ref }}
247247
- name: Bootstrap runner environment (Windows-specific)
@@ -309,7 +309,7 @@ jobs:
309309
- name: Fix Git safe directories issue when in containers (actions/checkout#760)
310310
run: git config --global --add safe.directory /__w/vector/vector
311311
- name: Checkout Vector
312-
uses: actions/checkout@v3
312+
uses: actions/checkout@v4
313313
with:
314314
ref: ${{ inputs.git_ref }}
315315
- name: Download staged package artifacts (x86_64-unknown-linux-gnu)
@@ -365,7 +365,7 @@ jobs:
365365
- name: Fix Git safe directories issue when in containers (actions/checkout#760)
366366
run: git config --global --add safe.directory /__w/vector/vector
367367
- name: Checkout Vector
368-
uses: actions/checkout@v3
368+
uses: actions/checkout@v4
369369
with:
370370
ref: ${{ inputs.git_ref }}
371371
- name: Download staged package artifacts (x86_64-unknown-linux-gnu)
@@ -392,7 +392,7 @@ jobs:
392392
VECTOR_VERSION: ${{ needs.generate-publish-metadata.outputs.vector_version }}
393393
steps:
394394
- name: Checkout Vector
395-
uses: actions/checkout@v3
395+
uses: actions/checkout@v4
396396
with:
397397
ref: ${{ inputs.git_ref }}
398398
- name: Download staged package artifacts (x86_64-apple-darwin)
@@ -422,7 +422,7 @@ jobs:
422422
CHANNEL: ${{ needs.generate-publish-metadata.outputs.vector_release_channel }}
423423
steps:
424424
- name: Checkout Vector
425-
uses: actions/checkout@v3
425+
uses: actions/checkout@v4
426426
with:
427427
ref: ${{ inputs.git_ref }}
428428
- name: Login to DockerHub
@@ -497,7 +497,7 @@ jobs:
497497
CHANNEL: ${{ needs.generate-publish-metadata.outputs.vector_release_channel }}
498498
steps:
499499
- name: Checkout Vector
500-
uses: actions/checkout@v3
500+
uses: actions/checkout@v4
501501
with:
502502
ref: ${{ inputs.git_ref }}
503503
- name: Download staged package artifacts (aarch64-unknown-linux-gnu)
@@ -568,7 +568,7 @@ jobs:
568568
VECTOR_VERSION: ${{ needs.generate-publish-metadata.outputs.vector_version }}
569569
steps:
570570
- name: Checkout Vector
571-
uses: actions/checkout@v3
571+
uses: actions/checkout@v4
572572
with:
573573
ref: ${{ inputs.git_ref }}
574574
- name: Download staged package artifacts (aarch64-unknown-linux-gnu)
@@ -628,7 +628,7 @@ jobs:
628628
VECTOR_VERSION: ${{ needs.generate-publish-metadata.outputs.vector_version }}
629629
steps:
630630
- name: Checkout Vector
631-
uses: actions/checkout@v3
631+
uses: actions/checkout@v4
632632
with:
633633
ref: ${{ inputs.git_ref }}
634634
- name: Publish update to Homebrew tap
@@ -653,7 +653,7 @@ jobs:
653653
CLOUDSMITH_REPO: ${{ needs.generate-publish-metadata.outputs.vector_cloudsmith_repo }}
654654
steps:
655655
- name: Checkout Vector
656-
uses: actions/checkout@v3
656+
uses: actions/checkout@v4
657657
with:
658658
ref: ${{ inputs.git_ref }}
659659
- name: Download staged package artifacts (aarch64-unknown-linux-gnu)

0 commit comments

Comments
 (0)