Skip to content

Commit 8509fbf

Browse files
ci(deps): 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 4046155 commit 8509fbf

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

.github/workflows/codeql.yml

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

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v5
4242

4343
- name: Initialize CodeQL
4444
uses: github/codeql-action/init@v3

.github/workflows/lint-yaml.yml

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

2525
steps:
2626
- name: Checkout code
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828

2929
- name: Run Prettier on YAML files
3030
run: |

.github/workflows/ort-sweeper.yml

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

1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919

2020
- name: Fetch relevant branches
2121
id: get-branches

.github/workflows/ort.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
fi
4545
4646
- name: Checkout target branch
47-
uses: actions/checkout@v4
47+
uses: actions/checkout@v5
4848
with:
4949
ref: ${{ env.TARGET_BRANCH }}
5050
repository: ${{ github.event.pull_request.head.repo.full_name }}
@@ -74,7 +74,7 @@ jobs:
7474

7575
- name: Checkout ORT Repository
7676
if: steps.cache-ort.outputs.cache-hit != 'true'
77-
uses: actions/checkout@v4
77+
uses: actions/checkout@v5
7878
with:
7979
repository: "oss-review-toolkit/ort"
8080
path: "./ort"

.github/workflows/php.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
host-matrix-output: ${{ steps.get-matrices.outputs.host-matrix-output }}
8686
version-matrix-output: ${{ steps.get-matrices.outputs.version-matrix-output }}
8787
steps:
88-
- uses: actions/checkout@v4
88+
- uses: actions/checkout@v5
8989
with:
9090
submodules: recursive
9191
- id: get-matrices
@@ -108,7 +108,7 @@ jobs:
108108
runs-on: ${{ matrix.host.RUNNER }}
109109

110110
steps:
111-
- uses: actions/checkout@v4
111+
- uses: actions/checkout@v5
112112
with:
113113
submodules: recursive
114114

@@ -269,7 +269,7 @@ jobs:
269269
engine: ${{ fromJson(needs.get-matrices.outputs.engine-matrix-output) }}
270270

271271
steps:
272-
- uses: actions/checkout@v4
272+
- uses: actions/checkout@v5
273273
with:
274274
submodules: recursive
275275

@@ -448,7 +448,7 @@ jobs:
448448
engine: ${{ fromJson(needs.get-matrices.outputs.engine-matrix-output) }}
449449

450450
steps:
451-
- uses: actions/checkout@v4
451+
- uses: actions/checkout@v5
452452
with:
453453
submodules: recursive
454454

@@ -698,7 +698,7 @@ jobs:
698698
timeout-minutes: 15
699699
runs-on: ubuntu-latest
700700
steps:
701-
- uses: actions/checkout@v4
701+
- uses: actions/checkout@v5
702702
with:
703703
submodules: recursive
704704

@@ -782,7 +782,7 @@ jobs:
782782
version-matrix-output: ${{ steps.get-matrices.outputs.version-matrix-output }}
783783

784784
steps:
785-
- uses: actions/checkout@v4
785+
- uses: actions/checkout@v5
786786
with:
787787
submodules: recursive
788788
- id: get-matrices
@@ -813,7 +813,7 @@ jobs:
813813
git config --global --add safe.directory "$GITHUB_WORKSPACE"
814814
echo IMAGE=amazonlinux:latest | sed -r 's/:/-/g' >> $GITHUB_ENV
815815
# Replace `:` in the variable otherwise it can't be used in `upload-artifact`
816-
- uses: actions/checkout@v4
816+
- uses: actions/checkout@v5
817817
with:
818818
submodules: recursive
819819

@@ -942,7 +942,7 @@ jobs:
942942
- name: Setup self-hosted runner access
943943
run: sudo chown -R $USER:$USER /home/ubuntu/actions-runner/_work/valkey-glide
944944

945-
- uses: actions/checkout@v4
945+
- uses: actions/checkout@v5
946946

947947
- uses: actions/cache@v4
948948
with:

.github/workflows/semgrep.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ jobs:
3737

3838
steps:
3939
# Fetch project source with GitHub Actions Checkout.
40-
- uses: actions/checkout@v4
40+
- uses: actions/checkout@v5
4141
# Run the "semgrep ci" command on the command line of the docker image.
4242
- run: semgrep ci --config auto --no-suppress-errors --exclude-rule generic.secrets.security.detected-private-key.detected-private-key

0 commit comments

Comments
 (0)