Skip to content

Commit 1515a37

Browse files
authored
Merge pull request #160 from gmixa/main
Updateing snakeyaml due to CVE-2022-38750
2 parents 00867d1 + 0689cde commit 1515a37

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
os: [ubuntu-latest, macos-latest]
26-
scala: [2.12.17]
26+
scala: [2.12.18]
2727
java: [temurin@8, graal_22.3.0@17]
2828
runs-on: ${{ matrix.os }}
2929
steps:
@@ -71,7 +71,7 @@ jobs:
7171
strategy:
7272
matrix:
7373
os: [ubuntu-latest]
74-
scala: [2.12.17]
74+
scala: [2.12.18]
7575
java: [temurin@8]
7676
runs-on: ${{ matrix.os }}
7777
steps:
@@ -98,12 +98,12 @@ jobs:
9898
github-token: ${{ secrets.GITHUB_TOKEN }}
9999
cache: sbt
100100

101-
- name: Download target directories (2.12.17)
101+
- name: Download target directories (2.12.18)
102102
uses: actions/download-artifact@v3
103103
with:
104-
name: target-${{ matrix.os }}-2.12.17-${{ matrix.java }}
104+
name: target-${{ matrix.os }}-2.12.18-${{ matrix.java }}
105105

106-
- name: Inflate target directories (2.12.17)
106+
- name: Inflate target directories (2.12.18)
107107
run: |
108108
tar xf targets.tar
109109
rm targets.tar

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
name := "sbt-github-actions"
1818

19-
lazy val scala212 = "2.12.17"
19+
lazy val scala212 = "2.12.18"
2020
ThisBuild / organization := "com.github.sbt"
2121
ThisBuild / crossScalaVersions := Seq(scala212)
2222
ThisBuild / scalaVersion := scala212
@@ -58,7 +58,7 @@ publishMavenStyle := true
5858
scalacOptions +=
5959
"-Xlint:_,-missing-interpolator"
6060

61-
libraryDependencies += "org.specs2" %% "specs2-core" % "4.12.12" % Test
61+
libraryDependencies += "org.specs2" %% "specs2-core" % "4.19.2" % Test
6262

6363
enablePlugins(SbtPlugin)
6464

libraries.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
* limitations under the License.
1515
*/
1616

17-
libraryDependencies += "org.yaml" % "snakeyaml" % "1.29"
17+
libraryDependencies += "org.yaml" % "snakeyaml" % "2.0"

project/build.properties

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

0 commit comments

Comments
 (0)