Skip to content

fix(deps): update module github.com/knadh/koanf/providers/env to v2 in go.mod #1436

fix(deps): update module github.com/knadh/koanf/providers/env to v2 in go.mod

fix(deps): update module github.com/knadh/koanf/providers/env to v2 in go.mod #1436

Workflow file for this run

name: Test
on:
pull_request:
branches: [main, develop]
types: [opened, synchronize, reopened]
push:
branches: [main, develop]
permissions:
contents: read
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-2022]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up Go
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
with:
go-version: ^1.23
cache: true
- name: Run Go Tests
run: go test -coverprofile coverage.out ./...
env:
# self-updater tests make requests to the GitHub API
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}