Skip to content

Commit 1bd902b

Browse files
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 b13d617 commit 1bd902b

12 files changed

+59
-59
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@v4
30+
- uses: actions/checkout@v5
3131
- name: Replace the version placeholder
3232
uses: richardrigutins/replace-in-files@v2
3333
with:

.github/workflows/build-msi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
build:
2222
runs-on: windows-latest
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
- uses: actions/setup-java@v4
2626
with:
2727
distribution: 'adopt'

.github/workflows/build-sdk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
env:
5656
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
5757
steps:
58-
- uses: actions/checkout@v4
58+
- uses: actions/checkout@v5
5959
- uses: actions/setup-java@v4
6060
with:
6161
distribution: temurin

.github/workflows/ci.yaml

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,13 @@ jobs:
8484
git -c "http.https://github.com/.extraheader=" fetch --recurse-submodules=no "https://github.com/scala/scala3" && git reset --hard FETCH_HEAD || true
8585
8686
- name: Checkout cleanup script
87-
uses: actions/checkout@v4
87+
uses: actions/checkout@v5
8888

8989
- name: Cleanup
9090
run: .github/workflows/cleanup.sh
9191

9292
- name: Git Checkout
93-
uses: actions/checkout@v4
93+
uses: actions/checkout@v5
9494

9595
- name: Add SBT proxy repositories
9696
run: cp -vf .github/workflows/repositories /root/.sbt/ ; true
@@ -137,13 +137,13 @@ jobs:
137137
git -c "http.https://github.com/.extraheader=" fetch --recurse-submodules=no "https://github.com/scala/scala3" && git reset --hard FETCH_HEAD || true
138138
139139
- name: Checkout cleanup script
140-
uses: actions/checkout@v4
140+
uses: actions/checkout@v5
141141

142142
- name: Cleanup
143143
run: .github/workflows/cleanup.sh
144144

145145
- name: Git Checkout
146-
uses: actions/checkout@v4
146+
uses: actions/checkout@v5
147147

148148
- name: Add SBT proxy repositories
149149
run: cp -vf .github/workflows/repositories /root/.sbt/ ; true
@@ -194,13 +194,13 @@ jobs:
194194
git -c "http.https://github.com/.extraheader=" fetch --recurse-submodules=no "https://github.com/scala/scala3" && git reset --hard FETCH_HEAD || true
195195
196196
- name: Checkout cleanup script
197-
uses: actions/checkout@v4
197+
uses: actions/checkout@v5
198198

199199
- name: Cleanup
200200
run: .github/workflows/cleanup.sh
201201

202202
- name: Git Checkout
203-
uses: actions/checkout@v4
203+
uses: actions/checkout@v5
204204

205205
- name: Add SBT proxy repositories
206206
run: cp -vf .github/workflows/repositories /root/.sbt/ ; true
@@ -233,7 +233,7 @@ jobs:
233233
git -c "http.https://github.com/.extraheader=" fetch --recurse-submodules=no "https://github.com/scala/scala3" && git reset --hard FETCH_HEAD || true
234234
235235
- name: Git Checkout
236-
uses: actions/checkout@v4
236+
uses: actions/checkout@v5
237237

238238
- name: Test
239239
run: sbt ";scala3-bootstrapped/compile; scala3-bootstrapped/testCompilation; scala3-presentation-compiler/test; scala3-language-server/test"
@@ -277,7 +277,7 @@ jobs:
277277
git -c "http.https://github.com/.extraheader=" fetch --recurse-submodules=no "https://github.com/scala/scala3" && git reset --hard FETCH_HEAD || true
278278
279279
- name: Git Checkout
280-
uses: actions/checkout@v4
280+
uses: actions/checkout@v5
281281

282282
- name: build binary
283283
run: sbt "dist-win-x86_64/Universal/stage"
@@ -323,13 +323,13 @@ jobs:
323323
git -c "http.https://github.com/.extraheader=" fetch --recurse-submodules=no "https://github.com/scala/scala3" && git reset --hard FETCH_HEAD || true
324324
325325
- name: Checkout cleanup script
326-
uses: actions/checkout@v4
326+
uses: actions/checkout@v5
327327

328328
- name: Cleanup
329329
run: .github/workflows/cleanup.sh
330330

331331
- name: Git Checkout
332-
uses: actions/checkout@v4
332+
uses: actions/checkout@v5
333333

334334
- name: Add SBT proxy repositories
335335
run: cp -vf .github/workflows/repositories /root/.sbt/ ; true
@@ -378,13 +378,13 @@ jobs:
378378
git -c "http.https://github.com/.extraheader=" fetch --recurse-submodules=no "https://github.com/scala/scala3" && git reset --hard FETCH_HEAD || true
379379
380380
- name: Checkout cleanup script
381-
uses: actions/checkout@v4
381+
uses: actions/checkout@v5
382382

383383
- name: Cleanup
384384
run: .github/workflows/cleanup.sh
385385

386386
- name: Git Checkout
387-
uses: actions/checkout@v4
387+
uses: actions/checkout@v5
388388

389389
- name: Add SBT proxy repositories
390390
run: cp -vf .github/workflows/repositories /root/.sbt/ ; true
@@ -435,13 +435,13 @@ jobs:
435435
git -c "http.https://github.com/.extraheader=" fetch --recurse-submodules=no "https://github.com/scala/scala3" && git reset --hard FETCH_HEAD || true
436436
437437
- name: Checkout cleanup script
438-
uses: actions/checkout@v4
438+
uses: actions/checkout@v5
439439

440440
- name: Cleanup
441441
run: .github/workflows/cleanup.sh
442442

443443
- name: Git Checkout
444-
uses: actions/checkout@v4
444+
uses: actions/checkout@v5
445445

446446
- name: Add SBT proxy repositories
447447
run: cp -vf .github/workflows/repositories /root/.sbt/ ; true
@@ -492,13 +492,13 @@ jobs:
492492
git -c "http.https://github.com/.extraheader=" fetch --recurse-submodules=no "https://github.com/scala/scala3" && git reset --hard FETCH_HEAD || true
493493
494494
- name: Checkout cleanup script
495-
uses: actions/checkout@v4
495+
uses: actions/checkout@v5
496496

497497
- name: Cleanup
498498
run: .github/workflows/cleanup.sh
499499

500500
- name: Git Checkout
501-
uses: actions/checkout@v4
501+
uses: actions/checkout@v5
502502

503503
- name: Add SBT proxy repositories
504504
run: cp -vf .github/workflows/repositories /root/.sbt/ ; true
@@ -545,13 +545,13 @@ jobs:
545545
git -c "http.https://github.com/.extraheader=" fetch --recurse-submodules=no "https://github.com/scala/scala3" && git reset --hard FETCH_HEAD || true
546546
547547
- name: Checkout cleanup script
548-
uses: actions/checkout@v4
548+
uses: actions/checkout@v5
549549

550550
- name: Cleanup
551551
run: .github/workflows/cleanup.sh
552552

553553
- name: Git Checkout
554-
uses: actions/checkout@v4
554+
uses: actions/checkout@v5
555555

556556
- name: Add SBT proxy repositories
557557
run: cp -vf .github/workflows/repositories /root/.sbt/ ; true
@@ -597,13 +597,13 @@ jobs:
597597
git -c "http.https://github.com/.extraheader=" fetch --recurse-submodules=no "https://github.com/scala/scala3" && git reset --hard FETCH_HEAD || true
598598
599599
- name: Checkout cleanup script
600-
uses: actions/checkout@v4
600+
uses: actions/checkout@v5
601601

602602
- name: Cleanup
603603
run: .github/workflows/cleanup.sh
604604

605605
- name: Git Checkout
606-
uses: actions/checkout@v4
606+
uses: actions/checkout@v5
607607

608608
- name: Add SBT proxy repositories
609609
run: cp -vf .github/workflows/repositories /root/.sbt/ ; true
@@ -655,13 +655,13 @@ jobs:
655655
git -c "http.https://github.com/.extraheader=" fetch --recurse-submodules=no "https://github.com/scala/scala3" && git reset --hard FETCH_HEAD || true
656656
657657
- name: Checkout cleanup script
658-
uses: actions/checkout@v4
658+
uses: actions/checkout@v5
659659

660660
- name: Cleanup
661661
run: .github/workflows/cleanup.sh
662662

663663
- name: Git Checkout
664-
uses: actions/checkout@v4
664+
uses: actions/checkout@v5
665665
with:
666666
repository: ${{ matrix.series.repository }}
667667
ref: ${{ matrix.series.branch }}
@@ -714,13 +714,13 @@ jobs:
714714
git -c "http.https://github.com/.extraheader=" fetch --recurse-submodules=no "https://github.com/scala/scala3" && git reset --hard FETCH_HEAD || true
715715
716716
- name: Checkout cleanup script
717-
uses: actions/checkout@v4
717+
uses: actions/checkout@v5
718718

719719
- name: Cleanup
720720
run: .github/workflows/cleanup.sh
721721

722722
- name: Git Checkout
723-
uses: actions/checkout@v4
723+
uses: actions/checkout@v5
724724

725725
- name: Add SBT proxy repositories
726726
run: cp -vf .github/workflows/repositories /root/.sbt/ ; true
@@ -772,13 +772,13 @@ jobs:
772772
git -c "http.https://github.com/.extraheader=" fetch --recurse-submodules=no "https://github.com/scala/scala3" && git reset --hard FETCH_HEAD || true
773773
774774
- name: Checkout cleanup script
775-
uses: actions/checkout@v4
775+
uses: actions/checkout@v5
776776

777777
- name: Cleanup
778778
run: .github/workflows/cleanup.sh
779779

780780
- name: Git Checkout
781-
uses: actions/checkout@v4
781+
uses: actions/checkout@v5
782782

783783
- name: Add SBT proxy repositories
784784
run: cp -vf .github/workflows/repositories /root/.sbt/ ; true
@@ -875,7 +875,7 @@ jobs:
875875
if: "failure() && github.event_name == 'schedule'"
876876
steps:
877877
- name: Checkout issue template
878-
uses: actions/checkout@v4
878+
uses: actions/checkout@v5
879879

880880
- name: Open an issue
881881
uses: JasonEtco/create-an-issue@v2

.github/workflows/dependency-graph.yml

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

.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@v4
27+
uses: actions/checkout@v5
2828
with:
2929
path: 'dotty'
3030
fetch-depth: 0
@@ -49,7 +49,7 @@ jobs:
4949

5050
- name: Push changes to scala3-reference-docs
5151
if: github.event_name == 'push'
52-
uses: actions/checkout@v4
52+
uses: actions/checkout@v5
5353
with:
5454
repository: lampepfl/scala3-reference-docs
5555
fetch-depth: 0

.github/workflows/lts-backport.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0
1818
- uses: coursier/cache-action@v6

.github/workflows/scaladoc.yaml

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

2929
steps:
3030
- name: Git Checkout
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232

3333
- name: Set up JDK 17
3434
uses: actions/setup-java@v4
@@ -77,7 +77,7 @@ jobs:
7777

7878
steps:
7979
- name: Git Checkout
80-
uses: actions/checkout@v4
80+
uses: actions/checkout@v5
8181

8282
- name: Set up JDK 17
8383
uses: actions/setup-java@v4

.github/workflows/spec.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
working-directory: ./docs/_spec
2626

2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929

3030
# Keep in sync with ./docs/_spec/Dockerfile
3131
- uses: ruby/setup-ruby@v1

0 commit comments

Comments
 (0)