We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a17172 commit c2e5b92Copy full SHA for c2e5b92
.github/workflows/check-e2e.yml
@@ -68,4 +68,6 @@ jobs:
68
role-to-assume: ${{ secrets.AWS_IAM_ROLE }}
69
aws-region: us-east-1
70
- name: Run e2e test with Maven
71
+ env:
72
+ JAVA_VERSION: ${{ matrix.java }}
73
run: mvn -DskipTests install --file pom.xml && mvn -Pe2e -B verify --file powertools-e2e-tests/pom.xml
.github/workflows/security-dependencies-check.yml
@@ -36,4 +36,6 @@ jobs:
36
- name: Verify Contents
37
uses: actions/dependency-review-action@3b139cfc5fae8b618d3eae3675e383bb1769c019 # v4.5.0
38
with:
39
- config-file: './.github/dependency-review-config.yml'
+ 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