Skip to content

Bump com.squareup.okhttp3:logging-interceptor from 4.11.0 to 4.12.0 #19

Bump com.squareup.okhttp3:logging-interceptor from 4.11.0 to 4.12.0

Bump com.squareup.okhttp3:logging-interceptor from 4.11.0 to 4.12.0 #19

Workflow file for this run

name: Pull Request CI
on:
pull_request: ~
jobs:
pr_build:
runs-on: ubuntu-latest
steps:
# Checkout source code
- uses: actions/checkout@v3
# Cache maven stuff
- name: Cache local Maven repository
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build and test
run: ./build/build.sh
- name: Upload Jacoco coverage report
uses: actions/upload-artifact@v3
with:
name: jacoco-report
path: testreport/target/site/jacoco-aggregate/
- name: Save PR number
run: |
mkdir -p ./pr
echo ${{ github.event.number }} > ./pr/NR
- uses: actions/upload-artifact@v3
with:
name: pr
path: |
pr/
testreport/target/site/jacoco-aggregate/jacoco.csv