Skip to content

Commit

Permalink
Upgrade dependencies #703
Browse files Browse the repository at this point in the history
Upgrades a couple of dependencies:

* `com.diffplug.spotless` from `5.16.0` to `5.17.1`
* `com.github.spotbugs` from `4.7.6` to `4.7.9`
* `actions/checkout` from `2.3.4` to `2.3.5`
* `org.javamodularity.moduleplugin` from `1.8.7` to `1.8.10`
  • Loading branch information
codecholeric committed Oct 27, 2021
2 parents ec51005 + efff1dc commit c995b95
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2.3.5
- name: Set up Java
uses: actions/setup-java@v1
with:
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2.3.5
- name: Set up Build JDK
uses: actions/setup-java@v1
with:
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2.3.5
- name: Set up Build JDK
uses: actions/setup-java@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gradle-wrapper-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ jobs:
name: "Validation"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v2.3.5
- uses: gradle/wrapper-validation-action@v1.0.4
2 changes: 1 addition & 1 deletion .github/workflows/update-gradle-wrapper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v2.3.5

- name: Install Gradle JDK
uses: actions/setup-java@v1
Expand Down
2 changes: 1 addition & 1 deletion archunit-java-modules-test/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.javamodularity.moduleplugin' version '1.8.7'
id 'org.javamodularity.moduleplugin' version '1.8.10'
}

ext.moduleName = 'com.tngtech.archunit.javamodulestest'
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
plugins {
id 'com.github.johnrengelman.shadow' version '6.1.0' apply false
id 'com.github.spotbugs' version '4.7.6' apply false
id 'com.github.spotbugs' version '4.7.9' apply false
id "io.github.gradle-nexus.publish-plugin" version "1.1.0" apply false
id "com.diffplug.spotless" version "5.16.0" apply false
id "com.diffplug.spotless" version "5.17.1" apply false
}

def appAndSourceUrl = 'https://github.com/TNG/ArchUnit'
Expand Down

0 comments on commit c995b95

Please sign in to comment.