Skip to content

Commit 7cfef26

Browse files
lara-template-sync[bot]jaygridley
andauthored
feat(sync): sync universal-addon changes (#14)
Merge https://github.com/lablabs/terraform-aws-eks-universal-addon 7c59fb4 Signed-off-by: jaygridley <github-action@actions-template-sync.noreply.github.com> Co-authored-by: jaygridley <github-action@actions-template-sync.noreply.github.com>
1 parent 9d47c90 commit 7cfef26

6 files changed

Lines changed: 23 additions & 23 deletions

File tree

.github/workflows/cache-warmup.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ jobs:
1616
runs-on: ubuntu-24.04
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
19+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
2020
with:
2121
persist-credentials: false
2222

2323
- name: Setup ASDF
24-
uses: asdf-vm/actions/setup@1902764435ca0dd2f3388eea723a4f92a4eb8302 # v4.0.0
24+
uses: asdf-vm/actions/setup@b7bcd026f18772e44fe1026d729e1611cc435d47 # v4.0.1
2525
with:
2626
asdf_version: ${{ env.ASDF_VERSION }}
2727

2828
- name: Cache ASDF
29-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
29+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
3030
id: asdf-cache
3131
with:
3232
# https://github.com/asdf-vm/asdf/blob/master/.gitignore
@@ -39,13 +39,13 @@ jobs:
3939
restore-keys: ${{ runner.os }}-asdf-
4040

4141
- name: Install ASDF
42-
uses: asdf-vm/actions/install@1902764435ca0dd2f3388eea723a4f92a4eb8302 # v4.0.0
42+
uses: asdf-vm/actions/install@b7bcd026f18772e44fe1026d729e1611cc435d47 # v4.0.1
4343
if: ${{ steps.asdf-cache.outputs.cache-hit != 'true' }}
4444
with:
4545
asdf_version: ${{ env.ASDF_VERSION }}
4646

4747
- name: Cache pre-commit
48-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
48+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
4949
with:
5050
path: ~/.cache/pre-commit
5151
key: ${{ runner.os }}-pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}-warmup

.github/workflows/pre-commit.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ jobs:
2323
runs-on: ubuntu-24.04
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
26+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
2727
with:
2828
persist-credentials: false
2929

3030
- name: Setup ASDF
31-
uses: asdf-vm/actions/setup@1902764435ca0dd2f3388eea723a4f92a4eb8302 # v4.0.0
31+
uses: asdf-vm/actions/setup@b7bcd026f18772e44fe1026d729e1611cc435d47 # v4.0.1
3232
with:
3333
asdf_version: ${{ env.ASDF_VERSION }}
3434

3535
- name: Cache ASDF
36-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
36+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
3737
id: asdf-cache
3838
with:
3939
# https://github.com/asdf-vm/asdf/blob/master/.gitignore
@@ -46,7 +46,7 @@ jobs:
4646
restore-keys: ${{ runner.os }}-asdf-${{ hashFiles('.tool-versions') }}-
4747

4848
- name: Install ASDF
49-
uses: asdf-vm/actions/install@1902764435ca0dd2f3388eea723a4f92a4eb8302 # v4.0.0
49+
uses: asdf-vm/actions/install@b7bcd026f18772e44fe1026d729e1611cc435d47 # v4.0.1
5050
if: ${{ steps.asdf-cache.outputs.cache-hit != 'true' }}
5151
with:
5252
asdf_version: ${{ env.ASDF_VERSION }}
@@ -56,7 +56,7 @@ jobs:
5656
run: asdf reshim
5757

5858
- name: Cache pre-commit
59-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
59+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
6060
with:
6161
path: ~/.cache/pre-commit
6262
key: ${{ runner.os }}-pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}

.github/workflows/template-sync.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
owner: ${{ github.repository_owner }}
3131

3232
- name: Checkout
33-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
33+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
3434
with:
3535
token: ${{ steps.template-sync-app-token.outputs.token }} # needed for private repositories
3636
persist-credentials: false
@@ -54,12 +54,12 @@ jobs:
5454
is_pr_cleanup: true
5555

5656
- name: Setup ASDF
57-
uses: asdf-vm/actions/setup@1902764435ca0dd2f3388eea723a4f92a4eb8302 # v4.0.0
57+
uses: asdf-vm/actions/setup@b7bcd026f18772e44fe1026d729e1611cc435d47 # v4.0.1
5858
with:
5959
asdf_version: ${{ env.ASDF_VERSION }}
6060

6161
- name: Cache ASDF
62-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
62+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
6363
id: asdf-cache
6464
with:
6565
# https://github.com/asdf-vm/asdf/blob/master/.gitignore
@@ -72,7 +72,7 @@ jobs:
7272
restore-keys: ${{ runner.os }}-asdf-${{ hashFiles('.tool-versions') }}-
7373

7474
- name: Install ASDF
75-
uses: asdf-vm/actions/install@1902764435ca0dd2f3388eea723a4f92a4eb8302 # v4.0.0
75+
uses: asdf-vm/actions/install@b7bcd026f18772e44fe1026d729e1611cc435d47 # v4.0.1
7676
if: ${{ steps.asdf-cache.outputs.cache-hit != 'true' }}
7777
with:
7878
asdf_version: ${{ env.ASDF_VERSION }}

.github/workflows/validate.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
20+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
2121
with:
2222
persist-credentials: false
2323

@@ -40,7 +40,7 @@ jobs:
4040
- ${{ needs.extract-version.outputs.maxVersion }}
4141
steps:
4242
- name: Checkout
43-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
43+
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
4444
with:
4545
persist-credentials: false
4646

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
33
# renovate: datasource=github-tags depName=pre-commit/pre-commit-hooks
4-
rev: cef0300fd0fc4d2a87a85fa2093c6b283ea36f4b # v5.0.0 # pragma: allowlist secret
4+
rev: 3e8a8703264a2f4a69428a0aa4dcb512790b2c8c # v6.0.0 # pragma: allowlist secret
55
hooks:
66
- id: trailing-whitespace
77
args: ["--markdown-linebreak-ext=md"]
@@ -13,7 +13,7 @@ repos:
1313

1414
- repo: https://github.com/antonbabenko/pre-commit-terraform
1515
# renovate: datasource=github-releases depName=antonbabenko/pre-commit-terraform
16-
rev: c0f51014b8ec51c4455a7dac40697be15e285668 # v1.99.5 # pragma: allowlist secret
16+
rev: d0e12caebb2ab0ee8bf98181c8bfe9702bca103d # v1.105.0 # pragma: allowlist secret
1717
hooks:
1818
- id: terraform_validate
1919
- id: terraform_fmt
@@ -40,7 +40,7 @@ repos:
4040

4141
- repo: https://github.com/antonbabenko/pre-commit-terraform
4242
# renovate: datasource=github-releases depName=antonbabenko/pre-commit-terraform
43-
rev: c0f51014b8ec51c4455a7dac40697be15e285668 # v1.99.5 # pragma: allowlist secret
43+
rev: d0e12caebb2ab0ee8bf98181c8bfe9702bca103d # v1.105.0 # pragma: allowlist secret
4444
hooks:
4545
- id: terraform_docs # should be run after luactl sync
4646
args:
@@ -56,6 +56,6 @@ repos:
5656

5757
- repo: https://github.com/zizmorcore/zizmor-pre-commit
5858
# renovate: datasource=github-releases depName=zizmorcore/zizmor-pre-commit
59-
rev: 69fa534d69454f44ddd4451b5e2da7a1c48e525b # v1.11.0 # pragma: allowlist secret
59+
rev: 7fc963270df722f37707d47ff41265fe8f460822 # v1.20.0 # pragma: allowlist secret
6060
hooks:
6161
- id: zizmor

.tool-versions

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
terraform 1.5.7
2-
terraform-docs 0.20.0
2+
terraform-docs 0.21.0
33
tflint 0.50.3
4-
checkov 3.2.457
4+
checkov 3.2.497
55
awscli 2.27.62
6-
pre-commit 4.2.0
6+
pre-commit 4.5.1

0 commit comments

Comments
 (0)