Skip to content

Commit

Permalink
upgrade dependencies (#3)
Browse files Browse the repository at this point in the history
* upgrade dependencies

* Update ci.yml
  • Loading branch information
pjfanning committed Mar 20, 2024
1 parent ce3b974 commit 1ce6b5e
Show file tree
Hide file tree
Showing 2 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]
scala: [3.3.1]
scala: [3.3.3]
java: [zulu@8]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [3.3.1]
scala: [3.3.3]
java: [zulu@8]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -79,12 +79,12 @@ jobs:
java-version: 8
cache: sbt

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

- name: Inflate target directories (3.3.1)
- name: Inflate target directories (3.3.3)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import sbtghactions.JavaSpec.Distribution.Zulu

organization := "com.github.swagger-akka-http"

ThisBuild / scalaVersion := "3.3.1"
ThisBuild / scalaVersion := "3.3.3"

ThisBuild / organizationHomepage := Some(url("https://github.com/swagger-akka-http/swagger-scala3-enum-module"))

Expand All @@ -17,10 +17,10 @@ Test / publishArtifact := false
pomIncludeRepository := { x => false }

libraryDependencies ++= Seq(
"io.swagger.core.v3" % "swagger-core-jakarta" % "2.2.20",
"io.swagger.core.v3" % "swagger-core-jakarta" % "2.2.21",
"com.github.swagger-akka-http" %% "swagger-scala-module" % "2.12.3",
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.16.1",
"org.scalatest" %% "scalatest" % "3.2.17" % Test,
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.16.2",
"org.scalatest" %% "scalatest" % "3.2.18" % Test,
"org.slf4j" % "slf4j-simple" % "2.0.12" % Test
)

Expand Down

0 comments on commit 1ce6b5e

Please sign in to comment.