Skip to content

chore: bump zgosalvez/github-actions-ensure-sha-pinned-actions from 3.0.6 to 3.0.7 in the workflow-actions group #52

chore: bump zgosalvez/github-actions-ensure-sha-pinned-actions from 3.0.6 to 3.0.7 in the workflow-actions group

chore: bump zgosalvez/github-actions-ensure-sha-pinned-actions from 3.0.6 to 3.0.7 in the workflow-actions group #52

Workflow file for this run

name: 'Build KProcess'
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "*" ]
permissions:
contents: 'write'
env:
GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: 'false'
ORG_GRADLE_PROJECT_signingInMemoryKey: '${{ secrets.SIGNING_KEY }}'
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: '${{ secrets.SIGNING_PASSWORD }}'
ORG_GRADLE_PROJECT_mavenCentralUsername: '${{ secrets.SONATYPEUSERNAME }}'
ORG_GRADLE_PROJECT_mavenCentralPassword: '${{ secrets.SONATYPEPASSWORD }}'
jobs:
build:
runs-on: 'ubuntu-latest'
steps:
# https://github.com/hmarr/debug-action
- uses: 'hmarr/debug-action@cd1afbd7852b7ad7b1b7a9a1b03efebd3b0a1820' # v3.0.0
# https://github.com/zgosalvez/github-actions-ensure-sha-pinned-actions
- uses: 'zgosalvez/github-actions-ensure-sha-pinned-actions@76d1d8e0b075d7190b5d59b86da91c7bdbcc99b2' # v3.0.7
# https://github.com/actions/checkout
- name: 'checkout'
uses: 'actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29' # v4.1.6
# https://github.com/actions/setup-java
- name: 'Set up JDK'
uses: 'actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9' # v4.2.1
with:
java-version: '17'
distribution: 'temurin'
check-latest: 'true'
# https://github.com/gradle/wrapper-validation-action
- name: 'Validate Gradle Wrapper'
uses: 'gradle/wrapper-validation-action@216d1ad2b3710bf005dc39237337b9673fd8fcd5' # v3.3.2
# https://github.com/gradle/actions/tree/main/setup-gradle
- name: 'Set up Gradle'
uses: 'gradle/actions/setup-gradle@db19848a5fa7950289d3668fb053140cf3028d43' # v3.3.2
with:
gradle-version: 'wrapper'
gradle-home-cache-includes: |-
jdks
caches
notifications
gradle-home-cache-cleanup: 'true'
dependency-graph: 'generate-and-submit'
- name: 'Build'
run: './gradlew build --info --scan --stacktrace'
- name: 'Publish'
run: './gradlew publishAllPublicationsToMavenCentralRepository --info --stacktrace --no-configuration-cache'