Skip to content

Commit

Permalink
Merge pull request #160 from gmixa/main
Browse files Browse the repository at this point in the history
Updateing snakeyaml due to CVE-2022-38750
  • Loading branch information
mdedetrich authored Aug 21, 2023
2 parents 00867d1 + 0689cde commit 1515a37
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
scala: [2.12.17]
scala: [2.12.18]
java: [temurin@8, graal_22.3.0@17]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.12.17]
scala: [2.12.18]
java: [temurin@8]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -98,12 +98,12 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
cache: sbt

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

- name: Inflate target directories (2.12.17)
- name: Inflate target directories (2.12.18)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

name := "sbt-github-actions"

lazy val scala212 = "2.12.17"
lazy val scala212 = "2.12.18"
ThisBuild / organization := "com.github.sbt"
ThisBuild / crossScalaVersions := Seq(scala212)
ThisBuild / scalaVersion := scala212
Expand Down Expand Up @@ -58,7 +58,7 @@ publishMavenStyle := true
scalacOptions +=
"-Xlint:_,-missing-interpolator"

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

enablePlugins(SbtPlugin)

Expand Down
2 changes: 1 addition & 1 deletion libraries.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
* limitations under the License.
*/

libraryDependencies += "org.yaml" % "snakeyaml" % "1.29"
libraryDependencies += "org.yaml" % "snakeyaml" % "2.0"
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.9.0
sbt.version=1.9.3

0 comments on commit 1515a37

Please sign in to comment.