Skip to content

Commit c2e5b92

Browse files
authored
fix(ci): minor fixes for workflows (#1829)
1 parent 4a17172 commit c2e5b92

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/check-e2e.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,6 @@ jobs:
6868
role-to-assume: ${{ secrets.AWS_IAM_ROLE }}
6969
aws-region: us-east-1
7070
- name: Run e2e test with Maven
71+
env:
72+
JAVA_VERSION: ${{ matrix.java }}
7173
run: mvn -DskipTests install --file pom.xml && mvn -Pe2e -B verify --file powertools-e2e-tests/pom.xml

.github/workflows/security-dependencies-check.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,6 @@ jobs:
3636
- name: Verify Contents
3737
uses: actions/dependency-review-action@3b139cfc5fae8b618d3eae3675e383bb1769c019 # v4.5.0
3838
with:
39-
config-file: './.github/dependency-review-config.yml'
39+
config-file: './.github/dependency-review-config.yml'
40+
head-ref: ${{ github.event_name == 'pull_request' && github.head_ref || github.ref_name }}
41+
base-ref: ${{ github.event_name == 'pull_request' && github.base_ref || github.ref_name }}

0 commit comments

Comments
 (0)