Skip to content

Commit

Permalink
fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
guizmaii committed Sep 10, 2023
1 parent a73a345 commit c34de7d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
continue-on-error: true
steps:
- name: Git Checkout
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
fetch-depth: '0'
- name: Install libuv
Expand All @@ -48,7 +48,7 @@ jobs:
continue-on-error: false
steps:
- name: Git Checkout
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
fetch-depth: '0'
- name: Install libuv
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
- name: Cache Dependencies
uses: coursier/cache-action@v6
- name: Git Checkout
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
fetch-depth: '0'
- name: Test
Expand All @@ -100,7 +100,7 @@ jobs:
if: ${{ github.event_name == 'push' }}
steps:
- name: Git Checkout
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
fetch-depth: '0'
- name: Install libuv
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
app_private_key: ${{ secrets.APP_PRIVATE_KEY }}
- name: Create Pull Request
id: cpr
uses: peter-evans/[email protected].0
uses: peter-evans/[email protected].2
with:
body: |-
Autogenerated changes after running the `sbt docs/generateReadme` command of the [zio-sbt-website](https://zio.dev/zio-sbt) plugin.
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
if: ${{ github.event_name != 'pull_request' }}
steps:
- name: Git Checkout
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
fetch-depth: '0'
- name: Install libuv
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
if: ${{ ((github.event_name == 'release') && (github.event.action == 'published')) || (github.event_name == 'workflow_dispatch') }}
steps:
- name: Git Checkout
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
fetch-depth: '0'
- name: Install libuv
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:
if: ${{ (github.event_name == 'release') && (github.event.action == 'published') }}
steps:
- name: Git Checkout
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
fetch-depth: '0'
- name: notify the main repo about the new release of docs package
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ lazy val root = project
def stdSettings(prjName: String) = Seq(
name := s"$prjName",
scalafmtOnCompile := !insideCI.value,
Compile / compile / scalacOptions ++=
optionsOn("2.13")("-Wconf:cat=unused-nowarn:s").value,
scalacOptions ++= optionsOn("2.13")("-Wconf:cat=unused-nowarn:s").value,
scalacOptions ++= optionsOn("2.12")("-Xfuture", "-Xsource:2.13").value,
scalacOptions -= "-Xlint:infer-any",
// workaround for bad constant pool issue
(Compile / doc) := Def.taskDyn {
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
val zioSbtVersion = "0.4.0-alpha.17"
val zioSbtVersion = "0.4.0-alpha.18"

addSbtPlugin("dev.zio" % "zio-sbt-ecosystem" % zioSbtVersion)
addSbtPlugin("dev.zio" % "zio-sbt-website" % zioSbtVersion)
Expand Down

1 comment on commit c34de7d

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'JMH Benchmark'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: c34de7d Previous: 98750d9 Ratio
zio.kafka.bench.ConsumerBenchmark.throughputWithCommits 6082.726213520002 ms/op 556.88665584 ms/op 10.92

This comment was automatically generated by workflow using github-action-benchmark.

CC: @svroonland @guizmaii @erikvanoosten

Please sign in to comment.