Skip to content

Commit

Permalink
Update sbt-typelevel-ci-release, ... to 0.7.5 (#228)
Browse files Browse the repository at this point in the history
## About this PR
📦 Updates 
*
[org.typelevel:sbt-typelevel-ci-release](https://github.com/typelevel/sbt-typelevel)
*
[org.typelevel:sbt-typelevel-site](https://github.com/typelevel/sbt-typelevel)

 from `0.7.4` to `0.7.5`

📜 [GitHub Release
Notes](https://github.com/typelevel/sbt-typelevel/releases/tag/v0.7.5) -
[Version
Diff](typelevel/sbt-typelevel@v0.7.4...v0.7.5)

## Usage
✅ **Please merge!**

I'll automatically update this PR to resolve conflicts as long as you
don't change it yourself.

If you'd like to skip this version, you can just close this PR. If you
have any feedback, just mention me in the comments below.

Configure Scala Steward for your repository with a
[`.scala-steward.conf`](https://github.com/scala-steward-org/scala-steward/blob/b5483b62d8407be0ed59c99a8cb3aef4b5895a48/docs/repo-specific-configuration.md)
file.

_Have a fantastic day writing Scala!_

<details>
<summary>⚙ Adjust future updates</summary>

Add this to your `.scala-steward.conf` file to ignore future updates of
this dependency:
```
updates.ignore = [ { groupId = "org.typelevel" } ]
```
Or, add this to slow down future updates of this dependency:
```
dependencyOverrides = [{
  pullRequests = { frequency = "30 days" },
  dependency = { groupId = "org.typelevel" }
}]
```
</details>

<sup>
labels: sbt-plugin-update, early-semver-minor, semver-spec-patch,
version-scheme:early-semver, commit-count:n:2
</sup>

<!-- scala-steward = {
  "Update" : {
    "ForGroupId" : {
      "forArtifactIds" : [
        {
          "ForArtifactId" : {
            "crossDependency" : [
              {
                "groupId" : "org.typelevel",
                "artifactId" : {
                  "name" : "sbt-typelevel-ci-release",
                  "maybeCrossName" : null
                },
                "version" : "0.7.4",
                "sbtVersion" : "1.0",
                "scalaVersion" : "2.12",
                "configurations" : null
              }
            ],
            "newerVersions" : [
              "0.7.5"
            ],
            "newerGroupId" : null,
            "newerArtifactId" : null
          }
        },
        {
          "ForArtifactId" : {
            "crossDependency" : [
              {
                "groupId" : "org.typelevel",
                "artifactId" : {
                  "name" : "sbt-typelevel-site",
                  "maybeCrossName" : null
                },
                "version" : "0.7.4",
                "sbtVersion" : "1.0",
                "scalaVersion" : "2.12",
                "configurations" : null
              }
            ],
            "newerVersions" : [
              "0.7.5"
            ],
            "newerGroupId" : null,
            "newerArtifactId" : null
          }
        }
      ]
    }
  },
  "Labels" : [
    "sbt-plugin-update",
    "early-semver-minor",
    "semver-spec-patch",
    "version-scheme:early-semver",
    "commit-count:n:2"
  ]
} -->
  • Loading branch information
arainko authored Jan 3, 2025
2 parents d075b5c + 3b1be59 commit 3c5daaf
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 23 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,24 +24,24 @@ concurrency:

jobs:
build:
name: Build and Test
name: Test
strategy:
matrix:
os: [ubuntu-latest]
os: [ubuntu-22.04]
scala: [3]
java: [temurin@17]
project: [rootJS, rootJVM, rootNative]
runs-on: ${{ matrix.os }}
timeout-minutes: 60
steps:
- name: Install sbt
uses: sbt/setup-sbt@v1

- name: Checkout current branch (full)
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup sbt
uses: sbt/setup-sbt@v1

- name: Setup Java (temurin@17)
id: setup-java-temurin-17
if: matrix.java == 'temurin@17'
Expand All @@ -59,11 +59,11 @@ jobs:
run: sbt --client githubWorkflowCheck

- name: Check formatting
if: matrix.java == 'temurin@17' && matrix.os == 'ubuntu-latest'
if: matrix.java == 'temurin@17' && matrix.os == 'ubuntu-22.04'
run: sbt --client 'project ${{ matrix.project }}; ++ ${{ matrix.scala }}; scalafmtCheckAll; project /; scalafmtSbtCheck'

- name: Check scalafix lints
if: matrix.java == 'temurin@17' && matrix.os == 'ubuntu-latest'
if: matrix.java == 'temurin@17' && matrix.os == 'ubuntu-22.04'
run: sbt --client 'project ${{ matrix.project }}; ++ ${{ matrix.scala }}; scalafixAll --check'

- name: scalaJSLink
Expand All @@ -78,11 +78,11 @@ jobs:
run: sbt --client 'project ${{ matrix.project }}; ++ ${{ matrix.scala }}; test'

- name: Check binary compatibility
if: matrix.java == 'temurin@17' && matrix.os == 'ubuntu-latest'
if: matrix.java == 'temurin@17' && matrix.os == 'ubuntu-22.04'
run: sbt --client 'project ${{ matrix.project }}; ++ ${{ matrix.scala }}; mimaReportBinaryIssues'

- name: Generate API documentation
if: matrix.java == 'temurin@17' && matrix.os == 'ubuntu-latest'
if: matrix.java == 'temurin@17' && matrix.os == 'ubuntu-22.04'
run: sbt --client 'project ${{ matrix.project }}; ++ ${{ matrix.scala }}; doc'

- name: Check docs
Expand Down Expand Up @@ -110,18 +110,18 @@ jobs:
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/series/0.1.x' || github.ref == 'refs/heads/series/0.2.x')
strategy:
matrix:
os: [ubuntu-latest]
os: [ubuntu-22.04]
java: [temurin@17]
runs-on: ${{ matrix.os }}
steps:
- name: Install sbt
uses: sbt/setup-sbt@v1

- name: Checkout current branch (full)
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup sbt
uses: sbt/setup-sbt@v1

- name: Setup Java (temurin@17)
id: setup-java-temurin-17
if: matrix.java == 'temurin@17'
Expand Down Expand Up @@ -194,18 +194,18 @@ jobs:
if: github.event.repository.fork == false && github.event_name != 'pull_request'
strategy:
matrix:
os: [ubuntu-latest]
os: [ubuntu-22.04]
java: [temurin@17]
runs-on: ${{ matrix.os }}
steps:
- name: Install sbt
uses: sbt/setup-sbt@v1

- name: Checkout current branch (full)
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup sbt
uses: sbt/setup-sbt@v1

- name: Setup Java (temurin@17)
id: setup-java-temurin-17
if: matrix.java == 'temurin@17'
Expand All @@ -229,18 +229,18 @@ jobs:
name: Generate Site
strategy:
matrix:
os: [ubuntu-latest]
os: [ubuntu-22.04]
java: [temurin@17]
runs-on: ${{ matrix.os }}
steps:
- name: Install sbt
uses: sbt/setup-sbt@v1

- name: Checkout current branch (full)
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup sbt
uses: sbt/setup-sbt@v1

- name: Setup Java (temurin@17)
id: setup-java-temurin-17
if: matrix.java == 'temurin@17'
Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.6.2")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.13.0")
addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.7.4")
addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % "0.7.5")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.1")
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.1")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.17.0")
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.6")
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.7.4")
addSbtPlugin("org.typelevel" % "sbt-typelevel-site" % "0.7.5")

0 comments on commit 3c5daaf

Please sign in to comment.