Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
scala: [2.12.20, 2.13.16, 3.3.6]
scala: [2.12.20, 2.13.16, 3.3.7]
java:
- graal_graalvm@17
- graal_graalvm@21
Expand Down Expand Up @@ -192,12 +192,12 @@ jobs:
tar xf targets.tar
rm targets.tar

- name: Download target directories (3.3.6)
- name: Download target directories (3.3.7)
uses: actions/download-artifact@v5
with:
name: target-${{ matrix.os }}-3.3.6-${{ matrix.java }}
name: target-${{ matrix.os }}-3.3.7-${{ matrix.java }}

- name: Inflate target directories (3.3.6)
- name: Inflate target directories (3.3.7)
run: |
tar xf targets.tar
rm targets.tar
Expand Down
10 changes: 5 additions & 5 deletions project/BuildHelper.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import sbtcrossproject.CrossPlugin.autoImport.crossProjectPlatform
object BuildHelper extends ScalaSettings {
val Scala212 = "2.12.20"
val Scala213 = "2.13.16"
val Scala3 = "3.3.6"
val Scala3 = "3.3.7"
val ScoverageVersion = "2.3.0"
val JmhVersion = "0.4.7"

Expand Down Expand Up @@ -39,10 +39,10 @@ object BuildHelper extends ScalaSettings {

def publishSetting(publishArtifacts: Boolean) = {
val publishSettings = Seq(
organization := "dev.zio",
organizationName := "zio",
licenses := Seq("Apache-2.0" -> url("https://github.com/zio/zio-http/blob/master/LICENSE")),
publishMavenStyle := true,
organization := "dev.zio",
organizationName := "zio",
licenses := Seq("Apache-2.0" -> url("https://github.com/zio/zio-http/blob/master/LICENSE")),
publishMavenStyle := true,
credentials ++=
(for {
username <- Option(System.getenv().get("SONATYPE_USERNAME"))
Expand Down
Loading