Compare commits

..

1 Commits

Author SHA1 Message Date
dependabot[bot]
2bdd18fb47
build: bump gson from 2.9.0 to 2.10.1
Bumps [gson](https://github.com/google/gson) from 2.9.0 to 2.10.1.
- [Release notes](https://github.com/google/gson/releases)
- [Changelog](https://github.com/google/gson/blob/master/CHANGELOG.md)
- [Commits](https://github.com/google/gson/compare/gson-parent-2.9.0...gson-parent-2.10.1)

---
updated-dependencies:
- dependency-name: com.google.code.gson:gson
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-01-09 14:12:41 +00:00
2 changed files with 3 additions and 7 deletions

View File

@ -20,17 +20,13 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
matrix:
# follows https://en.wikipedia.org/wiki/Java_version_history#Release_table
java-versions: ['8', '11', '17', '21']
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Set up Java ${{ matrix.java-versions }} - name: Set up JDK 11
uses: actions/setup-java@v3 uses: actions/setup-java@v3
with: with:
java-version: ${{ matrix.java-versions }} java-version: '11'
distribution: 'temurin' distribution: 'temurin'
- name: Build with Gradle - name: Build with Gradle
uses: gradle/gradle-build-action@fec4a42eb0c83154e5c9590748ba8337949c5701 uses: gradle/gradle-build-action@fec4a42eb0c83154e5c9590748ba8337949c5701

View File

@ -21,7 +21,7 @@ dependencies {
// Use the Kotlin JDK 8 standard library. // Use the Kotlin JDK 8 standard library.
implementation(kotlin("stdlib-jdk8")) implementation(kotlin("stdlib-jdk8"))
// Gson // Gson
implementation("com.google.code.gson:gson:2.9.0") implementation("com.google.code.gson:gson:2.10.1")
testImplementation(kotlin("test")) testImplementation(kotlin("test"))
} }