Skip to content
This repository was archived by the owner on Oct 25, 2024. It is now read-only.

Update scala3-library to 3.1.3 #444

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.1.2]
scala: [3.1.3]
java: [[email protected]]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.1.2]
scala: [3.1.3]
java: [[email protected]]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -104,12 +104,12 @@ jobs:
~/Library/Caches/Coursier/v1
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}

- name: Download target directories (3.1.2)
- name: Download target directories (3.1.3)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-3.1.2-${{ matrix.java }}
name: target-${{ matrix.os }}-3.1.3-${{ matrix.java }}

- name: Inflate target directories (3.1.2)
- name: Inflate target directories (3.1.3)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ inThisBuild(

val GraalVM11 = "[email protected]"

val Scala3 = "3.1.2"
val Scala3 = "3.1.3"
ThisBuild / scalaVersion := Scala3
ThisBuild / crossScalaVersions := Seq(Scala3)
ThisBuild / githubWorkflowJavaVersions := Seq(GraalVM11)
Expand Down