Skip to content

Commit 17915cd

Browse files
authored
fix build (#113)
#111 removed the default profile which caused the maven dependency step to fail. This actually uncovered a problem which is hopefully fixed
1 parent b65aef4 commit 17915cd

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/maven.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
- {druid: druid-31.0.1, java: '17'}
2525
- {druid: druid-33.0.0, java: '17'}
2626
steps:
27-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
27+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2828

2929
- name: Set up JDK
30-
uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88 # v4.3.0
30+
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
3131
with:
3232
java-version: ${{ matrix.profile.java }}
3333
distribution: 'temurin'
@@ -38,4 +38,6 @@ jobs:
3838

3939
- name: Update dependency graph
4040
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
41-
uses: advanced-security/maven-dependency-submission-action@4f64ddab9d742a4806eeb588d238e4c311a8397d # v4.1.1
41+
uses: advanced-security/maven-dependency-submission-action@aeab9f885293af501bae8bdfe88c589528ea5e25 # v4.1.2
42+
with:
43+
maven-args: '-P${{matrix.profile.druid}}'

0 commit comments

Comments
 (0)