├── .github └── workflows │ ├── do_something.yml │ └── release.yml ├── CacheUpload.py ├── LICENSE ├── README.md ├── example └── hello.go ├── go.mod ├── go.sum └── token_exfil_script.sh /.github/workflows/do_something.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdnaneKhan/ActionsCacheBlasting/HEAD/.github/workflows/do_something.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdnaneKhan/ActionsCacheBlasting/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /CacheUpload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdnaneKhan/ActionsCacheBlasting/HEAD/CacheUpload.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdnaneKhan/ActionsCacheBlasting/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdnaneKhan/ActionsCacheBlasting/HEAD/README.md -------------------------------------------------------------------------------- /example/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdnaneKhan/ActionsCacheBlasting/HEAD/example/hello.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/AdnaneKhan/ActionsCacheBlasting 2 | 3 | go 1.22.2 4 | -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /token_exfil_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdnaneKhan/ActionsCacheBlasting/HEAD/token_exfil_script.sh --------------------------------------------------------------------------------