1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2024-11-24 08:12:38 +02:00

Remove redundant actions/cache from GH Actions since actions/setup-go has built-in caching

This commit is contained in:
DarthSim 2024-02-16 21:00:37 +03:00
parent ce014afca2
commit 665e6f29ab
2 changed files with 0 additions and 14 deletions

View File

@ -22,13 +22,6 @@ jobs:
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Cache mods
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}
- name: Download mods
run: go mod download
- name: Lint

View File

@ -22,13 +22,6 @@ jobs:
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Cache mods
uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}
- name: Download mods
run: go mod download
- name: Test