Skip to content

Commit 38c58d0

Browse files
committed
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]> [Cherry-picked b9182f0][modified]
1 parent 1dc6c7c commit 38c58d0

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

‎.github/workflows/build-chocolatey.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
build:
2828
runs-on: windows-latest
2929
steps:
30-
- uses: actions/checkout@v5
30+
- uses: actions/checkout@v6
3131
- name: Replace the version placeholder
3232
uses: richardrigutins/replace-in-files@v2
3333
with:

‎.github/workflows/build-sdk.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
universal-digest : ${{steps.universal-digest.outputs.digest }}
3535

3636
steps:
37-
- uses: actions/checkout@v5
37+
- uses: actions/checkout@v6
3838
- uses: actions/setup-java@v5
3939
with:
4040
distribution: temurin

‎.github/workflows/ci.yaml‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ jobs:
224224
git -c "http.https://github.com/.extraheader=" fetch --recurse-submodules=no "https://github.com/scala/scala3" && git reset --hard FETCH_HEAD || true
225225
226226
- name: Git Checkout
227-
uses: actions/checkout@v5
227+
uses: actions/checkout@v6
228228

229229
- name: Test
230230
run: sbt "dist/pack ;scala3-bootstrapped/compile ;scala3-bootstrapped/test"
@@ -690,13 +690,13 @@ jobs:
690690
git -c "http.https://github.com/.extraheader=" fetch --recurse-submodules=no "https://github.com/scala/scala3" && git reset --hard FETCH_HEAD || true
691691
692692
- name: Checkout cleanup script
693-
uses: actions/checkout@v5
693+
uses: actions/checkout@v6
694694

695695
- name: Cleanup
696696
run: .github/workflows/cleanup.sh
697697

698698
- name: Git Checkout
699-
uses: actions/checkout@v5
699+
uses: actions/checkout@v6
700700

701701
- name: Add SBT proxy repositories
702702
run: cp -vf .github/workflows/repositories /root/.sbt/ ; true

‎.github/workflows/dependency-graph.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ jobs:
88
name: Update Dependency Graph
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v5
11+
- uses: actions/checkout@v6
1212
- uses: sbt/setup-sbt@v1
1313
- uses: scalacenter/sbt-dependency-submission@v3

‎.github/workflows/language-reference.yaml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
2525

2626
- name: Git Checkout
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828
with:
2929
path: 'dotty'
3030
fetch-depth: 0
@@ -47,7 +47,7 @@ jobs:
4747
4848
- name: Push changes to scala3-reference-docs
4949
if: github.event_name == 'push'
50-
uses: actions/checkout@v5
50+
uses: actions/checkout@v6
5151
with:
5252
repository: lampepfl/scala3-reference-docs
5353
fetch-depth: 0

‎.github/workflows/scaladoc.yaml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
steps:
2929
- name: Git Checkout
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131

3232
- name: Set up JDK 17
3333
uses: actions/setup-java@v5
@@ -76,7 +76,7 @@ jobs:
7676

7777
steps:
7878
- name: Git Checkout
79-
uses: actions/checkout@v5
79+
uses: actions/checkout@v6
8080

8181
- name: Set up JDK 17
8282
uses: actions/setup-java@v5

0 commit comments

Comments
(0)