SCAN-5585 : Use latest branch to pull updated image. #64
Workflow file for this run
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: Validate local scanner action | |
on: | |
push: | |
branches: | |
- '*' | |
- '!main' | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
permissions: | |
contents: write | |
packages: write | |
checks: write | |
id-token: write | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install modules | |
run: npm ci | |
- name: eslint | |
run: npm run lint:check | |
build-action-docker-image: | |
needs: [ lint ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/build-image | |
name: Build and publish docker image | |
with: | |
registry: ${{ env.REGISTRY }} | |
image_name: ${{ env.IMAGE_NAME }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
verify-action: | |
runs-on: ubuntu-latest | |
needs: [ build-action-docker-image ] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref || github.ref_name }} | |
- uses : ./ | |
name: Run action against repoository | |
with: | |
apiUrl: ${{ secrets.CONTRAST__API__URL }} | |
apiUserName: ${{ secrets.CONTRAST__API__USER_NAME }} | |
apiKey: ${{ secrets.CONTRAST__API__API_KEY }} | |
apiServiceKey: ${{ secrets.CONTRAST__API__SERVICE_KEY }} | |
apiOrgId: ${{ secrets.CONTRAST__API__ORGANIZATION }} | |
checks: true | |
severity: medium | |
path: src |