chore(deps): bump github.com/go-playground/validator/v10 from 10.22.0 to 10.22.1 #9194
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: FOSSA | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
env: | |
fossa-key: 9e722f2c8904586d61f97f0bf05a99e4 # This is a public key only for pushing, it's safe here | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5 | |
with: | |
go-version: "1.22" | |
- run: go version | |
- name: Get branch name | |
id: branch-name | |
uses: tj-actions/branch-names@v8 | |
- uses: fossas/fossa-action@main | |
name: Scanning with FOSSA | |
with: | |
api-key: ${{ env.fossa-key }} | |
branch: ${{ steps.branch-name.outputs.current_branch }} | |
- uses: fossas/fossa-action@main | |
name: Executing tests with FOSSA | |
with: | |
api-key: ${{ env.fossa-key }} | |
run-tests: true |