Skip to content

Bump github.com/go-git/go-git/v5 from 5.16.4 to 5.16.5 #50

Bump github.com/go-git/go-git/v5 from 5.16.4 to 5.16.5

Bump github.com/go-git/go-git/v5 from 5.16.4 to 5.16.5 #50

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
types: [ opened, synchronize, reopened ]
permissions: {} # No default permissions
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
with:
persist-credentials: false
- name: Setup Go
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
with:
go-version: 'stable'
cache: false
- name: Test
run: |
make lint
make test
make build