Skip to content
This repository has been archived by the owner on Jul 14, 2022. It is now read-only.

build(deps): bump actions/cache from 2 to 3.0.1 #178

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/acctest-terraform-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
continue-on-error: true
timeout-minutes: 2
with:
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
continue-on-error: true
timeout-minutes: 2
with:
Expand All @@ -65,7 +65,7 @@ jobs:

- run: cd tools && go install github.com/terraform-linters/tflint

- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
name: Cache plugin dir
with:
path: ~/.tflint.d/plugins
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
continue-on-error: true
timeout-minutes: 2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
continue-on-error: true
timeout-minutes: 2
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-pkg-mod-${{ hashFiles('go.sum') }}
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
- name: install tflint
run: cd tools && go install github.com/terraform-linters/tflint

- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
name: Cache plugin dir
with:
path: ~/.tflint.d/plugins
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
continue-on-error: true
timeout-minutes: 2
with:
Expand Down
36 changes: 18 additions & 18 deletions .github/workflows/terraform_provider.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
continue-on-error: true
id: cache-go-pkg-mod
timeout-minutes: 2
Expand All @@ -55,7 +55,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
continue-on-error: true
id: cache-terraform-plugin-dir
timeout-minutes: 2
Expand All @@ -74,12 +74,12 @@ jobs:
run: |
echo "GOCACHE=$(go env GOCACHE)" >> $GITHUB_ENV
- if: steps.cache-terraform-plugin-dir.outputs.cache-hit != 'true' || steps.cache-terraform-plugin-dir.outcome == 'failure'
uses: actions/cache@v2
uses: actions/cache@v3.0.1
with:
path: ${{ env.GOCACHE }}
key: ${{ runner.os }}-GOCACHE-${{ hashFiles('go.sum') }}-${{ hashFiles('internal/**') }}
- if: steps.cache-terraform-plugin-dir.outputs.cache-hit != 'true' || steps.cache-terraform-plugin-dir.outcome == 'failure'
uses: actions/cache@v2
uses: actions/cache@v3.0.1
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-pkg-mod-${{ hashFiles('go.sum') }}
Expand All @@ -93,15 +93,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
continue-on-error: true
id: cache-terraform-providers-schema
timeout-minutes: 2
with:
path: terraform-providers-schema
key: ${{ runner.os }}-terraform-providers-schema-${{ hashFiles('go.sum') }}-${{ hashFiles('internal/**') }}
- if: steps.cache-terraform-providers-schema.outputs.cache-hit != 'true' || steps.cache-terraform-providers-schema.outcome == 'failure'
uses: actions/cache@v2
uses: actions/cache@v3.0.1
timeout-minutes: 2
with:
path: terraform-plugin-dir
Expand Down Expand Up @@ -137,13 +137,13 @@ jobs:
- name: go env
run: |
echo "GOCACHE=$(go env GOCACHE)" >> $GITHUB_ENV
- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
continue-on-error: true
timeout-minutes: 2
with:
path: ${{ env.GOCACHE }}
key: ${{ runner.os }}-GOCACHE-${{ hashFiles('go.sum') }}-${{ hashFiles('aws/**') }}
- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
continue-on-error: true
timeout-minutes: 2
with:
Expand All @@ -168,13 +168,13 @@ jobs:
- name: go env
run: |
echo "GOCACHE=$(go env GOCACHE)" >> $GITHUB_ENV
- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
continue-on-error: true
timeout-minutes: 2
with:
path: ${{ env.GOCACHE }}
key: ${{ runner.os }}-GOCACHE-${{ hashFiles('go.sum') }}-${{ hashFiles('internal/**') }}
- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
continue-on-error: true
timeout-minutes: 2
with:
Expand Down Expand Up @@ -202,13 +202,13 @@ jobs:
- name: go env
run: |
echo "GOCACHE=$(go env GOCACHE)" >> $GITHUB_ENV
- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
continue-on-error: true
timeout-minutes: 2
with:
path: ${{ env.GOCACHE }}
key: ${{ runner.os }}-GOCACHE-${{ hashFiles('go.sum') }}-${{ hashFiles('internal/**') }}
- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
continue-on-error: true
timeout-minutes: 2
with:
Expand All @@ -230,13 +230,13 @@ jobs:
- name: go env
run: |
echo "GOCACHE=$(go env GOCACHE)" >> $GITHUB_ENV
- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
continue-on-error: true
timeout-minutes: 2
with:
path: ${{ env.GOCACHE }}
key: ${{ runner.os }}-GOCACHE-${{ hashFiles('go.sum') }}-${{ hashFiles('internal/**') }}
- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
continue-on-error: true
timeout-minutes: 2
with:
Expand All @@ -260,13 +260,13 @@ jobs:
- name: go env
run: |
echo "GOCACHE=$(go env GOCACHE)" >> $GITHUB_ENV
- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
continue-on-error: true
timeout-minutes: 2
with:
path: ${{ env.GOCACHE }}
key: ${{ runner.os }}-GOCACHE-${{ hashFiles('go.sum') }}-${{ hashFiles('aws/**') }}
- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
continue-on-error: true
timeout-minutes: 2
with:
Expand Down Expand Up @@ -294,14 +294,14 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
continue-on-error: true
timeout-minutes: 2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-pkg-mod-${{ hashFiles('go.sum') }}
- run: cd tools && go install github.com/bflad/tfproviderdocs
- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
timeout-minutes: 2
with:
path: terraform-providers-schema
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
continue-on-error: true
timeout-minutes: 2
with:
Expand All @@ -72,7 +72,7 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
continue-on-error: true
timeout-minutes: 2
with:
Expand All @@ -89,7 +89,7 @@ jobs:
- uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
continue-on-error: true
timeout-minutes: 2
with:
Expand All @@ -99,7 +99,7 @@ jobs:

- run: cd tools && go install github.com/terraform-linters/tflint

- uses: actions/cache@v2
- uses: actions/cache@v3.0.1
name: Cache plugin dir
with:
path: ~/.tflint.d/plugins
Expand Down