Skip to content

chore: bump the gradle-updates group across 1 directory with 3 updates #209

chore: bump the gradle-updates group across 1 directory with 3 updates

chore: bump the gradle-updates group across 1 directory with 3 updates #209

Workflow file for this run

name: 'kotlin-cdk-extensions'
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@fc87bb5b5a97953d987372e74478de634726b3e5' # v3.0.25
# https://github.com/actions/checkout
- name: 'checkout'
uses: 'actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683' # v4.2.2
# https://github.com/actions/setup-java
- name: 'Set up JDK'
uses: 'actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00' # v4.7.1
with:
java-version: 21
distribution: "temurin"
# https://github.com/gradle/actions/tree/main/setup-gradle
- name: 'Set up Gradle'
uses: 'gradle/actions/setup-gradle@8379f6a1328ee0e06e2bb424dadb7b159856a326' # v4.2.2
# https://github.com/gradle/actions/tree/main/dependency-submission
- name: "Generate and submit dependency graph"
uses: "gradle/actions/dependency-submission@8379f6a1328ee0e06e2bb424dadb7b159856a326" # v4.2.2
with:
cache-cleanup: "never"
dependency-graph-report-dir: "${{ github.workspace }}/build/dependency-graph-reports"
dependency-graph-exclude-projects: "^:(build-logic|buildSrc|.*[Tt]test.*)"
dependency-graph-exclude-configurations: ".*[Tt]est.*Classpath"
additional-arguments: -Dorg.gradle.configuration-cache.parallel=false
- name: 'Build'
run: './gradlew build --info --scan --stacktrace'
- name: 'Publish'
run: './gradlew publishAllPublicationsToMavenCentralRepository --info --stacktrace --no-configuration-cache'