don't fail on vulnerabilities by default #163
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: elixir-cypress-ci | |
on: | |
push: | |
branches: | |
- 'main' | |
workflow_dispatch: | |
pull_request: | |
types: [assigned, opened, synchronize, reopened] | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build and push image otp 26 elixir 1.15 | |
uses: ./.github/actions/push-image | |
with: | |
image_name: ghcr.io/multiverse-io/elixir-cypress-ci | |
image_tag: 1.15.7-erlang-26.1.2-debian-bullseye-20231009-slim | |
context: ./elixir-cypress-ci | |
registry_password: ${{ secrets.GITHUB_TOKEN }} | |
fail_on_security_vulnerabilities: false | |
lacework_access_token: ${{ secrets.LW_ACCESS_TOKEN }} | |
build_args: | | |
ELIXIR_VERSION=1.15.7 | |
ERLANG_VERSION=26.1.2 | |
DEBIAN_VERSION=bullseye-20231009-slim | |
- name: Build and push image otp 26 elixir 1.14 | |
uses: ./.github/actions/push-image | |
with: | |
image_name: ghcr.io/multiverse-io/elixir-cypress-ci | |
image_tag: 1.14.5-erlang-26.2.5.2-debian-bookworm-20240701-slim | |
context: ./elixir-cypress-ci | |
registry_password: ${{ secrets.GITHUB_TOKEN }} | |
fail_on_security_vulnerabilities: false | |
lacework_access_token: ${{ secrets.LW_ACCESS_TOKEN }} | |
build_args: | | |
ELIXIR_VERSION=1.14.5 | |
ERLANG_VERSION=26.2.5.2 | |
DEBIAN_VERSION=bookworm-20240701-slim |