mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
efea51a9ee
The reason is to cover vulnerability GO-2022-0969 Found in: net/http@go1.18.5 Fixed in: net/http@go1.19.1 More info: https://pkg.go.dev/vuln/GO-2022-0969 Signed-off-by: hagen1778 <roman@victoriametrics.com> Signed-off-by: hagen1778 <roman@victoriametrics.com>
26 lines
460 B
YAML
26 lines
460 B
YAML
name: license-check
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'vendor'
|
|
pull_request:
|
|
paths:
|
|
- 'vendor'
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Setup Go
|
|
uses: actions/setup-go@main
|
|
with:
|
|
go-version: 1.19.1
|
|
id: go
|
|
- name: Code checkout
|
|
uses: actions/checkout@master
|
|
- name: Check License
|
|
run: |
|
|
make check-licenses
|