Skip to content

Bump com.squareup.okio:okio from 3.3.0 to 3.5.0 #270

Bump com.squareup.okio:okio from 3.3.0 to 3.5.0

Bump com.squareup.okio:okio from 3.3.0 to 3.5.0 #270

Workflow file for this run

name: CI
on: [ pull_request ]
jobs:
ci:
runs-on: ubuntu-latest
timeout-minutes: 20
permissions:
# creates a new check with unit test results
checks: write
# needs to git diff the repo
contents: read
# find the pr for this commit
issues: read
# write artifacts and comment on pr related to this
pull-requests: write
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Set up JDK
uses: actions/[email protected]
with:
distribution: 'zulu'
java-version: 8
cache: 'gradle'
- name: clean build
run: ./gradlew clean build --no-daemon --info --stacktrace
- name: Upload Test Results
# see ci-test.check.yml for workflow that publishes test results without security issues for forks
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: check-ci-results
path: '**/build/test-results/test/TEST-*.xml'