Skip to content

fix(deps): update okhttp monorepo to v5.3.1 (#1782) #4638

fix(deps): update okhttp monorepo to v5.3.1 (#1782)

fix(deps): update okhttp monorepo to v5.3.1 (#1782) #4638

Workflow file for this run

# Definition of GitHub Actions.
# Designed to working both LINE's and forked repository.
#
# Note:
# Memory:
# VM Spec = 2core, 7G RAM. as of 2019-10. https://help.github.com/en/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-actions
# There are possiblity that speed up build by setting xmx manually. But using default now.
# Gradle Deamon:
# Disabled via appending ~/.gradle/gradle.properties
name: CI
on:
push:
pull_request:
merge_group:
workflow_dispatch:
jobs:
test:
name: test (JDK ${{ matrix.java }})
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
contents: read
strategy:
fail-fast: false
matrix:
java: # We want to test on LTSs.
- '17'
- '21'
steps:
- name: actions/setup-java@v3 (JDK ${{ matrix.java }})
uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
architecture: x64
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
with:
submodules: true
- run: |
mkdir -p ~/.gradle
echo "org.gradle.daemon=false" >> ~/.gradle/gradle.properties
- run: ./gradlew -v
- run: cd generator && mvn package && cd ..
- run: python3 generate-code.py
- run: ./gradlew build
pinact:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
- name: Run pinact
uses: suzuki-shunsuke/pinact-action@49cbd6acd0dbab6a6be2585d1dbdaa43b4410133 # v1.0.0
with:
skip_push: "true"