Skip to content

Commit b96da93

Browse files
committed
Updated cy.yml
1 parent dc53b41 commit b96da93

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
java-version: 11
4040

4141
- name: Cache sbt
42-
uses: actions/cache@v2
42+
uses: actions/cache@v4
4343
with:
4444
path: |
4545
~/.sbt
@@ -48,7 +48,7 @@ jobs:
4848
~/.cache/coursier/v1
4949
~/AppData/Local/Coursier/Cache/v1
5050
~/Library/Caches/Coursier/v1
51-
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
51+
key: ${{ runner.os }}-sbt-cache-v4-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
5252

5353
- name: Check that workflows are up to date
5454
run: sbt ++${{ matrix.scala }} githubWorkflowCheck
@@ -72,7 +72,7 @@ jobs:
7272
strategy:
7373
matrix:
7474
os: [ubuntu-latest]
75-
scala: [2.12.17]
75+
scala: [2.12.20]
7676
java: [temurin@11]
7777
runs-on: ${{ matrix.os }}
7878
steps:
@@ -89,7 +89,7 @@ jobs:
8989
java-version: 11
9090

9191
- name: Cache sbt
92-
uses: actions/cache@v2
92+
uses: actions/cache@v4
9393
with:
9494
path: |
9595
~/.sbt
@@ -98,14 +98,14 @@ jobs:
9898
~/.cache/coursier/v1
9999
~/AppData/Local/Coursier/Cache/v1
100100
~/Library/Caches/Coursier/v1
101-
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
101+
key: ${{ runner.os }}-sbt-cache-v4-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
102102

103-
- name: Download target directories (2.12.17)
104-
uses: actions/download-artifact@v2
103+
- name: Download target directories (2.12.20)
104+
uses: actions/download-artifact@v3
105105
with:
106-
name: target-${{ matrix.os }}-2.12.17-${{ matrix.java }}
106+
name: target-${{ matrix.os }}-2.12.20-${{ matrix.java }}
107107

108-
- name: Inflate target directories (2.12.17)
108+
- name: Inflate target directories (2.12.20)
109109
run: |
110110
tar xf targets.tar
111111
rm targets.tar

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/[email protected]
1616
with:
1717
fetch-depth: 0
18-
- uses: olafurpg/setup-scala@v10
18+
- uses: olafurpg/setup-scala@v11
1919
with:
2020
java-version: ${{ matrix.java }}
2121
- run: sbt ci-release

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
lazy val scala212 = "2.12.16"
2-
lazy val scala213 = "2.13.10"
1+
lazy val scala212 = "2.12.20"
2+
lazy val scala213 = "2.13.15"
33
lazy val scala3 = "3.2.2"
44

55
lazy val supportedScalaVersions = List(

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ThisBuild / version := "0.1.85"
1+
ThisBuild / version := "0.1.86"

0 commit comments

Comments
 (0)