diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..99158f1 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @Dwolla/platform diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5be1189..3c33383 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - scala: [2.13.8] + scala: [2.13.9] java: [temurin@11] runs-on: ${{ matrix.os }} steps: diff --git a/.mergify.yml b/.mergify.yml index bd625f4..d70e0f4 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -8,8 +8,6 @@ pull_request_rules: conditions: - author=dwolla-oss-scala-steward[bot] actions: - request_reviews: - users: [bpholt] label: add: [dependency-update] - name: automatic update pull requests diff --git a/build.sbt b/build.sbt index 8c3a705..de272b2 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ ThisBuild / homepage := Some(url("https://github.com/Dwolla/iam-user-cleanup")) ThisBuild / description := "CloudFormation custom resource that removes manually-added IAM user attributes prior to the user being deleted by CloudFormation" ThisBuild / licenses += ("MIT", url("http://opensource.org/licenses/MIT")) ThisBuild / startYear := Option(2019) -ThisBuild / scalaVersion := "2.13.8" +ThisBuild / scalaVersion := "2.13.9" ThisBuild / githubWorkflowJavaVersions := Seq(JavaSpec.temurin("11")) ThisBuild / githubWorkflowBuild := Seq( WorkflowStep.Sbt(List("test"), name = Option("Run tests")),