This commit is contained in:
Braydon 2023-08-06 01:39:35 -04:00
parent cbaa167f64
commit 10000b82e5

@ -5,8 +5,8 @@ on:
env: env:
GOPROXY: https://goproxy.io,direct GOPROXY: https://goproxy.io,direct
GOPATH: go_path GOPATH: /home/rootless/go_path
GOCACHE: go_cache GOCACHE: /home/rootless/go_cache
jobs: jobs:
lint: lint:
@ -17,7 +17,7 @@ jobs:
id: cache-go-path id: cache-go-path
uses: https://github.com/actions/cache@v3 uses: https://github.com/actions/cache@v3
with: with:
path: go_path path: /home/rootless/go_path
key: go_path-${{ github.repository }}-${{ github.ref_name }} key: go_path-${{ github.repository }}-${{ github.ref_name }}
restore-keys: | restore-keys: |
go_path-${{ github.repository }}- go_path-${{ github.repository }}-
@ -26,7 +26,7 @@ jobs:
id: cache-go-cache id: cache-go-cache
uses: https://github.com/actions/cache@v3 uses: https://github.com/actions/cache@v3
with: with:
path: go_cache path: /home/rootless/go_cache
key: go_cache-${{ github.repository }}-${{ github.ref_name }} key: go_cache-${{ github.repository }}-${{ github.ref_name }}
restore-keys: | restore-keys: |
go_cache-${{ github.repository }}- go_cache-${{ github.repository }}-