Skip to content

Commit af88110

Browse files
committed
add 3.7.2-RC1, fix workflow permissions
1 parent 833ba81 commit af88110

File tree

5 files changed

+19
-3
lines changed

5 files changed

+19
-3
lines changed

.github/workflows/add-version.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ jobs:
4040
4141
- id: checkout
4242
uses: actions/checkout@v4
43+
with:
44+
token: ${{ steps.app-token.outputs.token }}
4345

4446
- name: Setup Java and Scala
4547
uses: coursier/setup-action@v1
@@ -68,6 +70,7 @@ jobs:
6870
run: |
6971
gpg --list-keys
7072
echo "${{inputs.scala_version}}" >> scala-versions
73+
echo "foo" >> .github/workflows/ci.yml
7174
sbt "generateAll;++${{inputs.scala_version}} test"
7275
git add --all
7376
git commit -m "Add ${{inputs.scala_version}} support"

.github/workflows/ci.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ jobs:
5959
- 3.6.4
6060
- 3.7.0
6161
- 3.7.1
62+
- 3.7.2-RC1
6263
- 3.7.2-RC2
6364
- 3.7.2
6465
java: [temurin@8]
@@ -410,6 +411,16 @@ jobs:
410411
tar xf targets.tar
411412
rm targets.tar
412413
414+
- name: Download target directories (3.7.2-RC1)
415+
uses: actions/download-artifact@v4
416+
with:
417+
name: target-${{ matrix.os }}-${{ matrix.java }}-3.7.2-RC1
418+
419+
- name: Inflate target directories (3.7.2-RC1)
420+
run: |
421+
tar xf targets.tar
422+
rm targets.tar
423+
413424
- name: Download target directories (3.7.2-RC2)
414425
uses: actions/download-artifact@v4
415426
with:
@@ -487,5 +498,5 @@ jobs:
487498
- name: Submit Dependencies
488499
uses: scalacenter/sbt-dependency-submission@v2
489500
with:
490-
modules-ignore: root_2.12 root_2.12 root_2.12 root_2.13 root_2.13 root_2.13 root_2.13 root_2.13 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 tests_2.12 tests_2.12 tests_2.12 tests_2.13 tests_2.13 tests_2.13 tests_2.13 tests_2.13 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3
501+
modules-ignore: root_2.12 root_2.12 root_2.12 root_2.13 root_2.13 root_2.13 root_2.13 root_2.13 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 root_3 tests_2.12 tests_2.12 tests_2.12 tests_2.13 tests_2.13 tests_2.13 tests_2.13 tests_2.13 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3 tests_3
491502
configs-ignore: test scala-tool scala-doc-tool test-internal

.mergify.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ pull_request_rules:
3636
- status-success=Test (ubuntu-22.04, 3.6.4, temurin@8)
3737
- status-success=Test (ubuntu-22.04, 3.7.0, temurin@8)
3838
- status-success=Test (ubuntu-22.04, 3.7.1, temurin@8)
39+
- status-success=Test (ubuntu-22.04, 3.7.2-RC1, temurin@8)
3940
- status-success=Test (ubuntu-22.04, 3.7.2-RC2, temurin@8)
4041
- status-success=Test (ubuntu-22.04, 3.7.2, temurin@8)
4142
actions:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ In scala-cli:
3939
(note: versions before `0.3.8` were published under the `com.kubukoz` organization instead of `org.polyvariant`)
4040

4141
<!-- SCALA VERSIONS START -->
42-
The plugin is currently published for the following 28 Scala versions:
42+
The plugin is currently published for the following 29 Scala versions:
4343

4444
- 2.12.18, 2.12.19, 2.12.20
4545
- 2.13.12, 2.13.13, 2.13.14, 2.13.15, 2.13.16
4646
- 3.3.0, 3.3.1, 3.3.3, 3.3.4, 3.3.5, 3.3.6
4747
- 3.4.0, 3.4.1, 3.4.2, 3.4.3
4848
- 3.5.0, 3.5.1, 3.5.2
4949
- 3.6.2, 3.6.3, 3.6.4
50-
- 3.7.0, 3.7.1, 3.7.2-RC2, 3.7.2
50+
- 3.7.0, 3.7.1, 3.7.2-RC1, 3.7.2-RC2, 3.7.2
5151
<!-- SCALA VERSIONS END -->
5252

5353
For older Scala versions, see [previous versions of better-tostring](https://repo1.maven.org/maven2/org/polyvariant) ([or even older versions](https://repo1.maven.org/maven2/com/kubukoz)).

scala-versions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,6 @@
2424
3.6.4
2525
3.7.0
2626
3.7.1
27+
3.7.2-RC1
2728
3.7.2-RC2
2829
3.7.2

0 commit comments

Comments
 (0)