Update dependency com.google.code.gson:gson to v2.11.0 #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Java CI with Gradle | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: | |
- 17 | |
- 21 | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: 'Set up JDK ${{ matrix.java }}' | |
uses: actions/[email protected] | |
with: | |
distribution: temurin | |
java-version: '${{ matrix.java }}' | |
cache: gradle | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build the Jar | |
run: './gradlew clean build' |