From 8bda49472262bb3415ccf99cbc6706356762c5e4 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 14 Jan 2024 16:09:39 +0100 Subject: [PATCH 1/5] chore(deps): update dependency ubuntu to v22 (#228) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .github/workflows/auto-approve.yml | 2 +- .github/workflows/ci.yml | 14 +++++++------- .github/workflows/release-drafter.yml | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/auto-approve.yml b/.github/workflows/auto-approve.yml index ad25c46..e2bbccb 100644 --- a/.github/workflows/auto-approve.yml +++ b/.github/workflows/auto-approve.yml @@ -5,7 +5,7 @@ on: jobs: auto-approve: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: hmarr/auto-approve-action@v3.2.1 if: github.actor == 'scala-steward' || github.actor == 'renovate[bot]' diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 485c3cd..d20037b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ on: jobs: lint: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 timeout-minutes: 30 steps: - name: Checkout current branch @@ -33,7 +33,7 @@ jobs: run: ./sbt check compile: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 timeout-minutes: 30 strategy: fail-fast: false @@ -57,7 +57,7 @@ jobs: run: ./sbt ++${{ matrix.scala }}! compileSources test: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 timeout-minutes: 30 strategy: fail-fast: false @@ -81,7 +81,7 @@ jobs: run: ./sbt ++${{ matrix.scala }}! testAll publishLocal: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 timeout-minutes: 30 steps: - name: Checkout current branch @@ -98,7 +98,7 @@ jobs: run: ./sbt +publishLocal website: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 timeout-minutes: 30 steps: - name: Checkout current branch @@ -115,14 +115,14 @@ jobs: run: ./sbt docs/compileDocs ci: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 needs: [lint, compile, test, publishLocal, website] steps: - name: Aggregate outcomes run: echo "build succeeded" publish: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 timeout-minutes: 30 needs: [ci] if: github.event_name != 'pull_request' diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index 58bddce..be3535e 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -6,7 +6,7 @@ on: jobs: update_release_draft: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: release-drafter/release-drafter@v5 env: From 4642baeb79949ba22cd45235e567989fead3b514 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 14 Jan 2024 16:09:57 +0100 Subject: [PATCH 2/5] chore(deps): update actions/checkout action to v4 (#232) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 12 ++++++------ .github/workflows/site.yml | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d20037b..209f592 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: timeout-minutes: 30 steps: - name: Checkout current branch - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v4.0.0 with: fetch-depth: 0 - name: Setup Java @@ -42,7 +42,7 @@ jobs: scala: ['2.12.17', '2.13.10', '3.2.2'] steps: - name: Checkout current branch - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v4.0.0 with: fetch-depth: 0 - name: Setup Java @@ -66,7 +66,7 @@ jobs: scala: ['2.12.17', '2.13.10', '3.2.2'] steps: - name: Checkout current branch - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v4.0.0 with: fetch-depth: 0 - name: Setup Java @@ -85,7 +85,7 @@ jobs: timeout-minutes: 30 steps: - name: Checkout current branch - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v4.0.0 - name: Setup Java uses: actions/setup-java@v3.11.0 with: @@ -102,7 +102,7 @@ jobs: timeout-minutes: 30 steps: - name: Checkout current branch - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v4.0.0 - name: Setup Java uses: actions/setup-java@v3.11.0 with: @@ -128,7 +128,7 @@ jobs: if: github.event_name != 'pull_request' steps: - name: Checkout current branch - uses: actions/checkout@v3.4.0 + uses: actions/checkout@v4.0.0 with: fetch-depth: 0 - name: Setup Java diff --git a/.github/workflows/site.yml b/.github/workflows/site.yml index 2374a21..624e93e 100644 --- a/.github/workflows/site.yml +++ b/.github/workflows/site.yml @@ -18,7 +18,7 @@ jobs: if: ${{ github.event_name == 'pull_request' }} steps: - name: Git Checkout - uses: actions/checkout@v3.3.0 + uses: actions/checkout@v4.0.0 with: fetch-depth: '0' - name: Setup Scala @@ -41,7 +41,7 @@ jobs: if: ${{ ((github.event_name == 'release') && (github.event.action == 'published')) || (github.event_name == 'workflow_dispatch') }} steps: - name: Git Checkout - uses: actions/checkout@v3.3.0 + uses: actions/checkout@v4.0.0 with: fetch-depth: '0' - name: Setup Scala @@ -65,7 +65,7 @@ jobs: if: ${{ (github.event_name == 'push') || ((github.event_name == 'release') && (github.event.action == 'published')) }} steps: - name: Git Checkout - uses: actions/checkout@v3.3.0 + uses: actions/checkout@v4.0.0 with: ref: ${{ github.head_ref }} fetch-depth: '0' From 6f4370daa212dc146fa42ddcf05c8e0f21bac1d1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 14 Jan 2024 16:10:23 +0100 Subject: [PATCH 3/5] chore(deps): update actions/setup-java action to v3.12.0 (#227) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 12 ++++++------ .github/workflows/site.yml | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 209f592..987425a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: with: fetch-depth: 0 - name: Setup Java - uses: actions/setup-java@v3.11.0 + uses: actions/setup-java@v3.12.0 with: distribution: temurin java-version: 17 @@ -46,7 +46,7 @@ jobs: with: fetch-depth: 0 - name: Setup Java - uses: actions/setup-java@v3.11.0 + uses: actions/setup-java@v3.12.0 with: distribution: temurin java-version: ${{ matrix.java }} @@ -70,7 +70,7 @@ jobs: with: fetch-depth: 0 - name: Setup Java - uses: actions/setup-java@v3.11.0 + uses: actions/setup-java@v3.12.0 with: distribution: temurin java-version: ${{ matrix.java }} @@ -87,7 +87,7 @@ jobs: - name: Checkout current branch uses: actions/checkout@v4.0.0 - name: Setup Java - uses: actions/setup-java@v3.11.0 + uses: actions/setup-java@v3.12.0 with: distribution: temurin java-version: 8 @@ -104,7 +104,7 @@ jobs: - name: Checkout current branch uses: actions/checkout@v4.0.0 - name: Setup Java - uses: actions/setup-java@v3.11.0 + uses: actions/setup-java@v3.12.0 with: distribution: temurin java-version: 17 @@ -132,7 +132,7 @@ jobs: with: fetch-depth: 0 - name: Setup Java - uses: actions/setup-java@v3.11.0 + uses: actions/setup-java@v3.12.0 with: distribution: temurin java-version: 8 diff --git a/.github/workflows/site.yml b/.github/workflows/site.yml index 624e93e..c39f620 100644 --- a/.github/workflows/site.yml +++ b/.github/workflows/site.yml @@ -22,7 +22,7 @@ jobs: with: fetch-depth: '0' - name: Setup Scala - uses: actions/setup-java@v3.11.0 + uses: actions/setup-java@v3.12.0 with: distribution: temurin java-version: 17 @@ -45,7 +45,7 @@ jobs: with: fetch-depth: '0' - name: Setup Scala - uses: actions/setup-java@v3.11.0 + uses: actions/setup-java@v3.12.0 with: distribution: temurin java-version: 17 @@ -70,7 +70,7 @@ jobs: ref: ${{ github.head_ref }} fetch-depth: '0' - name: Setup Scala - uses: actions/setup-java@v3.11.0 + uses: actions/setup-java@v3.12.0 with: distribution: temurin java-version: 17 From 2e1d32ec1611cc33f706b3ceee4422418408f04f Mon Sep 17 00:00:00 2001 From: Maxim Schuwalow Date: Sun, 14 Jan 2024 16:11:33 +0100 Subject: [PATCH 4/5] update site workflow --- .github/workflows/site.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/site.yml b/.github/workflows/site.yml index c39f620..a9e071b 100644 --- a/.github/workflows/site.yml +++ b/.github/workflows/site.yml @@ -18,11 +18,11 @@ jobs: if: ${{ github.event_name == 'pull_request' }} steps: - name: Git Checkout - uses: actions/checkout@v4.0.0 + uses: actions/checkout@v3.3.0 with: fetch-depth: '0' - name: Setup Scala - uses: actions/setup-java@v3.12.0 + uses: actions/setup-java@v3.9.0 with: distribution: temurin java-version: 17 @@ -41,11 +41,11 @@ jobs: if: ${{ ((github.event_name == 'release') && (github.event.action == 'published')) || (github.event_name == 'workflow_dispatch') }} steps: - name: Git Checkout - uses: actions/checkout@v4.0.0 + uses: actions/checkout@v3.3.0 with: fetch-depth: '0' - name: Setup Scala - uses: actions/setup-java@v3.12.0 + uses: actions/setup-java@v3.9.0 with: distribution: temurin java-version: 17 @@ -65,12 +65,12 @@ jobs: if: ${{ (github.event_name == 'push') || ((github.event_name == 'release') && (github.event.action == 'published')) }} steps: - name: Git Checkout - uses: actions/checkout@v4.0.0 + uses: actions/checkout@v3.3.0 with: ref: ${{ github.head_ref }} fetch-depth: '0' - name: Setup Scala - uses: actions/setup-java@v3.12.0 + uses: actions/setup-java@v3.9.0 with: distribution: temurin java-version: 17 @@ -84,7 +84,7 @@ jobs: git add README.md git commit -m "Update README.md" || echo "No changes to commit" - name: Create Pull Request - uses: peter-evans/create-pull-request@v5.0.2 + uses: peter-evans/create-pull-request@v4.2.3 with: body: |- Autogenerated changes after running the `sbt docs/generateReadme` command of the [zio-sbt-website](https://zio.dev/zio-sbt) plugin. From 227a5c78361fc2b4faa621f752d7bf00556747c2 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Sun, 14 Jan 2024 16:16:28 +0100 Subject: [PATCH 5/5] Update sbt-jmh to 0.4.7 (#257) Co-authored-by: Maxim Schuwalow --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index a34ed6e..4639eeb 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -8,6 +8,6 @@ addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0" addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.7") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0") addSbtPlugin("dev.zio" % "zio-sbt-website" % "0.3.10") -addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.4") +addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.7") libraryDependencies += "org.snakeyaml" % "snakeyaml-engine" % "2.3"