diff --git a/.github/workflows/js.yaml b/.github/workflows/js.yaml index 8074f7a..c352f05 100644 --- a/.github/workflows/js.yaml +++ b/.github/workflows/js.yaml @@ -45,7 +45,7 @@ jobs: - if: inputs.cacheEnabled name: Cache dependencies id: npm-cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ./node_modules key: npm-modules-${{ hashFiles('package-lock.json') }} diff --git a/.github/workflows/npm.yaml b/.github/workflows/npm.yaml index 0d8b8b3..38b322d 100644 --- a/.github/workflows/npm.yaml +++ b/.github/workflows/npm.yaml @@ -85,7 +85,7 @@ jobs: - if: inputs.cacheEnabled name: Cache dependencies id: npm-cache - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ./node_modules key: npm-modules-${{ hashFiles('package-lock.json') }} diff --git a/.github/workflows/terraform.yaml b/.github/workflows/terraform.yaml index 091aab2..161f4e3 100644 --- a/.github/workflows/terraform.yaml +++ b/.github/workflows/terraform.yaml @@ -35,7 +35,7 @@ jobs: - name: Terraform Format run: terraform fmt -recursive -check - name: Cache plugin dir - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.tflint.d/plugins key: tflint-${{ hashFiles('.tflint.hcl') }}