Skip to content

Commit 5736050

Browse files
committed
possible fix for lint & adding custom URL to service check batch
1 parent 18e7f96 commit 5736050

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/actions/custom-gradle-distribution-url/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
name: Use Custom Gradle Distribution URL
1+
name: Configure gradle distribution URL
22
description: >
33
Configures the gradle distribution URL to our custom URL
44
55
runs:
66
using: composite
77
steps:
8-
- name: Checkout tools
8+
- name: Configure gradle distribution URL
99
working-directory: aws-sdk-kotlin
1010
run: |
1111
# Keep gradle version in sync with aws-sdk-kotlin/gradle/wrapper/gradle-wrapper.properties

.github/workflows/codebuild-ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@ jobs:
8585
with:
8686
role-to-assume: ${{ secrets.CI_AWS_ROLE_ARN }}
8787
aws-region: us-west-2
88+
- name: Configure Gradle
89+
uses: ./aws-sdk-kotlin/.github/actions/custom-gradle-distribution-url
8890
- name: Run Service Check Batch and Calculate Artifact Size Metrics
8991
id: svc-check-batch
9092
run: |

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
steps:
2222
- name: Checkout sources
2323
uses: actions/checkout@v4
24-
with:
25-
path: 'aws-sdk-kotlin'
2624
- name: Configure Gradle
2725
uses: ./aws-sdk-kotlin/.github/actions/custom-gradle-distribution-url
2826
- name: Lint ${{ env.PACKAGE_NAME }}
2927
run: |
28+
pwd
29+
ls
3030
./gradlew ktlint

0 commit comments

Comments
 (0)