Skip to content

Commit

Permalink
Merge branch 'somerset-inc:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
pdrakesnyk authored Oct 21, 2024
2 parents 6ef2e48 + ff81cef commit 1e5d398
Showing 1 changed file with 25 additions and 14 deletions.
39 changes: 25 additions & 14 deletions .github/workflows/container-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,41 @@ on:
branches:
- master

env:
IMAGE_NAME: troysnyk/snyk-juice-shop

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master

# - name: Set up QEMU
# uses: docker/setup-qemu-action@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

# - name: Login to Docker Hub
# uses: docker/login-action@v3
# with:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Extract metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.IMAGE_NAME }}
tags: linux

# - name: Build and push
# uses: docker/build-push-action@v5
# with:
# push: true
# tags: troysnyk/snyk-juice-shop:linux
- name: Build and push
uses: docker/build-push-action@v6
with:
push: true
provenance: mode=max
tags: ${{ steps.meta.outputs.tags }}

- uses: snyk/actions/setup@master
- name: Snyk Container Monitor
Expand Down

0 comments on commit 1e5d398

Please sign in to comment.