Skip to content

Bump com.squareup.okio:okio from 3.9.1 to 3.10.1 #246

Bump com.squareup.okio:okio from 3.9.1 to 3.10.1

Bump com.squareup.okio:okio from 3.9.1 to 3.10.1 #246

Workflow file for this run

name: Java CI
on: [ push ]
jobs:
build:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
os: [ ubuntu-latest , windows-latest , macos-latest ]
java: [ 17 ]
experimental: [ false ]
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3.3.2
with:
path: ~/.m2
key: ${{ runner.os }}-gradle-m2-${{ hashFiles('**/build.gradle') }}
restore-keys: |
${{ runner.os }}-gradle-
- uses: actions/cache@v3.3.2
with:
path: ~/.gradle/caches/
key: ${{ runner.os }}-gradle-caches-${{ hashFiles('**/build.gradle') }}
restore-keys: |
${{ runner.os }}-gradle-
- uses: actions/cache@v3.3.2
with:
path: ~/.gradle/wrapper/
key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/build.gradle') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: adopt
- name: Build plugin
run: |
git submodule init
git submodule update
cd ./shade_asm
chmod 777 ./mvnw
./mvnw install
cd ..
chmod 777 ./gradlew
./gradlew clean buildPlugin