Skip to content

Commit 6bbcc7c

Browse files
dependabot[bot]vatsrahul1001
authored andcommitted
chore(deps): bump actions/checkout from 4.2.2 to 6.0.2 (#63096)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.2 to 6.0.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@11bd719...de0fac2) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 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 9e40214 commit 6bbcc7c

23 files changed

+57
-57
lines changed

.github/workflows/additional-ci-image-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
shell: bash
136136
run: docker run -v "${GITHUB_WORKSPACE}:/workspace" -u 0:0 bash -c "rm -rf /workspace/*"
137137
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
138-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
138+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
139139
with:
140140
persist-credentials: false
141141
- name: "Install Breeze"

.github/workflows/additional-prod-image-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
shell: bash
108108
run: docker run -v "${GITHUB_WORKSPACE}:/workspace" -u 0:0 bash -c "rm -rf /workspace/*"
109109
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
110-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
110+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
111111
with:
112112
fetch-depth: 2
113113
persist-credentials: false
@@ -145,7 +145,7 @@ jobs:
145145
shell: bash
146146
run: docker run -v "${GITHUB_WORKSPACE}:/workspace" -u 0:0 bash -c "rm -rf /workspace/*"
147147
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
148-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
148+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
149149
with:
150150
fetch-depth: 2
151151
persist-credentials: false
@@ -176,7 +176,7 @@ jobs:
176176
shell: bash
177177
run: docker run -v "${GITHUB_WORKSPACE}:/workspace" -u 0:0 bash -c "rm -rf /workspace/*"
178178
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
179-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
179+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
180180
with:
181181
fetch-depth: 2
182182
persist-credentials: false
@@ -207,7 +207,7 @@ jobs:
207207
shell: bash
208208
run: docker run -v "${GITHUB_WORKSPACE}:/workspace" -u 0:0 bash -c "rm -rf /workspace/*"
209209
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
210-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
210+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
211211
with:
212212
fetch-depth: 2
213213
persist-credentials: false

.github/workflows/airflow-distributions-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
shell: bash
9090
run: docker run -v "${GITHUB_WORKSPACE}:/workspace" -u 0:0 bash -c "rm -rf /workspace/*"
9191
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
92-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
92+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
9393
with:
9494
persist-credentials: false
9595
- name: "Prepare breeze & CI image: ${{ matrix.python-version }}"

.github/workflows/backport-cli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
steps:
5454
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
5555
id: checkout-for-backport
56-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
56+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5757
with:
5858
persist-credentials: true
5959
fetch-depth: 0

.github/workflows/basic-tests.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
- name: "Cleanup repo"
8484
shell: bash
8585
run: docker run -v "${GITHUB_WORKSPACE}:/workspace" -u 0:0 bash -c "rm -rf /workspace/*"
86-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
86+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
8787
with:
8888
# Need to fetch all history for selective checks tests
8989
fetch-depth: 0
@@ -102,7 +102,7 @@ jobs:
102102
- name: "Cleanup repo"
103103
shell: bash
104104
run: docker run -v "${GITHUB_WORKSPACE}:/workspace" -u 0:0 bash -c "rm -rf /workspace/*"
105-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
105+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
106106
with:
107107
fetch-depth: 0
108108
persist-credentials: false
@@ -130,7 +130,7 @@ jobs:
130130
runs-on: ${{ fromJSON(inputs.runners) }}
131131
steps:
132132
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
133-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
133+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
134134
with:
135135
fetch-depth: 1
136136
persist-credentials: false
@@ -151,7 +151,7 @@ jobs:
151151
shell: bash
152152
run: docker run -v "${GITHUB_WORKSPACE}:/workspace" -u 0:0 bash -c "rm -rf /workspace/*"
153153
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
154-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
154+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
155155
with:
156156
persist-credentials: false
157157
- name: Setup pnpm
@@ -213,7 +213,7 @@ jobs:
213213
runs-on: ${{ fromJSON(inputs.runners) }}
214214
steps:
215215
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
216-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
216+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
217217
with:
218218
persist-credentials: false
219219
- name: "Install Breeze"
@@ -234,7 +234,7 @@ jobs:
234234
shell: bash
235235
run: docker run -v "${GITHUB_WORKSPACE}:/workspace" -u 0:0 bash -c "rm -rf /workspace/*"
236236
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
237-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
237+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
238238
with:
239239
persist-credentials: false
240240
- name: "Install Breeze"
@@ -248,7 +248,7 @@ jobs:
248248
platform: ${{ inputs.platform }}
249249
save-cache: true
250250
- name: Fetch incoming commit ${{ github.sha }} with its parent
251-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
251+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
252252
with:
253253
ref: ${{ github.sha }}
254254
fetch-depth: 2
@@ -269,7 +269,7 @@ jobs:
269269
runs-on: ["windows-2025"]
270270
steps:
271271
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
272-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
272+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
273273
with:
274274
fetch-depth: 2
275275
persist-credentials: false
@@ -286,7 +286,7 @@ jobs:
286286
shell: bash
287287
run: docker run -v "${GITHUB_WORKSPACE}:/workspace" -u 0:0 bash -c "rm -rf /workspace/*"
288288
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
289-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
289+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
290290
with:
291291
persist-credentials: false
292292
- name: "Install Breeze"
@@ -371,7 +371,7 @@ jobs:
371371
shell: bash
372372
run: docker run -v "${GITHUB_WORKSPACE}:/workspace" -u 0:0 bash -c "rm -rf /workspace/*"
373373
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
374-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
374+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
375375
with:
376376
persist-credentials: false
377377
- name: "Install Breeze"
@@ -418,7 +418,7 @@ jobs:
418418
FORCE_COLOR: 1
419419
steps:
420420
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
421-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
421+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
422422
with:
423423
persist-credentials: false
424424
- name: "Install uv"

.github/workflows/ci-amd-arm.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -137,11 +137,11 @@ jobs:
137137
shell: bash
138138
run: docker run -v "${GITHUB_WORKSPACE}:/workspace" -u 0:0 bash -c "rm -rf /workspace/*"
139139
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
140-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
140+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
141141
with:
142142
persist-credentials: false
143143
- name: Fetch incoming commit ${{ github.sha }} with its parent
144-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
144+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
145145
with:
146146
ref: ${{ github.sha }}
147147
fetch-depth: 2
@@ -192,7 +192,7 @@ jobs:
192192
if: needs.build-info.outputs.platform == 'linux/amd64'
193193
steps:
194194
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
195-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
195+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
196196
with:
197197
persist-credentials: false
198198
- name: "Install prek"
@@ -831,7 +831,7 @@ jobs:
831831
VERBOSE: "true"
832832
steps:
833833
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
834-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
834+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
835835
with:
836836
persist-credentials: false
837837
# keep this in sync with go.mod in go-sdk/
@@ -972,7 +972,7 @@ jobs:
972972
shell: bash
973973
run: docker run -v "${GITHUB_WORKSPACE}:/workspace" -u 0:0 bash -c "rm -rf /workspace/*"
974974
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
975-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
975+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
976976
with:
977977
persist-credentials: false
978978
- name: "Free up disk space"

.github/workflows/ci-image-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118
shell: bash
119119
run: docker run -v "${GITHUB_WORKSPACE}:/workspace" -u 0:0 bash -c "rm -rf /workspace/*"
120120
- name: "Checkout target branch"
121-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
121+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
122122
with:
123123
persist-credentials: false
124124
- name: "Free up disk space"

.github/workflows/ci-image-checks.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
shell: bash
137137
run: docker run -v "${GITHUB_WORKSPACE}:/workspace" -u 0:0 bash -c "rm -rf /workspace/*"
138138
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
139-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
139+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
140140
with:
141141
persist-credentials: false
142142
- name: "Prepare breeze & CI image: ${{ inputs.default-python-version }}"
@@ -184,7 +184,7 @@ jobs:
184184
shell: bash
185185
run: docker run -v "${GITHUB_WORKSPACE}:/workspace" -u 0:0 bash -c "rm -rf /workspace/*"
186186
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
187-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
187+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
188188
with:
189189
persist-credentials: false
190190
- name: "Free up disk space"
@@ -238,7 +238,7 @@ jobs:
238238
shell: bash
239239
run: docker run -v "${GITHUB_WORKSPACE}:/workspace" -u 0:0 bash -c "rm -rf /workspace/*"
240240
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
241-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
241+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
242242
with:
243243
persist-credentials: false
244244
- name: "Prepare breeze & CI image: ${{ inputs.default-python-version }}"
@@ -301,7 +301,7 @@ jobs:
301301
shell: bash
302302
run: docker run -v "${GITHUB_WORKSPACE}:/workspace" -u 0:0 bash -c "rm -rf /workspace/*"
303303
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
304-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
304+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
305305
with:
306306
persist-credentials: false
307307
- name: "Prepare breeze & CI image: ${{ inputs.default-python-version }}"
@@ -393,12 +393,12 @@ jobs:
393393
shell: bash
394394
run: docker run -v "${GITHUB_WORKSPACE}:/workspace" -u 0:0 bash -c "rm -rf /workspace/*"
395395
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
396-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
396+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
397397
with:
398398
fetch-depth: 2
399399
persist-credentials: false
400400
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
401-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
401+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
402402
with:
403403
repository: "apache/airflow-client-python"
404404
fetch-depth: 1

.github/workflows/ci-notification.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: ubuntu-latest
4242
steps:
4343
- name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
44-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
44+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4545
with:
4646
persist-credentials: false
4747

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
security-events: write
4848
steps:
4949
- name: Checkout repository
50-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
50+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5151
with:
5252
persist-credentials: false
5353

0 commit comments

Comments
 (0)