Skip to content

Commit b74c496

Browse files
⬆ Bump actions/checkout from 5 to 6 (#116)
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' 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 a8a39a8 commit b74c496

24 files changed

+28
-28
lines changed

β€Ž.github/workflows/ci-cd.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
RELEASE_TYPE: ${{ needs.build_git-tag_and_create_github-release.outputs.github-action_reusable_workflow_release_version }}
3434
DEBUG_MODE: false
3535
steps:
36-
- uses: actions/checkout@v5
36+
- uses: actions/checkout@v6
3737

3838
- name: Check it whether get the output of previous one job which has version info or not
3939
run: bash scripts/ci/check_getting_output.sh

β€Ž.github/workflows/rw_build_git-tag_and_create_github-release.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
matrix_github_action_reusable_workflow: ${{ steps.github_action_reusable_workflow_release.outputs.release_version }}
7373
steps:
7474
- name: Checkout
75-
uses: actions/checkout@v5
75+
uses: actions/checkout@v6
7676

7777
- name: Download shell script for checking input parameters
7878
run: |

β€Ž.github/workflows/rw_build_git-tag_and_create_github-release_v2.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
steps:
4444
- name: Checkout repository
45-
uses: actions/checkout@v5
45+
uses: actions/checkout@v6
4646
with:
4747
fetch-depth: 0
4848
# Use specific SHA if provided (for post-version-bump code), otherwise use conditional ref logic

β€Ž.github/workflows/rw_checking_deployment_state.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
version_update_state: ${{ steps.checking_version_update_state.outputs.version_update_state }}
6363
steps:
6464
- name: Checkout
65-
uses: actions/checkout@v5
65+
uses: actions/checkout@v6
6666

6767
- name: Download all shell scripts for checking input parameters
6868
working-directory: ${{ inputs.working-directory }}

β€Ž.github/workflows/rw_docker_operations.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
image_ref: ${{ steps.image_meta.outputs.image_ref }}
102102
steps:
103103
- name: Checkout repository
104-
uses: actions/checkout@v5
104+
uses: actions/checkout@v6
105105
with:
106106
# Use specific SHA if provided (for post-version-bump code), otherwise use conditional ref logic
107107
ref: ${{ inputs.checkout-sha != '' && inputs.checkout-sha || (github.event_name == 'push' && github.ref_name == 'master' && github.ref_name || '') }}

β€Ž.github/workflows/rw_docusaurus_operations.yamlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
runs-on: ubuntu-latest
123123
steps:
124124
- name: Checkout repository
125-
uses: actions/checkout@v5
125+
uses: actions/checkout@v6
126126
with:
127127
fetch-depth: 0
128128
# Use specific SHA if provided (for post-version-bump code), otherwise use conditional ref logic
@@ -205,7 +205,7 @@ jobs:
205205
deploy_url: ${{ steps.preview.outputs.url }}
206206
steps:
207207
- name: Checkout repository
208-
uses: actions/checkout@v5
208+
uses: actions/checkout@v6
209209
with:
210210
fetch-depth: 0
211211
# Use specific SHA if provided (for post-version-bump code), otherwise use conditional ref logic

β€Ž.github/workflows/rw_get_tests.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
outputs:
5353
matrix: ${{ steps.set-matrix.outputs.all_test_items }}
5454
steps:
55-
- uses: actions/checkout@v5
55+
- uses: actions/checkout@v6
5656

5757
- name: Download shell script for getting path of all test modules
5858
if: ${{ inputs.use_customized_shell != true }}

β€Ž.github/workflows/rw_organize_test_cov_reports.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
runs-on: ubuntu-latest
4444
steps:
4545
- name: Checkout
46-
uses: actions/checkout@v5
46+
uses: actions/checkout@v6
4747

4848
- name: Download code coverage result file
4949
uses: actions/download-artifact@v6

β€Ž.github/workflows/rw_parse_project_config.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143

144144
steps:
145145
- name: Checkout repository
146-
uses: actions/checkout@v5
146+
uses: actions/checkout@v6
147147

148148
- name: Install yq (YAML processor)
149149
run: |

β€Ž.github/workflows/rw_parse_release_intent.yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
notes: ${{ steps.intent.outputs.notes }}
8181
steps:
8282
- name: Checkout repository
83-
uses: actions/checkout@v5
83+
uses: actions/checkout@v6
8484
with:
8585
fetch-depth: 0
8686

0 commit comments

Comments
Β (0)