Compare commits

..

9 Commits

Author SHA1 Message Date
29a9cb12b4 Update Terraform github to v6
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2024-02-16 19:03:35 +00:00
cc196194dd Update hashicorp/setup-terraform action to v3
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2023-10-30 11:49:12 +00:00
ce9830a968 Update all dependencies
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2023-09-04 12:25:23 +00:00
9479d68626 Update Terraform github to v5
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-10-26 18:24:39 +00:00
3b94020a30 Update Terraform remote to ~> 0.1.23
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-10-26 15:16:22 +00:00
9d85fc4335 Add .drone.yml
All checks were successful
continuous-integration/drone/push Build is passing
2022-10-26 16:17:12 +02:00
01ea8e28c7 Add .drone.yml
All checks were successful
continuous-integration/drone Build is passing
2022-10-26 11:30:47 +02:00
8c2119434b Merge pull request 'Configure Renovate' (#1) from renovate/configure into master
Reviewed-on: https://git.front.kjuulh.io/kjuulh/terraform-hcloud-kube-hetzner/pulls/1
2022-10-25 21:01:03 +00:00
b77f6c8364 Add renovate.json 2022-10-25 21:00:38 +00:00
6 changed files with 19 additions and 7 deletions

9
.drone.yml Executable file
View File

@@ -0,0 +1,9 @@
kind: pipeline
type: docker
name: "test"
steps:
- name: test
image: harbor.front.kjuulh.io/docker-proxy/library/bash:latest
commands:
- echo 'Run tests'

View File

@@ -13,7 +13,7 @@ jobs:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ncipollo/release-action@v1
with:
generateReleaseNotes: true

View File

@@ -13,9 +13,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Terraform
uses: hashicorp/setup-terraform@v2
uses: hashicorp/setup-terraform@v3
- name: Terraform Format
run: terraform fmt -check -diff
- name: Terraform Init

View File

@@ -10,11 +10,11 @@ terraform {
}
remote = {
source = "tenstad/remote"
version = "~> 0.0.23"
version = "~> 0.1.23"
}
template = {
source = "hashicorp/cloudinit"
version = "~> 2.2.0"
version = "~> 2.3.0"
}
}
}

3
renovate.json Normal file
View File

@@ -0,0 +1,3 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
}

View File

@@ -2,7 +2,7 @@ terraform {
required_providers {
github = {
source = "integrations/github"
version = ">= 4.0.0, < 5.0.0"
version = "< 7.0.0"
}
hcloud = {
source = "hetznercloud/hcloud"
@@ -14,7 +14,7 @@ terraform {
}
remote = {
source = "tenstad/remote"
version = "~> 0.0.23"
version = "~> 0.1.23"
}
}
}