Skip to content

Commit 571d27f

Browse files
Bump actions/checkout from 4 to 5 (#32)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 9b6922f commit 571d27f

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/api-compatibility.yml

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

2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626
with:
2727
submodules: true
2828

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
security-events: write
3030
steps:
3131
- name: Checkout repository
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333
with:
3434
submodules: true
3535

.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.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
env:
3030
ATTRIBUTIONS_FILE: THIRD_PARTY_LICENSES
3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v5
3333
with:
3434
submodules: true
3535

@@ -55,7 +55,7 @@ jobs:
5555

5656
- name: Checkout ORT Repository
5757
if: steps.cache-ort.outputs.cache-hit != 'true'
58-
uses: actions/checkout@v4
58+
uses: actions/checkout@v5
5959
with:
6060
repository: oss-review-toolkit/ort
6161
path: ./ort

.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

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
host-matrix-output: ${{ steps.get-matrices.outputs.os-matrix-output }}
4545
version-matrix-output: ${{ steps.get-matrices.outputs.version-matrix-output }}
4646
steps:
47-
- uses: actions/checkout@v4
47+
- uses: actions/checkout@v5
4848
- id: get-matrices
4949
uses: ./.github/workflows/create-test-matrices
5050
with:
@@ -64,7 +64,7 @@ jobs:
6464
runs-on: ${{ matrix.host.RUNNER }}
6565

6666
steps:
67-
- uses: actions/checkout@v4
67+
- uses: actions/checkout@v5
6868
with:
6969
submodules: true
7070

@@ -129,7 +129,7 @@ jobs:
129129
version-matrix-output: ${{ steps.get-matrices.outputs.version-matrix-output }}
130130

131131
steps:
132-
- uses: actions/checkout@v4
132+
- uses: actions/checkout@v5
133133
- id: get-matrices
134134
uses: ./.github/workflows/create-test-matrices
135135
with:
@@ -158,7 +158,7 @@ jobs:
158158
yum install -y git tar findutils libicu
159159
echo IMAGE=amazonlinux:latest | sed -r 's/:/-/g' >> $GITHUB_ENV
160160
# Replace `:` in the variable otherwise it can't be used in `upload-artifact`
161-
- uses: actions/checkout@v4
161+
- uses: actions/checkout@v5
162162
with:
163163
submodules: true
164164

@@ -200,7 +200,7 @@ jobs:
200200
timeout-minutes: 10
201201
runs-on: ubuntu-latest
202202
steps:
203-
- uses: actions/checkout@v4
203+
- uses: actions/checkout@v5
204204
with:
205205
submodules: true
206206

0 commit comments

Comments
 (0)