Skip to content

fix(deps): update module github.com/go-vela/types to v0.23.2 [security] #210

fix(deps): update module github.com/go-vela/types to v0.23.2 [security]

fix(deps): update module github.com/go-vela/types to v0.23.2 [security] #210

Workflow file for this run

---
# name of the action
name: validate
# trigger on pull_request or push events
on:
pull_request:
push:
# pipeline to execute
jobs:
validate:
runs-on: ubuntu-latest
steps:
- name: clone
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- name: install go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5
with:
# use version from go.mod file
go-version-file: "go.mod"
cache: true
check-latest: true
- name: validate
run: |
# Check that go mod tidy produces a zero diff; clean up any changes afterwards.
go mod tidy && git diff --exit-code; code=$?; git checkout -- .; (exit $code)
# Check that go vet ./... produces a zero diff; clean up any changes afterwards.
go vet ./... && git diff --exit-code; code=$?; git checkout -- .; (exit $code)
# Check that go fmt ./... produces a zero diff; clean up any changes afterwards.
go fmt ./... && git diff --exit-code; code=$?; git checkout -- .; (exit $code)
# Check that go fix ./... produces a zero diff; clean up any changes afterwards.
go fix ./... && git diff --exit-code; code=$?; git checkout -- .; (exit $code)