Files
gibidify/scripts/deps-update.sh

13 lines
290 B
Bash
Executable File

#!/bin/sh
set -eu
echo "Updating all dependencies to latest versions..."
go get -u ./...
go mod tidy
echo ""
echo "Dependencies updated successfully!"
echo "Running tests to verify compatibility..."
go test ./...
echo ""
echo "Update complete. Run 'make lint-fix && make test' to verify."