File tree Expand file tree Collapse file tree 1 file changed +5
-8
lines changed
Expand file tree Collapse file tree 1 file changed +5
-8
lines changed Original file line number Diff line number Diff line change 44 test :
55 strategy :
66 matrix :
7- go-version : [1.19 .x, 1.20 .x]
7+ go-version : [1.24 .x, 1.25 .x]
88 runs-on : ubuntu-latest
99 steps :
1010 - name : Install Go
11- uses : actions/setup-go@v3
11+ uses : actions/setup-go@v6
1212 with :
1313 go-version : ${{ matrix.go-version }}
14- - uses : actions/checkout@v3
14+ - uses : actions/checkout@v5
1515 with :
1616 path : ' ./src/github.com/kevinburke/go-bindata'
17- - uses : actions/cache@v3
17+ - uses : actions/cache@v4
1818 with :
1919 path : /home/runner/.cache
2020 key : ${{ runner.os }}-go-v3-${{ hashFiles('**/*.go') }}
2121 restore-keys : |
2222 ${{ runner.os }}-go-v3-
2323 # staticcheck needs this for GOPATH
2424 - run : |
25- echo "GO111MODULE=off " >> $GITHUB_ENV
25+ echo "GO111MODULE=on " >> $GITHUB_ENV
2626 echo "GOPATH=$GITHUB_WORKSPACE" >> $GITHUB_ENV
2727 echo "PATH=$GITHUB_WORKSPACE/bin:$PATH" >> $GITHUB_ENV
2828 echo "DEBIAN_FRONTEND=noninteractive" >> $GITHUB_ENV
29- - name : Download dependencies
30- run : go get -t -v ./...
31- working-directory : ' ./src/github.com/kevinburke/go-bindata'
3229 - name : Run tests
3330 run : rm -f ${GOPATH}/bin/go-bindata && make ci
3431 working-directory : ' ./src/github.com/kevinburke/go-bindata'
You can’t perform that action at this time.
0 commit comments