Skip to content

Commit c17fdc9

Browse files
authored
Bump dependencies to latest (#50)
2 parents 73fee84 + 50c9a75 commit c17fdc9

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

Diff for: .github/workflows/deploy.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# GH_TOKEN
21
# NEXUS_USER
32
# NEXUS_PASS64 (base64 NOTE: `base64` and `openssl base64` failed, had to use Java
43
# byte[] data = "{{password}}".getBytes(StandardCharsets.UTF_8);
@@ -11,6 +10,8 @@
1110
# GRADLE_SECRET
1211

1312
name: deploy
13+
permissions:
14+
contents: write
1415
on:
1516
workflow_dispatch:
1617
inputs:
@@ -27,7 +28,7 @@ jobs:
2728
runs-on: ubuntu-latest
2829
name: deploy
2930
env:
30-
gh_token: ${{ secrets.GH_TOKEN }}
31+
gh_token: ${{ secrets.GITHUB_TOKEN }}
3132
ORG_GRADLE_PROJECT_nexus_user: ${{ secrets.NEXUS_USER }}
3233
ORG_GRADLE_PROJECT_nexus_pass64: ${{ secrets.NEXUS_PASS64 }}
3334
ORG_GRADLE_PROJECT_gpg_passphrase: ${{ secrets.GPG_PASSPHRASE }}

Diff for: build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ ext.javadoc_agg='spotless-changelog-lib spotless-changelog-plugin-gradle'
1515
apply from: 干.file('base/sonatype.gradle')
1616

1717
String VER_JUNIT = '4.13.2'
18-
String VER_ASSERTJ = '3.24.2'
19-
String VER_JGIT= '6.4.0.202211300538-r'
18+
String VER_ASSERTJ = '3.26.0'
19+
String VER_JGIT= '6.10.0.202406032230-r'
2020

2121
subprojects {
2222
apply from: 干.file('base/java.gradle')

Diff for: settings.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ plugins {
88
// https://github.com/diffplug/blowdryer/blob/main/CHANGELOG.md
99
id 'com.diffplug.blowdryerSetup' version '1.7.1'
1010
// https://github.com/diffplug/spotless/blob/main/plugin-gradle/CHANGES.md
11-
id 'com.diffplug.spotless' version '6.23.3' apply false
11+
id 'com.diffplug.spotless' version '7.0.0.BETA1' apply false
1212
// https://github.com/diffplug/spotless-changelog/blob/main/CHANGELOG.md
1313
id 'com.diffplug.spotless-changelog' version '3.0.2' apply false
1414
// https://plugins.gradle.org/plugin/com.gradle.plugin-publish
1515
id 'com.gradle.plugin-publish' version '1.2.1' apply false
1616
// https://github.com/equodev/equo-ide/blob/main/plugin-gradle/CHANGELOG.md
17-
id 'dev.equo.ide' version '1.7.5' apply false
17+
id 'dev.equo.ide' version '1.7.6' apply false
1818
// https://github.com/gradle-nexus/publish-plugin/releases
19-
id 'io.github.gradle-nexus.publish-plugin' version '2.0.0-rc-1' apply false
19+
id 'io.github.gradle-nexus.publish-plugin' version '2.0.0' apply false
2020
}
2121
blowdryerSetup {
22-
github 'diffplug/blowdryer-diffplug', 'tag', '7.1.1'
22+
github 'diffplug/blowdryer-diffplug', 'tag', '7.3.0'
2323
//devLocal '../blowdryer-diffplug'
2424
setPluginsBlockTo {
2525
it.file 'plugin.versions'

0 commit comments

Comments
 (0)