Skip to content

chore: bump codfish/semantic-release-action from 3.5.0 to 4.0.0 in /.… #49

chore: bump codfish/semantic-release-action from 3.5.0 to 4.0.0 in /.…

chore: bump codfish/semantic-release-action from 3.5.0 to 4.0.0 in /.… #49

Workflow file for this run

---
name: odize pull request pipeline.
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
scans:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Run Trivy vulnerability scanner in fs mode
uses: aquasecurity/trivy-action@master
with:
scan-type: 'fs'
scan-ref: '.'
trivy-config: trivy.yaml
golang:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup golang
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: install tools
run: make tools-get
- name: test + lint + scan
run: make ci