Skip to content

Commit f0ebc9c

Browse files
author
jaygridley
committed
feat(sync): sync universal-addon changes
Signed-off-by: jaygridley <[email protected]>
1 parent 4b2d824 commit f0ebc9c

17 files changed

+78
-50
lines changed

.github/workflows/cache-warmup.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,15 @@ jobs:
4343
if: ${{ steps.asdf-cache.outputs.cache-hit != 'true' }}
4444
with:
4545
asdf_version: ${{ env.ASDF_VERSION }}
46+
47+
- name: Cache pre-commit
48+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
49+
with:
50+
path: ~/.cache/pre-commit
51+
key: ${{ runner.os }}-pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}-warmup
52+
restore-keys: ${{ runner.os }}-pre-commit-
53+
54+
- name: Run pre-commit
55+
run: pre-commit install --install-hooks
56+
env:
57+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # required for GH API calls quota

.github/workflows/pre-commit.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,13 @@ jobs:
5555
shell: bash
5656
run: asdf reshim
5757

58+
- name: Cache pre-commit
59+
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
60+
with:
61+
path: ~/.cache/pre-commit
62+
key: ${{ runner.os }}-pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
63+
restore-keys: ${{ runner.os }}-pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}-
64+
5865
- name: Run pre-commit
5966
run: pre-commit run --show-diff-on-failure --color=always --all-files
6067
env:

.github/workflows/template-sync.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
persist-credentials: false
3737

3838
- name: Sync universal-addon template
39-
uses: AndreasAugustin/actions-template-sync@bcb94410a4f1dffdfe5eaabc8234c3b8e76ebc5b # v2.5.1
39+
uses: AndreasAugustin/actions-template-sync@8ec19a5f2721ffb81ff809aa340ddf75e6a85ea6 # v2.5.2
4040
with:
4141
source_gh_token: ${{ steps.template-sync-app-token.outputs.token }}
4242
source_repo_path: lablabs/terraform-aws-eks-universal-addon

.github/workflows/validate.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
- name: Extract Terraform min/max versions
2525
id: terraform-min-max
26-
uses: clowdhaus/terraform-min-max@503e88c41953f537fc2b283a310c85e0a2cd585c # v1.4.0
26+
uses: clowdhaus/terraform-min-max@04440fe3b2a1e64eb5ad115f8f7c57c4d6a54333 # v1.4.1
2727
with:
2828
directory: .
2929
outputs:

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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: 2f8bda194a420ad77a050a9de627d77a74841fdc # v1.99.4 # pragma: allowlist secret
16+
rev: c0f51014b8ec51c4455a7dac40697be15e285668 # v1.99.5 # 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: 2f8bda194a420ad77a050a9de627d77a74841fdc # v1.99.4 # pragma: allowlist secret
43+
rev: c0f51014b8ec51c4455a7dac40697be15e285668 # v1.99.5 # pragma: allowlist secret
4444
hooks:
4545
- id: terraform_docs # should be run after luactl sync
4646
args:

.terraform-docs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ header-from: main.tf
44
footer-from: docs/.footer.md
55

66
content: |-
7+
{{ include "docs/.intro.md" }}
78
{{ .Header }}
89
{{ include "docs/.addon.md" }}
910
{{ .Requirements }}

.terraform.lock.hcl

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.tool-versions

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
terraform 1.5.7
22
terraform-docs 0.20.0
33
tflint 0.50.3
4-
checkov 3.2.447
5-
awscli 2.27.49
4+
checkov 3.2.457
5+
awscli 2.27.62
66
pre-commit 4.2.0

addon-irsa.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
module "addon-irsa" {
33
for_each = local.addon_irsa
44

5-
source = "git::https://github.com/lablabs/terraform-aws-eks-universal-addon.git//modules/addon-irsa?ref=v0.0.23"
5+
source = "git::https://github.com/lablabs/terraform-aws-eks-universal-addon.git//modules/addon-irsa?ref=v0.0.24"
66

77
enabled = var.enabled
88

addon.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ locals {
1111
}
1212

1313
module "addon" {
14-
source = "git::https://github.com/lablabs/terraform-aws-eks-universal-addon.git//modules/addon?ref=v0.0.23"
14+
source = "git::https://github.com/lablabs/terraform-aws-eks-universal-addon.git//modules/addon?ref=v0.0.24"
1515

1616
enabled = var.enabled
1717

0 commit comments

Comments
 (0)