This repository has been archived by the owner on Apr 4, 2024. It is now read-only.
build(deps): bump golang.org/x/net from 0.9.0 to 0.17.0 #904
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: "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 |