Skip to content

Commit

Permalink
[DDS-1576] Fixed matrix values.
Browse files Browse the repository at this point in the history
[DDS-1576] Updated workflow name.
  • Loading branch information
GROwen committed Jul 25, 2023
1 parent 4217fcd commit 2c1e84d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
# images: [ci-builder, php-cli, mariadb, nginx, node, php-fpm, elasticsearch, mailhog, clamav, ripple-static]
images: [ci-builder, node]
images: ${{ fromJson(vars.IMAGES) }}
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/vulnerability-scan.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: vulnerability-scan
run-name: Scan published images using Clair.
run-name: Scan published images for vulnerabilities.
env:
REGISTRY: ghcr.io
on: push
Expand All @@ -15,8 +15,8 @@ jobs:
continue-on-error: true
strategy:
matrix:
images: ${{ vars.IMAGES }}
branches: ${{ vars.BRANCHES }}
images: ${{ fromJson(vars.IMAGES) }}
branches: ${{ fromJson(vars.BRANCHES) }}
steps:
- name: Scan for vulnerabilities
id: scan
Expand Down

0 comments on commit 2c1e84d

Please sign in to comment.