Skip to content

Commit

Permalink
Bump dependencies to latest (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
nedtwigg authored Jul 6, 2024
2 parents 73fee84 + 50c9a75 commit c17fdc9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# GH_TOKEN
# NEXUS_USER
# NEXUS_PASS64 (base64 NOTE: `base64` and `openssl base64` failed, had to use Java
# byte[] data = "{{password}}".getBytes(StandardCharsets.UTF_8);
Expand All @@ -11,6 +10,8 @@
# GRADLE_SECRET

name: deploy
permissions:
contents: write
on:
workflow_dispatch:
inputs:
Expand All @@ -27,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
name: deploy
env:
gh_token: ${{ secrets.GH_TOKEN }}
gh_token: ${{ secrets.GITHUB_TOKEN }}
ORG_GRADLE_PROJECT_nexus_user: ${{ secrets.NEXUS_USER }}
ORG_GRADLE_PROJECT_nexus_pass64: ${{ secrets.NEXUS_PASS64 }}
ORG_GRADLE_PROJECT_gpg_passphrase: ${{ secrets.GPG_PASSPHRASE }}
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ ext.javadoc_agg='spotless-changelog-lib spotless-changelog-plugin-gradle'
apply from: 干.file('base/sonatype.gradle')

String VER_JUNIT = '4.13.2'
String VER_ASSERTJ = '3.24.2'
String VER_JGIT= '6.4.0.202211300538-r'
String VER_ASSERTJ = '3.26.0'
String VER_JGIT= '6.10.0.202406032230-r'

subprojects {
apply from: 干.file('base/java.gradle')
Expand Down
8 changes: 4 additions & 4 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ plugins {
// https://github.com/diffplug/blowdryer/blob/main/CHANGELOG.md
id 'com.diffplug.blowdryerSetup' version '1.7.1'
// https://github.com/diffplug/spotless/blob/main/plugin-gradle/CHANGES.md
id 'com.diffplug.spotless' version '6.23.3' apply false
id 'com.diffplug.spotless' version '7.0.0.BETA1' apply false
// https://github.com/diffplug/spotless-changelog/blob/main/CHANGELOG.md
id 'com.diffplug.spotless-changelog' version '3.0.2' apply false
// https://plugins.gradle.org/plugin/com.gradle.plugin-publish
id 'com.gradle.plugin-publish' version '1.2.1' apply false
// https://github.com/equodev/equo-ide/blob/main/plugin-gradle/CHANGELOG.md
id 'dev.equo.ide' version '1.7.5' apply false
id 'dev.equo.ide' version '1.7.6' apply false
// https://github.com/gradle-nexus/publish-plugin/releases
id 'io.github.gradle-nexus.publish-plugin' version '2.0.0-rc-1' apply false
id 'io.github.gradle-nexus.publish-plugin' version '2.0.0' apply false
}
blowdryerSetup {
github 'diffplug/blowdryer-diffplug', 'tag', '7.1.1'
github 'diffplug/blowdryer-diffplug', 'tag', '7.3.0'
//devLocal '../blowdryer-diffplug'
setPluginsBlockTo {
it.file 'plugin.versions'
Expand Down

0 comments on commit c17fdc9

Please sign in to comment.