From 370212fa573ce9115ca39450905dca71fb6d1fd9 Mon Sep 17 00:00:00 2001 From: Sebastian Franco Date: Tue, 31 Dec 2024 16:15:32 +0100 Subject: [PATCH] chore: prod pipeline 32 --- .github/actions/install/action.yaml | 5 +++-- .github/workflows/job_build.yaml | 21 --------------------- 2 files changed, 3 insertions(+), 23 deletions(-) diff --git a/.github/actions/install/action.yaml b/.github/actions/install/action.yaml index 8ad80378..31ac22ea 100644 --- a/.github/actions/install/action.yaml +++ b/.github/actions/install/action.yaml @@ -12,7 +12,7 @@ runs: steps: - name: Set up pnpm - uses: pnpm/action-setup@v3 + uses: pnpm/action-setup@v4 if: ${{ inputs.ts == 'true' }} with: version: 8.15.4 @@ -22,7 +22,8 @@ runs: uses: actions/setup-node@v4 if: ${{ inputs.ts == 'true' }} with: - node-version: 20.11.0 + node-version: 20.11.1 + cache: 'pnpm' - name: Get pnpm store directory if: ${{ inputs.ts == 'true' }} diff --git a/.github/workflows/job_build.yaml b/.github/workflows/job_build.yaml index 34c5eb0c..21c694ac 100644 --- a/.github/workflows/job_build.yaml +++ b/.github/workflows/job_build.yaml @@ -27,27 +27,6 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: Infisical/secrets-action@v1.0.7 - name: Pull secrets from Infisical - if: ${{ inputs.pull_secrets }} - with: - client-id: ${{ secrets.MACHINE_IDENTITY_CLIENT_ID }} - client-secret: ${{ secrets.MACHINE_IDENTITY_CLIENT_SECRET }} - env-slug: ${{ inputs.env_slug }} - project-slug: ${{ inputs.project_slug }} - export-type: "file" - file-output-path: "/.env" - secret-path: "/" - recursive: true - - - uses: cardinalby/export-env-action@v2 - with: - envFile: '.env' - export: true - # export everything except DATABASE_URL using regex - filter: ^(?!DATABASE_URL$).*$ - mask: true - - uses: ./.github/actions/install name: Install dependencies with: