Skip to content

Commit 1bf0e45

Browse files
Merge pull request #54 from ahjohannessen/wip-scala3.3
build: use scala 3.3.0 lts
2 parents 1c58358 + b377eb3 commit 1bf0e45

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
strategy:
2929
matrix:
3030
os: [ubuntu-latest]
31-
scala: [3.2.2, 2.13.10]
31+
scala: [3.3.0, 2.13.10]
3232
java: [temurin@17]
3333
runs-on: ${{ matrix.os }}
3434
steps:
@@ -141,12 +141,12 @@ jobs:
141141
~/Library/Caches/Coursier/v1
142142
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
143143

144-
- name: Download target directories (3.2.2)
144+
- name: Download target directories (3.3.0)
145145
uses: actions/download-artifact@v3
146146
with:
147-
name: target-${{ matrix.os }}-${{ matrix.java }}-3.2.2
147+
name: target-${{ matrix.os }}-${{ matrix.java }}-3.3.0
148148

149-
- name: Inflate target directories (3.2.2)
149+
- name: Inflate target directories (3.3.0)
150150
run: |
151151
tar xf targets.tar
152152
rm targets.tar

.mergify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pull_request_rules:
1212
- or:
1313
- body~=labels:.*early-semver-patch
1414
- body~=labels:.*early-semver-minor
15-
- status-success=Build and Test (ubuntu-latest, 3.2.2, temurin@17)
15+
- status-success=Build and Test (ubuntu-latest, 3.3.0, temurin@17)
1616
- status-success=Build and Test (ubuntu-latest, 2.13.10, temurin@17)
1717
actions:
1818
merge: {}

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Global / onChangedBuildSource := ReloadOnSourceChanges
44
Global / lintUnusedKeysOnLoad := false
55

66
lazy val Scala2 = "2.13.10"
7-
lazy val Scala3 = "3.2.2"
7+
lazy val Scala3 = "3.3.0"
88

99
lazy val root = project
1010
.in(file("."))

0 commit comments

Comments
 (0)