Skip to content

Bump Gosec #31

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

Closed
wants to merge 3 commits into from
Closed
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
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2.1

orbs:
codacy: codacy/base@10.2.2
codacy: codacy/base@12.1.5

workflows:
version: 2
Expand All @@ -12,7 +12,7 @@ workflows:
- codacy/sbt:
name: populate_cache
persist_to_workspace: true
cmd: sbt "set scalafmtUseIvy in ThisBuild := false;update"
cmd: sbt "set ThisBuild / scalafmtUseIvy := false; update"
requires:
- codacy/checkout_and_version
- codacy/sbt:
Expand Down
7 changes: 4 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
val scalaVersionNumber = "2.13.1"
val circeVersion = "0.12.3"
val scalaVersionNumber = "2.13.14"
val circeVersion = "0.14.12"
val graalVersion = "21.2.0"

lazy val root = (project in file("."))
Expand All @@ -16,7 +16,8 @@ lazy val root = (project in file("."))
"io.circe" %% "circe-core" % circeVersion,
"io.circe" %% "circe-parser" % circeVersion,
"com.github.scopt" %% "scopt" % "3.7.1",
"org.scalatest" %% "scalatest" % "3.1.0" % Test
"com.frugalmechanic" %% "fm-sbt-s3-resolver" % "0.21.0",
"org.scalatest" %% "scalatest" % "3.2.19" % Test
),
graalVMNativeImageGraalVersion := Some(graalVersion),
graalVMNativeImageOptions ++= Seq(
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.3.8
sbt.version = 1.10.1
10 changes: 6 additions & 4 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
resolvers += Resolver.JCenterRepository
addSbtPlugin("com.codacy" % "codacy-sbt-plugin" % "18.0.3")
addSbtPlugin("com.codacy" % "codacy-sbt-plugin" % "25.2.2")

addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.10")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.3.1")

addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.3.1")

addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.8.1")
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.11.1")

addSbtPlugin("com.frugalmechanic" % "fm-sbt-s3-resolver" % "0.21.0")