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/workflows/pr-deploy-cleanup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-digitalocean-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down