Skip to content

chore(deps): bump github.com/go-git/go-git/v5 from 5.17.0 to 5.19.0 #32

chore(deps): bump github.com/go-git/go-git/v5 from 5.17.0 to 5.19.0

chore(deps): bump github.com/go-git/go-git/v5 from 5.17.0 to 5.19.0 #32

Workflow file for this run

name: CI
on:
push:
branches:
- main
- dev
pull_request:
branches:
- dev
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: "Lint"
if: ${{ !endsWith(github.actor, '[bot]') }}
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-go@v6
with:
go-version: "1.25"
cache: true
- uses: golangci/golangci-lint-action@v9
with:
version: latest
args: --config=.golangci.yaml
- uses: ibiqlik/action-yamllint@v3
with:
file_or_dir: .
config_file: .yamllint.yaml
- name: Run go vet
run: go vet ./...
- name: Run trufflehog
uses: trufflesecurity/trufflehog@main
with:
path: ./
base: "${{ github.event.pull_request.base.sha || github.event.before }}"
head: "${{ github.event.pull_request.head.sha || github.sha }}"
extra_args: --debug --only-verified
- name: Install gosec
run: |
go install github.com/securego/gosec/v2/cmd/gosec@latest
echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
- name: Run gosec
run: gosec ./...
- name: Run typos
uses: crate-ci/typos@v1