Skip to content

Commit c757d53

Browse files
Bump actions/checkout from 5.0.0 to 6.0.1 (#250)
Bumps [actions/checkout](https://github.com/actions/checkout) from 5.0.0 to 6.0.1. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@08c6903...8e8c483) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.1 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 3186bcd commit c757d53

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/csharp_test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run:
2222
working-directory: ./binding
2323
steps:
24-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
24+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2525
with:
2626
submodules: true
2727
ref: ${{ inputs.checkout-ref || github.head_ref }}
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ubuntu-latest
3737
needs: build-native-dev-library
3838
steps:
39-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
39+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4040
with:
4141
submodules: true
4242
ref: ${{ inputs.checkout-ref || github.head_ref }}
@@ -67,7 +67,7 @@ jobs:
6767
runs-on: ubuntu-latest
6868
needs: build-native-dev-library
6969
steps:
70-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
70+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
7171
with:
7272
submodules: true
7373
ref: ${{ inputs.checkout-ref || github.head_ref }}
@@ -100,7 +100,7 @@ jobs:
100100
runs-on: ubuntu-latest
101101
needs: build-native-dev-library
102102
steps:
103-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
103+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
104104
with:
105105
submodules: true
106106
ref: ${{ inputs.checkout-ref || github.head_ref }}

.github/workflows/merge-queue-trigger-handler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# if use ACT, uncomment-out the following line
2929
# with:
3030
# required-codeowners: 'false'
31-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
31+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
3232
with:
3333
fetch-depth: 0
3434
ref: ${{ fromJSON(steps.precheck.outputs.base-branch) }}

.github/workflows/submodule_tracker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
app-id: ${{ secrets.APP_ID }}
1919
private-key: ${{ secrets.APP_PRIVATE_KEY }}
20-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
20+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2121
with:
2222
token: ${{ steps.generate_token.outputs.token }}
2323
submodules: recursive

.github/workflows/tagged_release_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ jobs:
3838
steps:
3939
# is PR
4040
- if: needs.parse-tag.outputs.tag != null
41-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
41+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4242
with:
4343
ref: refs/pull/${{ github.event.issue.number }}/merge
4444
# is workflow_dispatch
4545
- if: needs.parse-tag.outputs.release-tag != null
46-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
46+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
4747
- if: ${{ github.event.issue.pull_request != null }}
4848
run: gh pr comment ${PR_NUMBER} -b "Running ${ACTION_URL}"
4949
env:

0 commit comments

Comments
 (0)