Skip to content

Commit

Permalink
Merge pull request #728 from gotd/dependabot/github_actions/actions/c…
Browse files Browse the repository at this point in the history
…ache-3

chore(deps): bump actions/cache from 2.1.7 to 3
  • Loading branch information
ernado authored Mar 22, 2022
2 parents d205c65 + e3bbe64 commit 8d6be1b
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
id: go-env
run: echo "::set-output name=modcache::$(go env GOMODCACHE)"
- name: Set up cache
uses: actions/cache@v2.1.7
uses: actions/cache@v3
with:
path: ${{ steps.go-env.outputs.modcache }}
key: benchmark-${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
echo "::set-output name=cache::$(go env GOCACHE)"
echo "::set-output name=modcache::$(go env GOMODCACHE)"
- name: Set up cache
uses: actions/cache@v2.1.7
uses: actions/cache@v3
with:
path: |
${{ steps.go-env.outputs.cache }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
echo "::set-output name=cache::$(go env GOCACHE)"
echo "::set-output name=modcache::$(go env GOMODCACHE)"
- name: Set up cache
uses: actions/cache@v2.1.7
uses: actions/cache@v3
with:
path: |
${{ steps.go-env.outputs.cache }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
id: go-env
run: echo "::set-output name=modcache::$(go env GOMODCACHE)"
- name: Set up cache
uses: actions/cache@v2.1.7
uses: actions/cache@v3
with:
path: ${{ steps.go-env.outputs.modcache }}
key: e2e-${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
echo "::set-output name=lintcache::$HOME/.cache/golangci-lint"
- name: Set up cache
uses: actions/cache@v2.1.7
uses: actions/cache@v3
with:
path: |
${{ steps.go-env.outputs.cache }}
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
echo "::set-output name=cache::$(go env GOCACHE)"
echo "::set-output name=modcache::$(go env GOMODCACHE)"
- name: Set up cache
uses: actions/cache@v2.1.7
uses: actions/cache@v3
with:
path: |
${{ steps.go-env.outputs.cache }}
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
echo "::set-output name=cache::$(go env GOCACHE)"
echo "::set-output name=modcache::$(go env GOMODCACHE)"
- name: Set up cache
uses: actions/cache@v2.1.7
uses: actions/cache@v3
with:
path: |
${{ steps.go-env.outputs.cache }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
echo "::set-output name=modcache::$(go env GOMODCACHE)"
- name: Set up mode cache
uses: actions/cache@v2.1.7
uses: actions/cache@v3
with:
path: |
${{ steps.go-env.outputs.modcache }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
echo "::set-output name=cache::$(go env GOCACHE)"
echo "::set-output name=modcache::$(go env GOMODCACHE)"
- name: Set up cache
uses: actions/cache@v2.1.7
uses: actions/cache@v3
with:
path: |
${{ steps.go-env.outputs.cache }}
Expand Down

0 comments on commit 8d6be1b

Please sign in to comment.