Skip to content

Commit

Permalink
Merge branch 'main' into update/circe-core-0.14.6
Browse files Browse the repository at this point in the history
  • Loading branch information
geirolz committed Oct 23, 2023
2 parents fab8c2c + 34e2473 commit e7aca41
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
test-tasks: test

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

#----------- JDK -----------
- name: Setup JDK
Expand All @@ -48,7 +48,7 @@ jobs:

#----------- CACHE -----------
- name: Cache SBT
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
# A list of files, directories, and wildcard patterns to cache and restore
path: |
Expand All @@ -70,7 +70,7 @@ jobs:
needs: [build]
if: github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

#----------- JDK -----------
- name: Setup JDK
Expand All @@ -81,7 +81,7 @@ jobs:

#----------- CACHE -----------
- name: Cache SBT
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
# A list of files, directories, and wildcard patterns to cache and restore
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
steps:
# Checkout the repository to the GitHub Actions runner
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

# Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis
- name: Run Codacy Analysis CLI
Expand Down
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.7.12
version = 3.7.14
encoding = "UTF-8"
runner.dialect = "scala213source3"
maxColumn = 100
Expand Down
6 changes: 3 additions & 3 deletions project/ProjectDependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import sbt.Keys.scalaVersion
object ProjectDependencies {

private val catsVersion = "2.9.0"
private val catsEffectVersion = "3.5.1"
private val catsEffectVersion = "3.5.2"
private val circeVersion = "0.14.6"

Check notice

Code scanning / Codacy-scalameta-pro (reported by Codacy)

Values should have minimum scope to avoid misuses. Note

circeVersion should have a smaller scope by using private[this]

Check notice

Code scanning / Scalastyle (reported by Codacy)

Field name does not match the regular expression '^[A-Z][A-Za-z0-9]*$'. Note

Field name does not match the regular expression '^[A-Z][A-Za-z0-9]*$'.
private val catsXmlVersion = "0.0.9"

Expand All @@ -19,7 +19,7 @@ object ProjectDependencies {

object Core {
lazy val dedicated: Seq[ModuleID] = Seq(
"org.scala-lang" % "scala-reflect" % "2.13.11"
"org.scala-lang" % "scala-reflect" % "2.13.12"
)
}

Expand Down Expand Up @@ -55,7 +55,7 @@ object ProjectDependencies {
"org.typelevel" %% "cats-effect" % catsEffectVersion,
// test
"org.typelevel" %% "cats-effect-testing-scalatest" % "1.5.0" % Test,
"org.scalactic" %% "scalactic" % "3.2.16" % Test,
"org.scalactic" %% "scalactic" % "3.2.17" % Test,
"org.scalatest" %% "scalatest" % "3.2.16" % Test,
"org.scalameta" %% "munit" % "0.7.29" % Test,
"org.typelevel" %% "munit-cats-effect-3" % "1.0.7" % Test
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.9.4
sbt.version = 1.9.6
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sbt.addSbtPlugin

addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.8")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.9")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.7")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.4.0")

0 comments on commit e7aca41

Please sign in to comment.