mod: update dependencies; do not automatically update dependencies in builds
All checks were successful
Go Project Action / Spell-check and test go project (push) Successful in 55s
Release Go Application / Release go project (release) Successful in 1m6s

This commit is contained in:
2025-11-08 12:41:47 +01:00
parent a016b15508
commit 2e774e9623
3 changed files with 3 additions and 3 deletions

View File

@@ -23,7 +23,7 @@ jobs:
with:
config: ./.typos-config
- name: Install dependencies
run: go get -u .
run: go get .
- name: Run tests
run: go test ./...
- name: Build

View File

@@ -22,6 +22,6 @@ jobs:
with:
config: ./.typos-config
- name: Install dependencies
run: go get -u .
run: go get .
- name: Run tests
run: go test ./...