Skip to content

Commit 8979d2b

Browse files
Run prePR with sbt-typelevel
Executed command: sbt tlPrePrBotHook
1 parent 4f5c698 commit 8979d2b

File tree

2 files changed

+31
-31
lines changed

2 files changed

+31
-31
lines changed

.github/workflows/ci.yml

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ jobs:
186186
run: git config --global core.autocrlf false
187187

188188
- name: Checkout current branch (full)
189-
uses: actions/checkout@v4
189+
uses: actions/checkout@v6
190190
with:
191191
fetch-depth: 0
192192

@@ -196,7 +196,7 @@ jobs:
196196
- name: Setup Java (temurin@8)
197197
id: setup-java-temurin-8
198198
if: matrix.java == 'temurin@8'
199-
uses: actions/setup-java@v4
199+
uses: actions/setup-java@v5
200200
with:
201201
distribution: temurin
202202
java-version: 8
@@ -210,7 +210,7 @@ jobs:
210210
- name: Setup Java (temurin@11)
211211
id: setup-java-temurin-11
212212
if: matrix.java == 'temurin@11'
213-
uses: actions/setup-java@v4
213+
uses: actions/setup-java@v5
214214
with:
215215
distribution: temurin
216216
java-version: 11
@@ -224,7 +224,7 @@ jobs:
224224
- name: Setup Java (temurin@17)
225225
id: setup-java-temurin-17
226226
if: matrix.java == 'temurin@17'
227-
uses: actions/setup-java@v4
227+
uses: actions/setup-java@v5
228228
with:
229229
distribution: temurin
230230
java-version: 17
@@ -238,7 +238,7 @@ jobs:
238238
- name: Setup Java (temurin@21)
239239
id: setup-java-temurin-21
240240
if: matrix.java == 'temurin@21'
241-
uses: actions/setup-java@v4
241+
uses: actions/setup-java@v5
242242
with:
243243
distribution: temurin
244244
java-version: 21
@@ -252,7 +252,7 @@ jobs:
252252
- name: Setup Java (graalvm@21)
253253
id: setup-java-graalvm-21
254254
if: matrix.java == 'graalvm@21'
255-
uses: actions/setup-java@v4
255+
uses: actions/setup-java@v5
256256
with:
257257
distribution: graalvm
258258
java-version: 21
@@ -347,7 +347,7 @@ jobs:
347347

348348
- name: Upload target directories
349349
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v'))
350-
uses: actions/upload-artifact@v4
350+
uses: actions/upload-artifact@v5
351351
with:
352352
name: target-${{ matrix.os }}-${{ matrix.java }}-${{ matrix.scala }}-${{ matrix.ci }}
353353
path: targets.tar
@@ -367,7 +367,7 @@ jobs:
367367
run: git config --global core.autocrlf false
368368

369369
- name: Checkout current branch (full)
370-
uses: actions/checkout@v4
370+
uses: actions/checkout@v6
371371
with:
372372
fetch-depth: 0
373373

@@ -377,7 +377,7 @@ jobs:
377377
- name: Setup Java (temurin@8)
378378
id: setup-java-temurin-8
379379
if: matrix.java == 'temurin@8'
380-
uses: actions/setup-java@v4
380+
uses: actions/setup-java@v5
381381
with:
382382
distribution: temurin
383383
java-version: 8
@@ -390,7 +390,7 @@ jobs:
390390
- name: Setup Java (temurin@11)
391391
id: setup-java-temurin-11
392392
if: matrix.java == 'temurin@11'
393-
uses: actions/setup-java@v4
393+
uses: actions/setup-java@v5
394394
with:
395395
distribution: temurin
396396
java-version: 11
@@ -403,7 +403,7 @@ jobs:
403403
- name: Setup Java (temurin@17)
404404
id: setup-java-temurin-17
405405
if: matrix.java == 'temurin@17'
406-
uses: actions/setup-java@v4
406+
uses: actions/setup-java@v5
407407
with:
408408
distribution: temurin
409409
java-version: 17
@@ -416,7 +416,7 @@ jobs:
416416
- name: Setup Java (temurin@21)
417417
id: setup-java-temurin-21
418418
if: matrix.java == 'temurin@21'
419-
uses: actions/setup-java@v4
419+
uses: actions/setup-java@v5
420420
with:
421421
distribution: temurin
422422
java-version: 21
@@ -429,7 +429,7 @@ jobs:
429429
- name: Setup Java (graalvm@21)
430430
id: setup-java-graalvm-21
431431
if: matrix.java == 'graalvm@21'
432-
uses: actions/setup-java@v4
432+
uses: actions/setup-java@v5
433433
with:
434434
distribution: graalvm
435435
java-version: 21
@@ -440,7 +440,7 @@ jobs:
440440
run: sbt +update
441441

442442
- name: Download target directories (3.3.5, ciJVM)
443-
uses: actions/download-artifact@v4
443+
uses: actions/download-artifact@v6
444444
with:
445445
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.5-ciJVM
446446

@@ -450,7 +450,7 @@ jobs:
450450
rm targets.tar
451451
452452
- name: Download target directories (3.3.5, ciNative)
453-
uses: actions/download-artifact@v4
453+
uses: actions/download-artifact@v6
454454
with:
455455
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.5-ciNative
456456

@@ -460,7 +460,7 @@ jobs:
460460
rm targets.tar
461461
462462
- name: Download target directories (3.3.5, ciJS)
463-
uses: actions/download-artifact@v4
463+
uses: actions/download-artifact@v6
464464
with:
465465
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.5-ciJS
466466

@@ -470,7 +470,7 @@ jobs:
470470
rm targets.tar
471471
472472
- name: Download target directories (2.12.20, ciJVM)
473-
uses: actions/download-artifact@v4
473+
uses: actions/download-artifact@v6
474474
with:
475475
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.20-ciJVM
476476

@@ -480,7 +480,7 @@ jobs:
480480
rm targets.tar
481481
482482
- name: Download target directories (2.12.20, ciNative)
483-
uses: actions/download-artifact@v4
483+
uses: actions/download-artifact@v6
484484
with:
485485
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.20-ciNative
486486

@@ -490,7 +490,7 @@ jobs:
490490
rm targets.tar
491491
492492
- name: Download target directories (2.12.20, ciJS)
493-
uses: actions/download-artifact@v4
493+
uses: actions/download-artifact@v6
494494
with:
495495
name: target-${{ matrix.os }}-${{ matrix.java }}-2.12.20-ciJS
496496

@@ -500,7 +500,7 @@ jobs:
500500
rm targets.tar
501501
502502
- name: Download target directories (2.13.16, ciJVM)
503-
uses: actions/download-artifact@v4
503+
uses: actions/download-artifact@v6
504504
with:
505505
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.16-ciJVM
506506

@@ -510,7 +510,7 @@ jobs:
510510
rm targets.tar
511511
512512
- name: Download target directories (2.13.16, ciNative)
513-
uses: actions/download-artifact@v4
513+
uses: actions/download-artifact@v6
514514
with:
515515
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.16-ciNative
516516

@@ -520,7 +520,7 @@ jobs:
520520
rm targets.tar
521521
522522
- name: Download target directories (2.13.16, ciJS)
523-
uses: actions/download-artifact@v4
523+
uses: actions/download-artifact@v6
524524
with:
525525
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.16-ciJS
526526

@@ -530,7 +530,7 @@ jobs:
530530
rm targets.tar
531531
532532
- name: Download target directories (2.13.16, ciFirefox)
533-
uses: actions/download-artifact@v4
533+
uses: actions/download-artifact@v6
534534
with:
535535
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.16-ciFirefox
536536

@@ -540,7 +540,7 @@ jobs:
540540
rm targets.tar
541541
542542
- name: Download target directories (2.13.16, ciChrome)
543-
uses: actions/download-artifact@v4
543+
uses: actions/download-artifact@v6
544544
with:
545545
name: target-${{ matrix.os }}-${{ matrix.java }}-2.13.16-ciChrome
546546

@@ -595,7 +595,7 @@ jobs:
595595
run: git config --global core.autocrlf false
596596

597597
- name: Checkout current branch (full)
598-
uses: actions/checkout@v4
598+
uses: actions/checkout@v6
599599
with:
600600
fetch-depth: 0
601601

@@ -605,7 +605,7 @@ jobs:
605605
- name: Setup Java (temurin@8)
606606
id: setup-java-temurin-8
607607
if: matrix.java == 'temurin@8'
608-
uses: actions/setup-java@v4
608+
uses: actions/setup-java@v5
609609
with:
610610
distribution: temurin
611611
java-version: 8
@@ -618,7 +618,7 @@ jobs:
618618
- name: Setup Java (temurin@11)
619619
id: setup-java-temurin-11
620620
if: matrix.java == 'temurin@11'
621-
uses: actions/setup-java@v4
621+
uses: actions/setup-java@v5
622622
with:
623623
distribution: temurin
624624
java-version: 11
@@ -631,7 +631,7 @@ jobs:
631631
- name: Setup Java (temurin@17)
632632
id: setup-java-temurin-17
633633
if: matrix.java == 'temurin@17'
634-
uses: actions/setup-java@v4
634+
uses: actions/setup-java@v5
635635
with:
636636
distribution: temurin
637637
java-version: 17
@@ -644,7 +644,7 @@ jobs:
644644
- name: Setup Java (temurin@21)
645645
id: setup-java-temurin-21
646646
if: matrix.java == 'temurin@21'
647-
uses: actions/setup-java@v4
647+
uses: actions/setup-java@v5
648648
with:
649649
distribution: temurin
650650
java-version: 21
@@ -657,7 +657,7 @@ jobs:
657657
- name: Setup Java (graalvm@21)
658658
id: setup-java-graalvm-21
659659
if: matrix.java == 'graalvm@21'
660-
uses: actions/setup-java@v4
660+
uses: actions/setup-java@v5
661661
with:
662662
distribution: graalvm
663663
java-version: 21

tests/shared/src/test/scala/cats/effect/std/NonEmptyHotswapSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020-2024 Typelevel
2+
* Copyright 2020-2025 Typelevel
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)