mirror of
https://github.com/awalsh128/cache-apt-pkgs-action.git
synced 2025-12-25 04:41:27 +00:00
- Major refactor of project structure and workflows - Replaced legacy scripts and commands with new Go implementation - Updated and added CI/CD workflows - Added new configuration and linting files - Removed deprecated files and test logs - Updated documentation and action metadata This is an initial, non-working draft for v2.0. Further testing and fixes required.
20 lines
413 B
Modula-2
20 lines
413 B
Modula-2
module awalsh128.com/cache-apt-pkgs-action
|
|
|
|
go 1.23
|
|
|
|
toolchain go1.23.4
|
|
|
|
require (
|
|
github.com/bluet/syspkg v0.1.5
|
|
github.com/stretchr/testify v1.10.0
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|
|
|
|
// Replace the syspkg module with your local version
|
|
replace github.com/bluet/syspkg => /home/awalsh128/syspkg
|