added Docker Scout step #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and release test | |
on: | |
push: | |
branches: | |
- "feature/integrate_docker_scout_with_gitHub_actions" | |
tags: ["*"] | |
pull_request: | |
branches: ["**"] | |
env: | |
# Image repository, without hostname and tag | |
IMAGE_NAME: ${{ github.repository }} | |
SHA: ${{ github.event.pull_request.head.sha || github.event.after }} | |
permissions: | |
contents: write | |
jobs: | |
build-and-release: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
packages: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ env.SHA }} | |
- name: Set short SHA | |
id: vars | |
run: echo "SHA_SHORT=$(echo $GITHUB_SHA | cut -c1-7)" >> $GITHUB_ENV | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build and push Docker image | |
id: build-and-push | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
load: true | |
tags: "ghcr.io/${{ env.IMAGE_NAME }}:${{ env.SHA_SHORT }}" | |
- name: Authenticate to Docker | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USER }} | |
password: ${{ secrets.DOCKER_PAT }} | |
- name: Docker Scout | |
id: docker-scout | |
# if: ${{ github.event_name == 'pull_request' }} | |
uses: docker/scout-action@v1 | |
with: | |
command: compare | |
image: "gatewaydio/gatewayd:latest" | |
to: "ghcr.io/sinadarbouy/gatewayd:test" | |
ignore-unchanged: true | |
only-severities: critical,high | |
github-token: ${{ secrets.GITHUB_TOKEN }} |