Skip to content

Bump com.squareup.okio:okio-bom from 3.17.0 to 3.18.0 (#100) #94

Bump com.squareup.okio:okio-bom from 3.17.0 to 3.18.0 (#100)

Bump com.squareup.okio:okio-bom from 3.17.0 to 3.18.0 (#100) #94

Workflow file for this run

name: CI
on:
push:
branches:
- main
- '*.x'
workflow_dispatch:
concurrency:
group: ci-${{ github.ref }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
# Setup go for Buf CLI's license-header support
- uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version: 'stable'
cache: false # Disable built-in caching as there is no go.mod/go.sum
- uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/pom.xml') }} # pom.xml contains Buf CLI version
restore-keys: |
${{ runner.os }}-go-
- name: Setup Java JDK
uses: actions/setup-java@03ad4de0992f5dab5e18fcb136590ce7c4a0ac95 # v5.6.0
with:
java-version: '21'
distribution: 'temurin'
check-latest: true
cache: 'maven'
server-id: 'central'
server-username: SONATYPE_USERNAME
server-password: SONATYPE_PASSWORD
- name: Build
env:
MAVEN_GPG_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
run: ./mvnw --batch-mode -P release deploy