Skip to content

Commit 40e261d

Browse files
authored
Merge branch 'main' into update/sbt-tpolecat-0.1.20
2 parents 9d57337 + f6c242e commit 40e261d

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ name: Continuous Integration
99

1010
on:
1111
pull_request:
12-
branches: ['*']
12+
branches: ['**']
1313
push:
14-
branches: ['*']
14+
branches: ['**']
1515
tags: [v*]
1616

1717
env:
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
os: [ubuntu-latest]
26-
scala: [2.13.6, 2.12.13, 3.0.0-RC1, 3.0.0-RC2]
26+
scala: [2.13.6, 2.12.14, 3.0.0-RC1, 3.0.0-RC2]
2727
2828
runs-on: ${{ matrix.os }}
2929
steps:
@@ -50,10 +50,10 @@ jobs:
5050
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
5151

5252
- name: Check that workflows are up to date
53-
run: sbt ++${{ matrix.scala }} githubWorkflowCheck
53+
run: sbt --client '++${{ matrix.scala }}; githubWorkflowCheck'
5454

5555
- name: Build project
56-
run: sbt ++${{ matrix.scala }} test
56+
run: sbt --client '++${{ matrix.scala }}; test'
5757

5858
- name: Compress target directories
5959
run: tar cf targets.tar target core/js/target core/jvm/target project/target
@@ -107,12 +107,12 @@ jobs:
107107
tar xf targets.tar
108108
rm targets.tar
109109
110-
- name: Download target directories (2.12.13)
110+
- name: Download target directories (2.12.14)
111111
uses: actions/download-artifact@v2
112112
with:
113-
name: target-${{ matrix.os }}-2.12.13-${{ matrix.java }}
113+
name: target-${{ matrix.os }}-2.12.14-${{ matrix.java }}
114114

115-
- name: Inflate target directories (2.12.13)
115+
- name: Inflate target directories (2.12.14)
116116
run: |
117117
tar xf targets.tar
118118
rm targets.tar
@@ -142,4 +142,4 @@ jobs:
142142
PGP_SECRET: ${{ secrets.PGP_SECRET }}
143143
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
144144
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
145-
run: sbt ++${{ matrix.scala }} ci-release
145+
run: sbt --client '++${{ matrix.scala }}; ci-release'

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import sbtcrossproject.CrossPlugin.autoImport.CrossType
44
import scala.collection.immutable
55

66
lazy val V = new {
7-
val SCALA_2_12 = "2.12.13"
7+
val SCALA_2_12 = "2.12.14"
88
val SCALA_2_13 = "2.13.6"
99
val SCALA_3_RC1 = "3.0.0-RC1"
1010
val SCALA_3_RC2 = "3.0.0-RC2"

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.5.2
1+
sbt.version=1.5.3

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.7")
22
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.1.20")
3-
addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.10.1")
3+
addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.11.0")
44
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.5.1")
55
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.0.0")

0 commit comments

Comments
 (0)