Skip to content

chore: bump the workflow-actions group with 4 updates #794

chore: bump the workflow-actions group with 4 updates

chore: bump the workflow-actions group with 4 updates #794

Workflow file for this run

name: 'Build Kotlin AWS CDK DSL'
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "*" ]
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:
- 'xlarge_runner'
permissions:
id-token: write
contents: write
checks: write
statuses: write
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@9e9574ef04ea69da568d6249bd69539ccc704e74' # v4.0.0
# https://github.com/actions/checkout
- name: 'checkout'
uses: 'actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8' # v5.0.0
# https://github.com/actions/setup-java
- name: 'Set up JDK'
uses: 'actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165' # v5.0.0
with:
java-version: '17'
distribution: 'temurin'
check-latest: 'true'
# https://github.com/gradle/actions/tree/main/setup-gradle
- name: 'Set up Gradle'
uses: 'gradle/actions/setup-gradle@748248ddd2a24f49513d8f472f81c3a07d4d50e1' # v4.2.2
# https://github.com/gradle/actions/tree/main/dependency-submission
- name: "Generate and submit dependency graph"
uses: "gradle/actions/dependency-submission@748248ddd2a24f49513d8f472f81c3a07d4d50e1" # 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 --no-configuration-cache --stacktrace'