fix: remediate default branch dependency alerts

This commit is contained in:
rcourtman
2026-04-09 09:55:37 +01:00
parent b8e534c1eb
commit b017f8edcd
12 changed files with 42 additions and 47 deletions
+3 -3
View File
@@ -140,7 +140,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
go-version-file: go.mod
cache: true
- name: Run backend tests
@@ -239,7 +239,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
go-version-file: go.mod
cache: true
- name: Build Pulse Docker image for integration tests
@@ -309,7 +309,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
go-version-file: go.mod
cache: true
- name: Set up Node.js
+1 -1
View File
@@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
go-version-file: go.mod
cache: true
- name: Set up Node.js
+1
View File
@@ -57,6 +57,7 @@ jobs:
- name: Build Docker images for test environment
run: |
docker build -t pulse:test --target runtime .
docker build -t pulse-mock-github:test ./tests/integration/mock-github-server
env:
PULSE_LICENSE_PUBLIC_KEY: ${{ secrets.PULSE_LICENSE_PUBLIC_KEY }}
+2 -2
View File
@@ -75,7 +75,7 @@ jobs:
docker build -t pulse-mock-github:test ./mock-github-server
# Build Pulse test image
cd ../../
docker build -t pulse:test --target runtime ../../
env:
PULSE_LICENSE_PUBLIC_KEY: ${{ secrets.PULSE_LICENSE_PUBLIC_KEY }}
@@ -89,7 +89,7 @@ jobs:
run: |
docker compose -f docker-compose.test.yml up -d --wait
npx playwright test tests/00-diagnostic.spec.ts --reporter=list,html
UPDATE_API_BASE_URL=http://localhost:7655 go test ../../tests/integration/api -run TestUpdateFlowIntegration -count=1
UPDATE_API_BASE_URL=http://127.0.0.1:7655 go test ../../tests/integration/api -run TestUpdateFlowIntegration -count=1
docker compose -f docker-compose.test.yml down -v
- name: Upload test results