Skip to content

Commit 2867f04

Browse files
Bump actions/checkout from 5 to 6
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]>
1 parent 0576e43 commit 2867f04

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/autofix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
autofix:
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v5
8+
- uses: actions/checkout@v6
99

1010
- uses: sbt/setup-sbt@v1
1111

.github/workflows/dependency-graph.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515

16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0
1919

.github/workflows/pre-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
timeout-minutes: ${{ inputs.timeout-minutes }}
2727
steps:
2828
# For normal PR jobs, just checkout the base_ref the PR is against
29-
- uses: actions/checkout@v5
29+
- uses: actions/checkout@v6
3030
with: { fetch-depth: 1 }
3131

3232
- uses: ./.github/actions/pre-build-setup

.github/workflows/publish-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
LC_ALL: "en_US.UTF-8"
6060
REPO_ACCESS_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
6161
steps:
62-
- uses: actions/checkout@v5
62+
- uses: actions/checkout@v6
6363
with: { fetch-depth: 0 }
6464

6565
- run: ./mill -i mill.scalalib.SonatypeCentralPublishModule/ --publishArtifacts ${{ matrix.publishartifacts }}

.github/workflows/publish-bridges.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
REPO_ACCESS_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
3030
MILL_COMPILER_BRIDGE_VERSIONS: ${{ inputs.bridge_versions }}
3131
steps:
32-
- uses: actions/checkout@v5
32+
- uses: actions/checkout@v6
3333
with: { fetch-depth: 0 }
3434

3535
- run: ./mill -i mill.scalalib.PublishModule/ --publishArtifacts bridge.__.publishArtifacts

.github/workflows/publish-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
MILL_DISABLE_SCALADOC_ANNOTATION: 1
2626

2727
steps:
28-
- uses: actions/checkout@v5
28+
- uses: actions/checkout@v6
2929
with: {fetch-depth: 0}
3030

3131
- uses: coursier/cache-action@v7

.github/workflows/run-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# runs-on: ubuntu-latest
1414
## runs-on: windows-latest
1515
# steps:
16-
# - uses: actions/checkout@v5
16+
# - uses: actions/checkout@v6
1717
# with: { fetch-depth: 1 }
1818
#
1919
# - run: "echo temurin:11 > .mill-jvm-version"
@@ -76,7 +76,7 @@ jobs:
7676
if: (github.event.action == 'ready_for_review') || (github.event.pull_request.draft == false)
7777
runs-on: ubuntu-latest
7878
steps:
79-
- uses: actions/checkout@v5
79+
- uses: actions/checkout@v6
8080
with: { fetch-depth: 1 }
8181

8282
- run: ./mill -i website.fastPages + website.checkBrokenLinks
@@ -101,7 +101,7 @@ jobs:
101101
millargs: "'example.thirdparty[{jimfs,commons-io}].native.daemon'"
102102
java-version: 24
103103
steps:
104-
- uses: actions/checkout@v5
104+
- uses: actions/checkout@v6
105105
with: { fetch-depth: 1 }
106106

107107
- uses: ./.github/actions/pre-build-setup

0 commit comments

Comments
 (0)