Skip to content

Commit b384f2f

Browse files
committed
fix(gh actions): Bump GH Actions versions (need node 16)
1 parent 7c9241a commit b384f2f

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: "checkout :: terraform module :: docker registry"
13-
uses: actions/checkout@v1
13+
uses: actions/checkout@v3
1414
- name: "install :: nodejs setup"
15-
uses: actions/setup-node@v1
15+
uses: actions/setup-node@v3
1616
with:
17-
node-version: 14
17+
node-version: 16
1818
- name: "install :: release dependencies"
1919
run: |
2020
npm install @semantic-release/commit-analyzer

.github/workflows/terraform.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
2020

2121
- name: Setup Terraform
22-
uses: hashicorp/setup-terraform@v1
22+
uses: hashicorp/setup-terraform@v2
2323
# with:
2424
# terraform_version: ${{ env.TERRAFORM_VERSION }} ## Use the latest version
2525
# cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }}
@@ -96,16 +96,16 @@ jobs:
9696
runs-on: ubuntu-latest
9797
steps:
9898
- name: Checkout
99-
uses: actions/checkout@v2
99+
uses: actions/checkout@v3
100100

101101
- name: Cache plugin dir
102-
uses: actions/cache@v2
102+
uses: actions/cache@v3
103103
with:
104104
path: ~/.tflint.d/plugins
105105
key: ubuntu-latest-tflint-${{ hashFiles('.tflint.hcl') }}
106106

107107
- name: Setup TFLint
108-
uses: terraform-linters/setup-tflint@v1
108+
uses: terraform-linters/setup-tflint@v3
109109
with:
110110
tflint_version: "v${{ env.TFLINT_VERSION }}"
111111
github_token: ${{ secrets.GITHUB_TOKEN }}
@@ -124,7 +124,7 @@ jobs:
124124
runs-on: ubuntu-latest
125125
steps:
126126
- name: Checkout
127-
uses: actions/checkout@v2
127+
uses: actions/checkout@v3
128128
with:
129129
ref: ${{ github.event.pull_request.head.ref }}
130130

0 commit comments

Comments
 (0)