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: with:
config: ./.typos-config config: ./.typos-config
- name: Install dependencies - name: Install dependencies
run: go get -u . run: go get .
- name: Run tests - name: Run tests
run: go test ./... run: go test ./...
- name: Build - name: Build

View File

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

2
go.mod
View File

@@ -7,6 +7,7 @@ require (
github.com/charmbracelet/ssh v0.0.0-20250826160808-ebfa259c7309 github.com/charmbracelet/ssh v0.0.0-20250826160808-ebfa259c7309
github.com/charmbracelet/wish v1.4.7 github.com/charmbracelet/wish v1.4.7
github.com/spf13/viper v1.21.0 github.com/spf13/viper v1.21.0
golang.org/x/crypto v0.43.0
) )
require ( require (
@@ -45,7 +46,6 @@ require (
github.com/subosito/gotenv v1.6.0 // indirect github.com/subosito/gotenv v1.6.0 // indirect
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
go.yaml.in/yaml/v3 v3.0.4 // indirect go.yaml.in/yaml/v3 v3.0.4 // indirect
golang.org/x/crypto v0.43.0 // indirect
golang.org/x/exp v0.0.0-20251023183803-a4bb9ffd2546 // indirect golang.org/x/exp v0.0.0-20251023183803-a4bb9ffd2546 // indirect
golang.org/x/sys v0.37.0 // indirect golang.org/x/sys v0.37.0 // indirect
golang.org/x/text v0.30.0 // indirect golang.org/x/text v0.30.0 // indirect