chore: bump aws.sdk.kotlin:bom from 1.3.52 to 1.3.62 in the gradle-updates group across 1 directory #66
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: PR build CodeArtifact plugin | |
on: | |
pull_request: | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: 'temurin' | |
# https://github.com/gradle/actions/tree/main/setup-gradle | |
- name: 'Set up Gradle' | |
uses: 'gradle/actions/setup-gradle@d156388eb19639ec20ade50009f3d199ce1e2808' # v4 | |
# 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 |