From 56349e6022b6f435855c561c65553f6f75ec8dce Mon Sep 17 00:00:00 2001 From: Guido Iaquinti Date: Mon, 7 Nov 2022 11:25:07 +0100 Subject: [PATCH] CI - update checkout action & bump DO cluster size --- .github/workflows/pr-deploy-cleanup.yaml | 2 +- .github/workflows/pr-deploy.yaml | 2 +- .github/workflows/test-digitalocean-install.yaml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr-deploy-cleanup.yaml b/.github/workflows/pr-deploy-cleanup.yaml index abe801e98..96a0710d7 100644 --- a/.github/workflows/pr-deploy-cleanup.yaml +++ b/.github/workflows/pr-deploy-cleanup.yaml @@ -30,7 +30,7 @@ jobs: return member - name: Checkout - uses: actions/checkout@v2 # no way of getting the correct ref from the issue event, hence the below + uses: actions/checkout@v3 # no way of getting the correct ref from the issue event, hence the below if: ${{ steps.permissions.outputs.result == 'true' && contains(github.event.pull_request.labels.*.name, 'deploy') }} - name: Declare variables that we can share across steps diff --git a/.github/workflows/pr-deploy.yaml b/.github/workflows/pr-deploy.yaml index 7778dd200..6665c8fbb 100644 --- a/.github/workflows/pr-deploy.yaml +++ b/.github/workflows/pr-deploy.yaml @@ -39,7 +39,7 @@ jobs: return member - name: Checkout - uses: actions/checkout@v2 # no way of getting the correct ref from the issue event, hence the below + uses: actions/checkout@v3 # no way of getting the correct ref from the issue event, hence the below if: ${{ steps.permissions.outputs.result == 'true' && contains(github.event.pull_request.labels.*.name, 'deploy') }} - name: Declare variables that we can share across steps diff --git a/.github/workflows/test-digitalocean-install.yaml b/.github/workflows/test-digitalocean-install.yaml index 01101e7cc..5597859ce 100644 --- a/.github/workflows/test-digitalocean-install.yaml +++ b/.github/workflows/test-digitalocean-install.yaml @@ -47,8 +47,8 @@ jobs: ${{ steps.vars.outputs.k8s_cluster_name }} \ --version "$DO_K8S_VERSION" \ --tag="provisioned_by:github_action" \ - --size s-2vcpu-4gb \ - --count 2 \ + --size s-4vcpu-8gb \ + --count 3 \ --wait - name: Install PostHog using the Helm chart