Skip to content

Commit 475c875

Browse files
chore(deps): Bump actions/checkout from 5 to 6 (#81)
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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent d255ffe commit 475c875

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- docling-version-tests
5353
name: jvm-build-test-${{ matrix.module }}-java${{ matrix.java }}
5454
steps:
55-
- uses: actions/checkout@v5
55+
- uses: actions/checkout@v6
5656

5757
- name: Reclaim disk space
5858
working-directory: .github
@@ -85,7 +85,7 @@ jobs:
8585
- 21
8686
- 25
8787
steps:
88-
- uses: actions/checkout@v5
88+
- uses: actions/checkout@v6
8989

9090
- name: Reclaim disk space
9191
working-directory: .github
@@ -120,7 +120,7 @@ jobs:
120120
name: build-docs-pr
121121
if: github.event_name == 'pull_request'
122122
steps:
123-
- uses: actions/checkout@v5
123+
- uses: actions/checkout@v6
124124

125125
- name: Reclaim disk space
126126
working-directory: .github

.github/workflows/dependency-submission.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: github.repository == 'docling-project/docling-java'
1414
steps:
1515
- name: Checkout sources
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717

1818
- name: Setup Java
1919
uses: actions/setup-java@v5

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
name: github-pages
3232
url: ${{ steps.deployment.outputs.page_url }}
3333
steps:
34-
- uses: actions/checkout@v5
34+
- uses: actions/checkout@v6
3535

3636
- name: Setup Python
3737
uses: actions/setup-python@v6

.github/workflows/gradle-wrapper-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ jobs:
77
gradle-wrapper-validation:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v5
10+
- uses: actions/checkout@v6
1111
- uses: gradle/actions/wrapper-validation@v5

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ jobs:
4949

5050
- name: Checkout before PR
5151
if: github.event_name == 'pull_request_target'
52-
uses: actions/checkout@v5
52+
uses: actions/checkout@v6
5353
with:
5454
ref: ${{ github.event.pull_request.base.sha }}
5555
path: before
5656
token: ${{ steps.app-token.outputs.token }}
5757

5858
- name: Checkout current ref
5959
if: github.event_name == 'workflow_dispatch'
60-
uses: actions/checkout@v5
60+
uses: actions/checkout@v6
6161
with:
6262
ref: ${{ github.ref }}
6363
path: before
@@ -72,7 +72,7 @@ jobs:
7272
run: echo "PREVIOUS_VERSION=${{ inputs.version }}" >> $GITHUB_ENV
7373

7474
- name: Checkout current ref
75-
uses: actions/checkout@v5
75+
uses: actions/checkout@v6
7676
with:
7777
token: ${{ steps.app-token.outputs.token }}
7878
path: after

.github/workflows/version-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
runs-on: ubuntu-latest
6060
if: github.repository == 'docling-project/docling-java'
6161
steps:
62-
- uses: actions/checkout@v5
62+
- uses: actions/checkout@v6
6363

6464
- name: Reclaim disk space
6565
working-directory: .github

0 commit comments

Comments
 (0)