Skip to content

Update module github.com/go-chi/chi/v5 to v5.2.3 #7

Update module github.com/go-chi/chi/v5 to v5.2.3

Update module github.com/go-chi/chi/v5 to v5.2.3 #7

Workflow file for this run

name: Security
on:
push:
branches: [ "**" ]
paths:
- "**.go"
- "go.mod"
- "go.sum"
- "Makefile"
- ".github/workflows/security.yml"
pull_request:
branches: [ "**" ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Set up Go 1.25.3
uses: actions/setup-go@v6
with:
go-version: '1.25.4'
cache: false # usem cache manual per controlar directoris
- name: Cache Go modules
uses: actions/cache@v4
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Security
run: |
make security