Skip to content

Commit 12e67d9

Browse files
workflows: bump actions/checkout from 3 to 4 (#7894)
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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent c625ad7 commit 12e67d9

20 files changed

+53
-53
lines changed

.github/workflows/build-legacy-branch.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
contents: read
1818
steps:
1919
- name: Checkout code
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121
with:
2222
ref: ${{ inputs.ref }}
2323

@@ -53,7 +53,7 @@ jobs:
5353
packages: write
5454
steps:
5555
- name: Checkout the docker build repo for legacy builds
56-
uses: actions/checkout@v3
56+
uses: actions/checkout@v4
5757
with:
5858
repository: fluent/fluent-bit-docker-image
5959
ref: "1.8" # Fixed to this branch

.github/workflows/call-build-images.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
contents: read
5555
steps:
5656
- name: Checkout code
57-
uses: actions/checkout@v3
57+
uses: actions/checkout@v4
5858
with:
5959
ref: ${{ inputs.ref }}
6060

@@ -85,7 +85,7 @@ jobs:
8585
debug-digest: ${{ steps.debug_build_push.outputs.digest }}
8686
steps:
8787
- name: Checkout code for modern style builds
88-
uses: actions/checkout@v3
88+
uses: actions/checkout@v4
8989
with:
9090
ref: ${{ inputs.ref }}
9191

@@ -297,7 +297,7 @@ jobs:
297297
packages: write
298298
steps:
299299
- name: Checkout repository
300-
uses: actions/checkout@v3
300+
uses: actions/checkout@v4
301301
with:
302302
ref: ${{ inputs.ref }}
303303

.github/workflows/call-build-linux-packages.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
contents: read
6161
steps:
6262
- name: Checkout code
63-
uses: actions/checkout@v3
63+
uses: actions/checkout@v4
6464
with:
6565
ref: ${{ inputs.ref }}
6666
path: source
@@ -87,7 +87,7 @@ jobs:
8787
# Pick up latest master version
8888
- name: Checkout code for action
8989
if: inputs.environment == 'staging'
90-
uses: actions/checkout@v3
90+
uses: actions/checkout@v4
9191
with:
9292
path: action-support
9393

@@ -116,7 +116,7 @@ jobs:
116116
continue-on-error: ${{ inputs.ignore_failing_targets || false }}
117117
steps:
118118
- name: Checkout code
119-
uses: actions/checkout@v3
119+
uses: actions/checkout@v4
120120
with:
121121
ref: ${{ inputs.ref }}
122122

@@ -193,7 +193,7 @@ jobs:
193193
# Pick up latest master version
194194
- name: Checkout code for action
195195
if: inputs.environment == 'staging'
196-
uses: actions/checkout@v3
196+
uses: actions/checkout@v4
197197
with:
198198
path: action-support
199199

@@ -224,7 +224,7 @@ jobs:
224224
sudo apt-get install -y createrepo-c aptly awscli
225225
226226
- name: Checkout code for repo metadata construction - always latest
227-
uses: actions/checkout@v3
227+
uses: actions/checkout@v4
228228

229229
- name: Import GPG key for signing
230230
id: import_gpg

.github/workflows/call-build-macos.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
contents: read
4848
steps:
4949
- name: Checkout code
50-
uses: actions/checkout@v3
50+
uses: actions/checkout@v4
5151
with:
5252
ref: ${{ inputs.ref }}
5353

@@ -72,7 +72,7 @@ jobs:
7272
contents: read
7373
steps:
7474
- name: Checkout repository
75-
uses: actions/checkout@v3
75+
uses: actions/checkout@v4
7676
with:
7777
ref: ${{ inputs.ref }}
7878

@@ -110,7 +110,7 @@ jobs:
110110
contents: read
111111
steps:
112112
- name: Checkout repository
113-
uses: actions/checkout@v3
113+
uses: actions/checkout@v4
114114
with:
115115
ref: ${{ inputs.ref }}
116116

.github/workflows/call-build-windows.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
armSupported: ${{ steps.armcheck.outputs.armSupported }}
4747
steps:
4848
- name: Checkout repository
49-
uses: actions/checkout@v3
49+
uses: actions/checkout@v4
5050
with:
5151
ref: ${{ inputs.ref }}
5252

@@ -92,7 +92,7 @@ jobs:
9292
PATH: C:\ProgramData\Chocolatey\bin;c:/Program Files/Git/cmd;c:/Windows/system32;C:/Windows/System32/WindowsPowerShell/v1.0;$ENV:WIX/bin;C:/Program Files/CMake/bin;C:\vcpkg;
9393
steps:
9494
- name: Checkout repository
95-
uses: actions/checkout@v3
95+
uses: actions/checkout@v4
9696
with:
9797
ref: ${{ inputs.ref }}
9898

@@ -189,7 +189,7 @@ jobs:
189189
contents: read
190190
steps:
191191
- name: Checkout repository
192-
uses: actions/checkout@v3
192+
uses: actions/checkout@v4
193193
with:
194194
# Need latest for checksum packaging script
195195
ref: master

.github/workflows/call-integration-image-build.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
contents: read
4040
packages: write
4141
steps:
42-
- uses: actions/checkout@v3
42+
- uses: actions/checkout@v4
4343
with:
4444
ref: ${{ inputs.ref }}
4545

@@ -120,7 +120,7 @@ jobs:
120120
packages: read
121121
steps:
122122
- name: Checkout repository
123-
uses: actions/checkout@v3
123+
uses: actions/checkout@v4
124124
with:
125125
ref: ${{ inputs.ref }}
126126

.github/workflows/call-run-integration-test.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
gke-cluster-region: ${{ steps.gke-cluster-region.outputs.stdout }}
4747
gke-cluster-zone: ${{ steps.gke-cluster-zone.outputs.stdout }}
4848
steps:
49-
- uses: actions/checkout@v3
49+
- uses: actions/checkout@v4
5050
with:
5151
ref: ${{ inputs.ref }}
5252
repository: fluent/fluent-bit-ci
@@ -175,7 +175,7 @@ jobs:
175175
- name: Test image exists and cache locally
176176
run: docker pull ${{ inputs.image_name }}:${{ inputs.image_tag }}
177177

178-
- uses: actions/checkout@v3
178+
- uses: actions/checkout@v4
179179
with:
180180
ref: ${{ inputs.ref }}
181181
repository: fluent/fluent-bit-ci
@@ -234,7 +234,7 @@ jobs:
234234
env:
235235
USE_GKE_GCLOUD_AUTH_PLUGIN: true
236236
steps:
237-
- uses: actions/checkout@v3
237+
- uses: actions/checkout@v4
238238
with:
239239
ref: ${{ inputs.ref }}
240240
repository: fluent/fluent-bit-ci

.github/workflows/call-test-images.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131
arch: [ linux/amd64, linux/arm64, linux/arm/v7 ]
132132
steps:
133133
- name: Checkout repository
134-
uses: actions/checkout@v3
134+
uses: actions/checkout@v4
135135
with:
136136
ref: ${{ inputs.ref }}
137137

@@ -177,7 +177,7 @@ jobs:
177177
runs-on: ubuntu-latest
178178
steps:
179179
- name: Checkout repository
180-
uses: actions/checkout@v3
180+
uses: actions/checkout@v4
181181
with:
182182
ref: ${{ inputs.ref }}
183183

.github/workflows/call-test-packages.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
distro: [ amazonlinux2022, amazonlinux2, centos7, centos8, debian10, debian11, ubuntu1804, ubuntu2004, ubuntu2204 ]
3838
steps:
3939
- name: Checkout repository
40-
uses: actions/checkout@v3
40+
uses: actions/checkout@v4
4141

4242
- name: Get the version
4343
id: get_version

.github/workflows/cron-scorecards-analysis.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
id-token: write
2525
steps:
2626
- name: "Checkout code"
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828
with:
2929
persist-credentials: false
3030

.github/workflows/cron-unstable-build.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
contents: read
9595
steps:
9696
- name: Checkout repository, always latest for action
97-
uses: actions/checkout@v3
97+
uses: actions/checkout@v4
9898

9999
# Set up the list of target to build so we can pass the JSON to the reusable job
100100
- uses: ./.github/actions/generate-package-build-matrix
@@ -156,7 +156,7 @@ jobs:
156156
steps:
157157
# Required to make a release later
158158
- name: Checkout repository
159-
uses: actions/checkout@v3
159+
uses: actions/checkout@v4
160160

161161
- name: Download all artefacts
162162
continue-on-error: true

.github/workflows/pr-compile-check.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
timeout-minutes: 30
1717
steps:
1818
- name: Checkout Fluent Bit code
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020

2121
- name: Set up Docker Buildx
2222
uses: docker/setup-buildx-action@v2

.github/workflows/pr-image-tests.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
# We do not push and this allows simpler workflow running for forks too
2222
steps:
2323
- name: Checkout code
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525

2626
- name: Set up Docker Buildx
2727
uses: docker/setup-buildx-action@v2
@@ -72,7 +72,7 @@ jobs:
7272
contents: read
7373
steps:
7474
- name: Checkout code
75-
uses: actions/checkout@v3
75+
uses: actions/checkout@v4
7676

7777
- name: Build the classic test image
7878
# We only want to confirm it builds with classic mode, nothing else
@@ -96,7 +96,7 @@ jobs:
9696
contents: read
9797
steps:
9898
- name: Checkout repository
99-
uses: actions/checkout@v3
99+
uses: actions/checkout@v4
100100

101101
- name: Extract metadata from Github
102102
id: meta

.github/workflows/pr-install-script.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
timeout-minutes: 30
2020
steps:
2121
- name: Checkout Fluent Bit code
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323

2424
- name: Run install tests
2525
run: |

.github/workflows/pr-lint.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
name: PR - Hadolint
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212
# Ignores do not work: https://github.com/reviewdog/action-hadolint/issues/35 is resolved
1313
- uses: reviewdog/action-hadolint@v1
1414
with:
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
name: PR - Shellcheck
2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- uses: ludeeus/action-shellcheck@master
2424
with:
2525
ignore_paths: cmake/sanitizers-cmake lib plugins tests
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
name: PR - Actionlint
3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232
- run: |
3333
echo "::add-matcher::.github/actionlint-matcher.json"
3434
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)

.github/workflows/pr-package-tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
contents: read
4646
steps:
4747
- name: Checkout repository, always latest for action
48-
uses: actions/checkout@v3
48+
uses: actions/checkout@v4
4949

5050
# Set up the list of target to build so we can pass the JSON to the reusable job
5151
- uses: ./.github/actions/generate-package-build-matrix

.github/workflows/staging-build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
build-matrix: ${{ steps.set-matrix.outputs.build-matrix }}
124124
steps:
125125
- name: Checkout repository
126-
uses: actions/checkout@v3
126+
uses: actions/checkout@v4
127127
# Set up the list of target to build so we can pass the JSON to the reusable job
128128
- uses: ./.github/actions/generate-package-build-matrix
129129
id: set-matrix

0 commit comments

Comments
 (0)