Skip to content

Merge pull request #4578 from gofiber/fix/cache-single-store-clock-read #7317

Merge pull request #4578 from gofiber/fix/cache-single-store-clock-read

Merge pull request #4578 from gofiber/fix/cache-single-store-clock-read #7317

Workflow file for this run

name: Run govulncheck
on:
workflow_dispatch:
push:
branches:
- main
paths-ignore:
- "**/*.md"
pull_request:
paths-ignore:
- "**/*.md"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
govulncheck-check:
runs-on: blacksmith-4vcpu-ubuntu-2404
timeout-minutes: 15
env:
GO111MODULE: on
steps:
- name: Fetch Repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Install Go
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version: "stable"
check-latest: true
- name: Install Govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
- name: Run Govulncheck
run: govulncheck ./...