From 41531d17be40fd101de307a5b4cc4a0246243ab5 Mon Sep 17 00:00:00 2001 From: waldronmatt Date: Thu, 18 Apr 2024 19:37:47 -0400 Subject: [PATCH] ci(cicd.yml): add back actions to main cicd wf --- .github/actions/checkout/action.yml | 9 --------- .github/workflows/cicd.yml | 4 +++- 2 files changed, 3 insertions(+), 10 deletions(-) delete mode 100644 .github/actions/checkout/action.yml diff --git a/.github/actions/checkout/action.yml b/.github/actions/checkout/action.yml deleted file mode 100644 index 2c74f53b..00000000 --- a/.github/actions/checkout/action.yml +++ /dev/null @@ -1,9 +0,0 @@ -name: 'Checkout Code' - -runs: - using: 'composite' - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 0 diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index eb167bcc..427f3227 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -20,7 +20,9 @@ jobs: pnpm-version: [8] steps: - name: Checkout Code - uses: ./.github/actions/checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Setup Node.js uses: ./.github/actions/setup-node