Skip to content

Commit

Permalink
Combined dependencies PR (#134)
Browse files Browse the repository at this point in the history
* Bump actions/setup-java from 1 to 3

Bumps [actions/setup-java](https://github.com/actions/setup-java) from 1 to 3.
- [Release notes](https://github.com/actions/setup-java/releases)
- [Commits](actions/setup-java@v1...v3)

---
updated-dependencies:
- dependency-name: actions/setup-java
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Specify java distribution

This is now required with the new version of actions/setup-java

* Bump junit from 4.12 to 4.13.2

Bumps [junit](https://github.com/junit-team/junit4) from 4.12 to 4.13.2.
- [Release notes](https://github.com/junit-team/junit4/releases)
- [Changelog](https://github.com/junit-team/junit4/blob/main/doc/ReleaseNotes4.12.md)
- [Commits](junit-team/junit4@r4.12...r4.13.2)

---
updated-dependencies:
- dependency-name: junit:junit
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump snakeyaml from 1.25 to 1.30

Bumps [snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) from 1.25 to 1.30.
- [Commits](https://bitbucket.org/snakeyaml/snakeyaml/branches/compare/snakeyaml-1.30..snakeyaml-1.25)

---
updated-dependencies:
- dependency-name: org.yaml:snakeyaml
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump jbibtex from 1.0.17 to 1.0.19

Bumps [jbibtex](https://github.com/jbibtex/jbibtex) from 1.0.17 to 1.0.19.
- [Release notes](https://github.com/jbibtex/jbibtex/releases)
- [Commits](jbibtex/jbibtex@1.0.17...1.0.19)

---
updated-dependencies:
- dependency-name: org.jbibtex:jbibtex
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump styles from 21.11 to 22.2

Bumps [styles](https://github.com/citation-style-language/styles) from 21.11 to 22.2.
- [Release notes](https://github.com/citation-style-language/styles/releases)
- [Changelog](https://github.com/citation-style-language/styles/blob/master/history-australia.csl)
- [Commits](https://github.com/citation-style-language/styles/commits)

---
updated-dependencies:
- dependency-name: org.citationstyles:styles
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump commons-io from 2.6 to 2.11.0

Bumps commons-io from 2.6 to 2.11.0.

---
updated-dependencies:
- dependency-name: commons-io:commons-io
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
michel-kraemer and dependabot[bot] authored Feb 26, 2022
1 parent b6dd5b6 commit 795c6bd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@ jobs:
with:
submodules: true
- name: Set up JDK 11
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'zulu'
- name: Build with Gradle
run: "./gradlew build -PexcludeTests='**/TestSuiteTest.class'"
- name: Create test reports
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ subprojects {
}

dependencies {
testImplementation 'junit:junit:4.12'
testImplementation 'junit:junit:4.13.2'
}

// configure javadoc
Expand Down
2 changes: 1 addition & 1 deletion citeproc-java-tool/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies {
implementation 'de.undercouch:underline:1.0.0'
implementation 'org.jline:jline:3.21.0'

runtime 'org.citationstyles:styles:21.11'
runtime 'org.citationstyles:styles:22.2'
runtime 'org.citationstyles:locales:22.2'
}

Expand Down
8 changes: 4 additions & 4 deletions citeproc-java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ ext.graalVMVersion = "22.0.0.2"
dependencies {
compile 'org.apache.commons:commons-lang3:3.12.0'
compile 'org.apache.commons:commons-text:1.8'
compile 'org.jbibtex:jbibtex:1.0.17'
compile 'org.jbibtex:jbibtex:1.0.19'
compile 'org.antlr:antlr4-runtime:4.9.3'
compile 'org.yaml:snakeyaml:1.25', optional
compile 'org.yaml:snakeyaml:1.30', optional

testCompile 'commons-io:commons-io:2.6'
testCompile 'commons-io:commons-io:2.11.0'
testCompile 'org.fusesource.jansi:jansi:2.4.0'
testCompile 'org.citationstyles:styles:21.11'
testCompile 'org.citationstyles:styles:22.2'
testCompile 'org.citationstyles:locales:22.2'
testCompile 'com.carrotsearch:junit-benchmarks:0.7.2'
testCompile "org.graalvm.sdk:graal-sdk:$graalVMVersion"
Expand Down

0 comments on commit 795c6bd

Please sign in to comment.