From 7aae6a9ac1f3cc8547c28da51c18c4c237a57e64 Mon Sep 17 00:00:00 2001 From: Robbie Blaine <4052340+rblaine95@users.noreply.github.com> Date: Wed, 31 Jan 2024 14:55:12 +0200 Subject: [PATCH] Don't Deploy to EKS if Github Actor is Dependabot (#217) * Also bump Helm, Helmfile, and Tailscale --- .github/workflows/ci-cd.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index d0d3190c..28eb8b77 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -145,9 +145,9 @@ jobs: checks: read runs-on: ubuntu-latest env: - TAILSCALE_VERSION: 1.52.1 - HELMFILE_VERSION: v0.158.1 - HELM_VERSION: v3.13.1 + TAILSCALE_VERSION: 1.58.2 + HELMFILE_VERSION: v0.161.0 + HELM_VERSION: v3.14.0 concurrency: group: ${{ github.workflow }}-deploy-${{ github.event_name == 'release' && 'prod' || 'dev' }} @@ -158,7 +158,7 @@ jobs: # Don't deploy if triggering actor is dependabot # Only deploy if PR is Ready for Review - if: github.triggering_actor != 'dependabot[bot]' && github.event.pull_request.draft == false + if: github.actor != 'dependabot[bot]' && github.event.pull_request.draft == false steps: - uses: actions/checkout@v4