Skip to content

chore(deps): Bump aquasecurity/trivy-action from 0.16.1 to 0.17.0 (#56) #46

chore(deps): Bump aquasecurity/trivy-action from 0.16.1 to 0.17.0 (#56)

chore(deps): Bump aquasecurity/trivy-action from 0.16.1 to 0.17.0 (#56) #46

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Tests
permissions: {}
on:
pull_request:
branches:
- main
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version-file: go.mod
cache-dependency-path: go.sum
# - name: Create test cluster
# run: |
# set -e
# make kind-cluster
- name: Run tests
run: |
set -e
make tests
- name: Upload Report to Codecov
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4
with:
files: ./coverage.out
fail_ci_if_error: true
verbose: true
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
required:
needs:
- unit-tests
runs-on: ubuntu-latest
steps:
- run: echo "Required jobs success!"