Skip to content

chore(deps): pin dependencies #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/host_01_production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,25 +23,25 @@ jobs:
steps:

- name: Checkout 🔔
uses: actions/checkout@v4
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4

- name: Map Secrets to Environment Variables 🗺️
uses: oNaiPs/secrets-to-env-action@v1.5
uses: oNaiPs/secrets-to-env-action@ec46a22bfc9b37e014b627b3208b07eb8909ea0f # v1.5
with:
secrets: ${{ toJSON(secrets) }}

- name: Replace Tokens 🪙
uses: cschleiden/replace-tokens@v1.3
uses: cschleiden/replace-tokens@4d5a042c84c3568b3858b7af9394923d2d5195c9 # v1.3
with:
files: '["./production/host_01/**/*"]'

- name: Install NodeJS 🖥️
uses: actions/setup-node@v4
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
node-version: 20

- name: Install Terraform ⛰️
uses: hashicorp/setup-terraform@v3
uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3

- name: Terraform Init 🏃
id: terraformInit
Expand All @@ -55,7 +55,7 @@ jobs:
working-directory: ./production/host_01

- name: Cache Terraform Plan 📦
uses: actions/cache/save@v4.0.2
uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
path: ./production/host_01/**
key: ${{ github.sha }}
Expand All @@ -71,21 +71,21 @@ jobs:
steps:

- name: Checkout 🔔
uses: actions/checkout@v4
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4

- name: Restore Terraform Plan 🗺️
uses: actions/cache/restore@v4.0.2
uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
path: ./production/host_01/**
key: ${{ github.sha }}

- name: Install NodeJS 🖥️
uses: actions/setup-node@v4
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
node-version: 20

- name: Install Terraform ⛰️
uses: hashicorp/setup-terraform@v3
uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3

- name: Terraform Apply 🚀
run: terraform apply ${{ github.sha }}.tfplan
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/host_02_production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,25 +23,25 @@ jobs:
steps:

- name: Checkout 🔔
uses: actions/checkout@v4
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4

- name: Map Secrets to Environment Variables 🗺️
uses: oNaiPs/secrets-to-env-action@v1.5
uses: oNaiPs/secrets-to-env-action@ec46a22bfc9b37e014b627b3208b07eb8909ea0f # v1.5
with:
secrets: ${{ toJSON(secrets) }}

- name: Replace Tokens 🪙
uses: cschleiden/replace-tokens@v1.3
uses: cschleiden/replace-tokens@4d5a042c84c3568b3858b7af9394923d2d5195c9 # v1.3
with:
files: '["./production/host_02/**/*"]'

- name: Install NodeJS 🖥️
uses: actions/setup-node@v4
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
node-version: 20

- name: Install Terraform ⛰️
uses: hashicorp/setup-terraform@v3
uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3

- name: Terraform Init 🏃
id: terraformInit
Expand All @@ -55,7 +55,7 @@ jobs:
working-directory: ./production/host_02

- name: Cache Terraform Plan 📦
uses: actions/cache/save@v4.0.2
uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
path: ./production/host_02/**
key: ${{ github.sha }}
Expand All @@ -71,10 +71,10 @@ jobs:
steps:

- name: Install Docker
uses: crazy-max/ghaction-setup-docker@v3
uses: crazy-max/ghaction-setup-docker@78318f8be53384b971671f27d81f5e72526c102d # v3

- name: Manual Approval 🚦
uses: trstringer/manual-approval@v1
uses: trstringer/manual-approval@662b3ddbc7685f897992051e87e1b4b58c07dc03 # v1
with:
secret: ${{ github.TOKEN }}
approvers: data-tangles
Expand All @@ -84,16 +84,16 @@ jobs:
exclude-workflow-initiator-as-approver: false

- name: Checkout 🔔
uses: actions/checkout@v4
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4

- name: Restore Terraform Plan 🗺️
uses: actions/cache/restore@v4.0.2
uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
with:
path: ./production/host_02/**
key: ${{ github.sha }}

- name: Install Terraform ⛰️
uses: hashicorp/setup-terraform@v3
uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd # v3

- name: Terraform Apply 🚀
run: terraform apply ${{ github.sha }}.tfplan
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ jobs:
steps:

- name: Generate GitHub App Token 🪙
uses: tibdex/github-app-token@v2
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2
id: generate-token
with:
app_id: ${{ secrets.BRAID_BOT_APP_ID }}
private_key: ${{ secrets.BRAID_BOT_PRIVATE_KEY }}

- name: Checkout 🔔
uses: actions/checkout@v4
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
ref: ${{ github.event.pull_request.head.ref }}
token: ${{ steps.generate-token.outputs.token }}
Expand Down Expand Up @@ -80,21 +80,21 @@ jobs:
steps:

- name: Generate GitHub App Token 🪙
uses: tibdex/github-app-token@v2
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2
id: generate-token
with:
app_id: ${{ secrets.BRAID_BOT_APP_ID }}
private_key: ${{ secrets.BRAID_BOT_PRIVATE_KEY }}

- name: Checkout 🔔
uses: actions/checkout@v4
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
with:
ref: ${{ github.event.pull_request.head.ref }}
token: ${{ steps.generate-token.outputs.token }}

- name: Conventional Changelog Action 📋
id: changelog
uses: TriPSs/conventional-changelog-action@v5
uses: TriPSs/conventional-changelog-action@3a392e9aa44a72686b0fc13259a90d287dd0877c # v5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
git-user-name: "braid-bot[bot]"
Expand Down
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
## [0.1.14](https://github.com/binary-braids/terraform-proxmox/compare/v0.1.13...v0.1.14) (2024-09-07)


### Bug Fixes

* ignore github workflow path ([0d29830](https://github.com/binary-braids/terraform-proxmox/commit/0d298303a96be257d2a63ae537ccd79774ee19bb))
* remove firewall variables ([f989f3a](https://github.com/binary-braids/terraform-proxmox/commit/f989f3a75b0ab9d9515a2141afd60176882f82bc))



## [0.1.13](https://github.com/binary-braids/terraform-proxmox/compare/8f9bb838022cec5c9525f4e2a6b29791085a3633...v0.1.13) (2024-09-07)


### Bug Fixes

* correct provider reference for proxmox ([f3f7fa3](https://github.com/binary-braids/terraform-proxmox/commit/f3f7fa36038e01bc23c03f379f169a0692db7be4))
* correct variable types ([8f9bb83](https://github.com/binary-braids/terraform-proxmox/commit/8f9bb838022cec5c9525f4e2a6b29791085a3633))
* correct variables ([e8792b5](https://github.com/binary-braids/terraform-proxmox/commit/e8792b56e0e09ca2f1e9f97e4a4b540c1e2337b9))
* dc02 references ([116951f](https://github.com/binary-braids/terraform-proxmox/commit/116951f721ab413528f3646edf68aaa0c14f2339))
* fix the workflow ([3e9e7f7](https://github.com/binary-braids/terraform-proxmox/commit/3e9e7f7f1c90d43775c3761dfc413875e6d56f6e))
* only run deploy workflows on pr to main ([bd10c48](https://github.com/binary-braids/terraform-proxmox/commit/bd10c48062bead480c99ceab167ae2e467ab437a))



21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2018 The terraform-docs Authors.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading
Loading