Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/actions/cue/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ inputs:
schema-file:
required: true
cue-version:
default: 0.15.0
default: 0.16.0

runs:
using: "composite"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/check-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: upload-artifact
uses: ninotosh/check-github-repo-latest-version@v1
with:
release: actions/upload-artifact@v6
release: actions/upload-artifact@v7
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: cache
Expand All @@ -50,7 +50,7 @@ jobs:
- name: setup-terraform
uses: ninotosh/check-github-repo-latest-version@v1
with:
release: hashicorp/setup-terraform@v3
release: hashicorp/setup-terraform@v4
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: terraform
Expand All @@ -74,7 +74,7 @@ jobs:
- name: cue
uses: ninotosh/check-github-repo-latest-version@v1
with:
release: cue-lang/cue@v0.15
release: cue-lang/cue@v0.16
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: openvpn
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- run: make generated.servers.auto.tfvars.json

- name: set up terraform
uses: hashicorp/setup-terraform@v3
uses: hashicorp/setup-terraform@v4
with:
terraform_version: ~1.14
cli_config_credentials_token: ${{ secrets.HCP_TERRAFORM_TEAM_TOKEN }}
Expand All @@ -49,7 +49,7 @@ jobs:
- run: terraform apply -auto-approve -refresh-only

- name: set up terraform
uses: hashicorp/setup-terraform@v3
uses: hashicorp/setup-terraform@v4
with:
terraform_version: ~1.14
cli_config_credentials_token: ${{ secrets.HCP_TERRAFORM_TEAM_TOKEN }}
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
-e download_dir=${DOWNLOAD_DIR}
site.yml

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: ovpn_${{ github.run_number }}
path: ${{ env.DOWNLOAD_DIR }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- uses: actions/checkout@v6

- name: set up terraform
uses: hashicorp/setup-terraform@v3
uses: hashicorp/setup-terraform@v4
with:
terraform_version: ~1.14
cli_config_credentials_token: ${{ secrets.HCP_TERRAFORM_TEAM_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/keygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
# "y" to overwrite the tmp file
- run: echo y | ssh-keygen -t ed25519 -f ${SSH_PRIVATE_KEY_PATH} -C $SSH_USER -N ""

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: ssh_key_pair_${{ github.run_number }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/plan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- run: make generated.servers.auto.tfvars.json

- name: set up terraform
uses: hashicorp/setup-terraform@v3
uses: hashicorp/setup-terraform@v4
with:
terraform_version: ~1.14
cli_config_credentials_token: ${{ secrets.HCP_TERRAFORM_TEAM_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ sequenceDiagram

- accounts
- [GitHub](https://docs.github.com/en/get-started/start-your-journey/creating-an-account-on-github)
- [HCP Terraform](https://developer.hashicorp.com/terraform/tutorials/cloud-get-started/cloud-sign-up)
- [HashiCorp Cloud Platform](https://developer.hashicorp.com/hcp/docs/hcp/create-account) or [HCP Terraform](https://developer.hashicorp.com/terraform/tutorials/cloud-get-started/cloud-sign-up)
- one or more of
- [AWS](https://aws.amazon.com/resources/create-account/)
- [Google](https://support.google.com/accounts/answer/27441) for Google Cloud
- VPN client application
- VPN client application on each client

# steps

Expand Down
2 changes: 1 addition & 1 deletion docker/cue.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM golang:1.25-bookworm
ARG CUE_VERSION=0.15.0
ARG CUE_VERSION=0.16.0

RUN apt update && \
apt install -y --no-install-recommends bash-completion && \
Expand Down