Skip to content

Commit 1efff52

Browse files
committed
Bumped binary / provider versions
1 parent 8512935 commit 1efff52

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ env:
6161
TF_INPUT: "false"
6262
TF_PLAN: "tfplan"
6363
# https://github.com/hashicorp/terraform/releases
64-
TF_VERSION: "1.0.8"
64+
TF_VERSION: "1.0.10"
6565
TF_WORKING_DIR: ./terraform
6666
# https://github.com/terraform-linters/tflint-ruleset-azurerm/releases
67-
TFLINT_RULESET_AZURERM_VERSION: "v0.13.1"
67+
TFLINT_RULESET_AZURERM_VERSION: "v0.13.2"
6868
# https://github.com/terraform-linters/tflint/releases
69-
TFLINT_VERSION: "v0.32.1"
69+
TFLINT_VERSION: "v0.33.0"
7070

7171
# Env var concatenation is currently not supported at Workflow or Job scope. See workaround below:
7272
# https://github.community/t5/GitHub-Actions/How-can-we-concatenate-multiple-env-vars-at-workflow-and-job/td-p/48489

terraform/files/scripts/argocd_config.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ARGOCD_HEALTH_CHECK_URL="https://$ARGOCD_FQDN/healthz"
1919

2020
# Install
2121
# https://github.com/argoproj/argo-cd/releases/
22-
VERSION="v2.1.5"
22+
VERSION="v2.1.6"
2323
curl -sSL -o "$ARGOCD_PATH" "https://github.com/argoproj/argo-cd/releases/download/$VERSION/argocd-linux-amd64"
2424
chmod +x "$ARGOCD_PATH"
2525

terraform/variables.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ variable "cert_manager_chart_version" {
3333
# helm search repo vmware-tanzu/velero
3434
# * also update terraform/helm/velero_values.yaml
3535
variable "velero_chart_version" {
36-
default = "2.24.0"
36+
default = "2.26.1"
3737
}
3838

3939
# https://hub.docker.com/r/velero/velero/tags
@@ -43,7 +43,7 @@ variable "velero_image_tag" {
4343

4444
# https://hub.docker.com/r/sonatype/nexus3/tags
4545
variable "nexus_image_tag" {
46-
default = "3.35.0"
46+
default = "3.36.0"
4747
}
4848

4949
# https://github.com/adamrushuk/charts/releases
@@ -90,13 +90,13 @@ variable "kured_image_tag" {
9090
# https://github.com/argoproj/argo-helm/blob/master/charts/argo-cd/Chart.yaml#L5
9191
# helm search repo argo/argo-cd
9292
variable "argocd_chart_version" {
93-
default = "3.26.1"
93+
default = "3.26.3"
9494
}
9595

9696
# https://hub.docker.com/r/argoproj/argocd/tags
9797
# * also update cli version: terraform/files/scripts/argocd_config.sh#L22
9898
variable "argocd_image_tag" {
99-
default = "v2.1.5"
99+
default = "v2.1.6"
100100
}
101101
#endregion Versions
102102

terraform/versions.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@ terraform {
2323
# https://github.com/terraform-providers/terraform-provider-azurerm/releases
2424
azurerm = {
2525
source = "hashicorp/azurerm"
26-
version = "~> 2.81.0"
26+
version = "~> 2.83.0"
2727
}
2828

2929
# https://github.com/terraform-providers/terraform-provider-azuread/releases
3030
azuread = {
3131
source = "hashicorp/azuread"
32-
version = "~> 2.7.0"
32+
version = "~> 2.8.0"
3333
}
3434

3535
# https://github.com/hashicorp/terraform-provider-kubernetes/releases
3636
kubernetes = {
3737
source = "hashicorp/kubernetes"
38-
version = "~> 2.6.0"
38+
version = "~> 2.6.1"
3939
}
4040

4141
# https://github.com/hashicorp/terraform-provider-helm/releases

0 commit comments

Comments
 (0)