This repository has been archived by the owner on Apr 4, 2024. It is now read-only.
build(deps): bump cachix/cachix-action from 12 to 14 #920
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: "Dependency Review" | |
on: pull_request | |
permissions: | |
contents: read | |
jobs: | |
dependency-review: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: 1.19 | |
check-latest: true | |
- name: "Checkout Repository" | |
uses: actions/checkout@v3 | |
- uses: technote-space/get-diff-action@v6.1.2 | |
with: | |
PATTERNS: | | |
**/**.go | |
go.mod | |
go.sum | |
- name: "Dependency Review" | |
uses: actions/dependency-review-action@v3 | |
if: env.GIT_DIFF | |
- name: "Go vulnerability check" | |
run: make vulncheck | |
if: env.GIT_DIFF |