chore: bump the workflow-actions group with 2 updates #701
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Build Kotlin AWS CDK DSL' | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "*" ] | |
env: | |
GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: 'false' | |
ORG_GRADLE_PROJECT_signingKey: '${{ secrets.SIGNING_KEY }}' | |
ORG_GRADLE_PROJECT_signingPassword: '${{ secrets.SIGNING_PASSWORD }}' | |
ORG_GRADLE_PROJECT_sonatypeUsername: '${{ secrets.SONATYPEUSERNAME }}' | |
ORG_GRADLE_PROJECT_sonatypePassword: '${{ 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@0901cf7b71c7ea6261ec69a3dc2bd3f9264f893e' # v3.0.12 | |
# https://github.com/actions/checkout | |
- name: 'checkout' | |
uses: 'actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332' # v4.1.7 | |
# https://github.com/actions/setup-java | |
- name: 'Set up JDK' | |
uses: 'actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88' # v4.3.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@d156388eb19639ec20ade50009f3d199ce1e2808' # v4 | |
with: | |
gradle-version: 'wrapper' | |
gradle-home-cache-includes: |- | |
jdks | |
caches | |
notifications | |
gradle-home-cache-cleanup: 'true' | |
validate-wrappers: true | |
# https://github.com/gradle/actions/tree/main/dependency-submission | |
- name: "Generate and submit dependency graph" | |
uses: "gradle/actions/dependency-submission@d156388eb19639ec20ade50009f3d199ce1e2808" # v4 | |
env: | |
DEPENDENCY_GRAPH_EXCLUDE_PROJECTS: "^:(build-logic|buildSrc|.*[Tt]test.*)" | |
DEPENDENCY_GRAPH_EXCLUDE_CONFIGURATIONS: ".*[Tt]est.*Classpath" | |
- name: 'build' | |
run: './gradlew build --info --scan --stacktrace' | |
- name: 'publish' | |
run: './gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository --info --no-configuration-cache --stacktrace' |