Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(build): more updates #55

Merged
merged 2 commits into from
May 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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: [2.12.15]
scala: [2.12.19]
java: [[email protected]+7]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.12.15]
scala: [2.12.19]
java: [[email protected]+7]
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -100,12 +100,12 @@ jobs:
~/Library/Caches/Coursier/v1
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}

- name: Download target directories (2.12.15)
- name: Download target directories (2.12.19)
uses: actions/download-artifact@v2
with:
name: target-${{ matrix.os }}-2.12.15-${{ matrix.java }}
name: target-${{ matrix.os }}-2.12.19-${{ matrix.java }}

- name: Inflate target directories (2.12.15)
- name: Inflate target directories (2.12.19)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
10 changes: 5 additions & 5 deletions examples/build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
scalaVersion := "2.13.12"
scalaVersion := "2.13.14"

val circeVersion = "0.14.6"
val tapirVersion = "1.9.6"
val circeVersion = "0.14.7"
val tapirVersion = "1.10.7"

lazy val examples = (project in file("."))
.settings(
Expand All @@ -17,9 +17,9 @@ lazy val examples = (project in file("."))
libraryDependencies += "com.softwaremill.sttp.tapir" %% "tapir-json-circe" % tapirVersion,
libraryDependencies += "com.softwaremill.sttp.tapir" %% "tapir-sttp-client" % tapirVersion,
libraryDependencies += "com.softwaremill.sttp.tapir" %% "tapir-akka-http-server" % tapirVersion,
libraryDependencies += "com.softwaremill.sttp.client3" %% "async-http-client-backend-cats" % "3.9.2",
libraryDependencies += "com.softwaremill.sttp.client3" %% "async-http-client-backend-cats" % "3.9.6",

libraryDependencies += "org.typelevel" %% "cats-effect" % "3.5.3",
libraryDependencies += "org.typelevel" %% "cats-effect" % "3.5.4",

ramlFile := Some(file("../src/sbt-test/sbt-scraml/simple/api/simple.raml")),
ramlFieldMatchPolicy := scraml.FieldMatchPolicy.Exact(),
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 1.6.2
sbt.version = 1.10.0
8 changes: 4 additions & 4 deletions src/sbt-test/sbt-scraml/tapir/build.sbt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
val circeVersion = "0.14.2"
val refinedVersion = "0.9.27"
val tapirVersion = "1.1.0"
val circeVersion = "0.14.7"
val refinedVersion = "0.11.1"
val tapirVersion = "1.10.7"

lazy val root = (project in file("."))
.settings(
scalaVersion := "2.13.8",
scalaVersion := "2.13.14",
name := "scraml-tapir",
version := "0.1",
defaultTypes := scraml.DefaultTypes(
Expand Down
Loading