Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/run-ci-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f

- name: Build cspell image
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83
uses: docker/build-push-action@601a80b39c9405e50806ae38af30926f9d957c47
with:
cache-from: type=gha,scope=cspell
cache-to: type=gha,scope=cspell,mode=max
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f

- name: Build backend test image
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83
uses: docker/build-push-action@601a80b39c9405e50806ae38af30926f9d957c47
with:
cache-from: |
type=gha
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f

- name: Build frontend unit-testing image
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83
uses: docker/build-push-action@601a80b39c9405e50806ae38af30926f9d957c47
with:
cache-from: |
type=gha
Expand Down Expand Up @@ -322,7 +322,7 @@ jobs:
pg_restore -h localhost -U nest_user_e2e -d nest_db_e2e < backend/data/nest.dump

- name: Build frontend end-to-end testing image
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83
uses: docker/build-push-action@601a80b39c9405e50806ae38af30926f9d957c47
with:
cache-from: |
type=gha
Expand Down Expand Up @@ -353,7 +353,7 @@ jobs:
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f

- name: Build frontend a11y-testing image
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83
uses: docker/build-push-action@601a80b39c9405e50806ae38af30926f9d957c47
with:
cache-from: |
type=gha
Expand Down Expand Up @@ -440,7 +440,7 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build backend image
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83
uses: docker/build-push-action@601a80b39c9405e50806ae38af30926f9d957c47
with:
build-args: |
OWASP_GID=1001
Expand Down Expand Up @@ -495,7 +495,7 @@ jobs:
echo "human_readable=$DISPLAY_SIZE" >> $GITHUB_OUTPUT

- name: Build frontend image
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83
uses: docker/build-push-action@601a80b39c9405e50806ae38af30926f9d957c47
with:
cache-from: |
type=gha
Expand Down Expand Up @@ -830,7 +830,7 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build backend image
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83
uses: docker/build-push-action@601a80b39c9405e50806ae38af30926f9d957c47
with:
build-args: |
OWASP_GID=1002
Expand Down Expand Up @@ -883,7 +883,7 @@ jobs:
EOF

- name: Build frontend image
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83
uses: docker/build-push-action@601a80b39c9405e50806ae38af30926f9d957c47
with:
cache-from: |
type=gha
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-fuzz-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
echo "Data loading completed."

- name: Build Fuzz-testing image
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83
uses: docker/build-push-action@601a80b39c9405e50806ae38af30926f9d957c47
with:
cache-from: |
type=gha
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/update-nest-test-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Update backend test image
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83
uses: docker/build-push-action@601a80b39c9405e50806ae38af30926f9d957c47
with:
cache-from: |
type=gha
Expand All @@ -46,7 +46,7 @@ jobs:
tags: owasp/nest:test-backend-latest

- name: Update frontend unit test image
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83
uses: docker/build-push-action@601a80b39c9405e50806ae38af30926f9d957c47
with:
cache-from: |
type=gha
Expand All @@ -61,7 +61,7 @@ jobs:
tags: owasp/nest:test-frontend-unit-latest

- name: Update frontend end-to-end test image
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83
uses: docker/build-push-action@601a80b39c9405e50806ae38af30926f9d957c47
with:
cache-from: |
type=gha
Expand All @@ -76,7 +76,7 @@ jobs:
tags: owasp/nest:test-frontend-e2e-latest

- name: Build and push fuzz-test-backend image
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83
uses: docker/build-push-action@601a80b39c9405e50806ae38af30926f9d957c47
with:
cache-from: type=registry,ref=owasp/nest:test-fuzz-backend-cache
cache-to: |
Expand Down