Skip to content

Commit

Permalink
Heroku Go 1.18 and fixing small issues (#477)
Browse files Browse the repository at this point in the history
* Docs for AWS

* Disable shellcheck for windows

* Shellcheck fix

* bump

* Go 1.18
  • Loading branch information
Amet13 authored Apr 1, 2022
1 parent 6347568 commit 920375f
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/test-installer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,5 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Run ShellCheck
run: |
choco install shellcheck
shellcheck --exclude SC1017 install.sh
- name: Installer
run: ./install.sh
2 changes: 1 addition & 1 deletion terraform/aws_eks/scripts/node-user-data.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash -xe

sudo /etc/eks/bootstrap.sh --apiserver-endpoint ${CLUSTER_ENDPOINT} --b64-cluster-ca ${CLUSTER_CA_DATA} ${CLUSTER_NAME}
sudo /etc/eks/bootstrap.sh --apiserver-endpoint "${CLUSTER_ENDPOINT}" --b64-cluster-ca "${CLUSTER_CA_DATA}" "${CLUSTER_NAME}"
2 changes: 1 addition & 1 deletion terraform/heroku/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ resource "heroku_app" "app" {
region = var.region

config_vars = {
GOVERSION = "1.17"
GOVERSION = "1.18"
}

buildpacks = [
Expand Down
2 changes: 1 addition & 1 deletion terraform/hetzner_cloud/user_data.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#cloud-config
runcmd:
# replace with the latest version
- wget -c https://github.com/Arriven/db1000n/releases/download/v0.8.2/db1000n-v0.8.2-linux-amd64.tar.gz -O - | tar -xz
- wget -c https://github.com/Arriven/db1000n/releases/download/v0.8.15/db1000n-v0.8.15-linux-amd64.tar.gz -O - | tar -xz
- systemctl daemon-reload
- systemctl enable db1000n
- systemctl start db1000n
Expand Down

0 comments on commit 920375f

Please sign in to comment.