Skip to content

Commit 1132279

Browse files
dependabot[bot]patrick-stephens
authored andcommitted
workflows: bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 4aa7591 commit 1132279

21 files changed

+67
-67
lines changed

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

Lines changed: 2 additions & 2 deletions
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@v4
20+
uses: actions/checkout@v5
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@v4
56+
uses: actions/checkout@v5
5757
with:
5858
repository: fluent/fluent-bit-docker-image
5959
ref: "1.8" # Fixed to this branch

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

Lines changed: 3 additions & 3 deletions
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@v4
63+
uses: actions/checkout@v5
6464
with:
6565
ref: ${{ inputs.ref }}
6666

@@ -98,7 +98,7 @@ jobs:
9898
runs-on: ${{ (contains(matrix.platform, 'arm') && 'ubuntu-22.04-arm') || 'ubuntu-latest' }}
9999
steps:
100100
- name: Checkout code
101-
uses: actions/checkout@v4
101+
uses: actions/checkout@v5
102102
with:
103103
ref: ${{ inputs.ref }}
104104
token: ${{ secrets.token }}
@@ -397,7 +397,7 @@ jobs:
397397
packages: write
398398
steps:
399399
- name: Checkout repository
400-
uses: actions/checkout@v4
400+
uses: actions/checkout@v5
401401
with:
402402
ref: ${{ inputs.ref }}
403403

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

Lines changed: 5 additions & 5 deletions
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@v4
63+
uses: actions/checkout@v5
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@v4
90+
uses: actions/checkout@v5
9191
with:
9292
path: action-support
9393

@@ -115,7 +115,7 @@ jobs:
115115
continue-on-error: ${{ inputs.ignore_failing_targets || false }}
116116
steps:
117117
- name: Checkout code
118-
uses: actions/checkout@v4
118+
uses: actions/checkout@v5
119119
with:
120120
ref: ${{ inputs.ref }}
121121

@@ -194,7 +194,7 @@ jobs:
194194
# Pick up latest master version
195195
- name: Checkout code for action
196196
if: inputs.environment == 'staging'
197-
uses: actions/checkout@v4
197+
uses: actions/checkout@v5
198198
with:
199199
path: action-support
200200

@@ -229,7 +229,7 @@ jobs:
229229
DEBIAN_FRONTEND: noninteractive
230230

231231
- name: Checkout code for repo metadata construction - always latest
232-
uses: actions/checkout@v4
232+
uses: actions/checkout@v5
233233

234234
- name: Import GPG key for signing
235235
id: import_gpg

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

Lines changed: 3 additions & 3 deletions
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@v4
50+
uses: actions/checkout@v5
5151
with:
5252
ref: ${{ inputs.ref }}
5353

@@ -83,7 +83,7 @@ jobs:
8383

8484
steps:
8585
- name: Checkout repository
86-
uses: actions/checkout@v4
86+
uses: actions/checkout@v5
8787
with:
8888
ref: ${{ inputs.ref }}
8989

@@ -133,7 +133,7 @@ jobs:
133133

134134
steps:
135135
- name: Checkout repository
136-
uses: actions/checkout@v4
136+
uses: actions/checkout@v5
137137
with:
138138
ref: ${{ inputs.ref }}
139139

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
armSupported: ${{ steps.armcheck.outputs.armSupported }}
5757
steps:
5858
- name: Checkout repository
59-
uses: actions/checkout@v4
59+
uses: actions/checkout@v5
6060
with:
6161
ref: ${{ inputs.ref }}
6262

@@ -102,7 +102,7 @@ jobs:
102102
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;
103103
steps:
104104
- name: Checkout repository
105-
uses: actions/checkout@v4
105+
uses: actions/checkout@v5
106106
with:
107107
ref: ${{ inputs.ref }}
108108

@@ -205,7 +205,7 @@ jobs:
205205
contents: read
206206
steps:
207207
- name: Checkout repository
208-
uses: actions/checkout@v4
208+
uses: actions/checkout@v5
209209
with:
210210
# Need latest for checksum packaging script
211211
ref: master

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

Lines changed: 2 additions & 2 deletions
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@v4
42+
- uses: actions/checkout@v5
4343
with:
4444
ref: ${{ inputs.ref }}
4545

@@ -105,7 +105,7 @@ jobs:
105105
packages: read
106106
steps:
107107
- name: Checkout repository
108-
uses: actions/checkout@v4
108+
uses: actions/checkout@v5
109109
with:
110110
ref: ${{ inputs.ref }}
111111

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

Lines changed: 3 additions & 3 deletions
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@v4
49+
- uses: actions/checkout@v5
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@v4
178+
- uses: actions/checkout@v5
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@v4
237+
- uses: actions/checkout@v5
238238
with:
239239
ref: ${{ inputs.ref }}
240240
repository: fluent/fluent-bit-ci

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

Lines changed: 2 additions & 2 deletions
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@v4
134+
uses: actions/checkout@v5
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@v4
180+
uses: actions/checkout@v5
181181
with:
182182
ref: ${{ inputs.ref }}
183183

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

Lines changed: 1 addition & 1 deletion
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@v4
40+
uses: actions/checkout@v5
4141

4242
- name: Get the version
4343
id: get_version

.github/workflows/call-windows-unit-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
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;
5252
steps:
5353
- name: Checkout repository
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v5
5555
with:
5656
ref: ${{ inputs.ref }}
5757

0 commit comments

Comments
 (0)