Skip to content

chore: Fix golang.org/x/text vulnerability #685

chore: Fix golang.org/x/text vulnerability

chore: Fix golang.org/x/text vulnerability #685

name: pull-runtime-watcher
on: [pull_request, workflow_dispatch]
jobs:
lint-build-test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./runtime-watcher
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21'
cache: false
- name: Lint
uses: golangci/golangci-lint-action@v6.1.0
with:
version: v1.60.3
args: --verbose
working-directory: ./runtime-watcher
- name: Build
run: go build -v -o bin/webhook main.go
- name: Test
run: make test