Skip to content

Commit

Permalink
1.0.67 Improve build resiliency
Browse files Browse the repository at this point in the history
  • Loading branch information
webpwnized committed Aug 15, 2024
1 parent da41bba commit a4ced6d
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/scan-application-with-stackhawk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
run: |
# Starting containers using Docker Compose.
docker compose -f .build/docker-compose.yml up --build --detach
docker compose --file .build/docker-compose.yml up --build --detach
# Step 4: Load Users into LDAP Directory
- name: Load Users into LDAP Directory
Expand Down Expand Up @@ -78,7 +78,13 @@ jobs:
# This should return the index.php home page content
curl http://127.0.0.1:8888/;
# Step 7: Run StackHawk Scan
# Step 7: Set up Java for StackHawk
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'

# Step 8: Run StackHawk Scan
- name: Run StackHawk Scan
uses: stackhawk/hawkscan-action@main
with:
Expand Down

0 comments on commit a4ced6d

Please sign in to comment.