From 4da01e1d83ac0651bc4b830808da2db8c48b9e87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20T=C3=B6lle?= Date: Sun, 7 May 2023 13:54:51 +0200 Subject: [PATCH] ci: fix duplicate jobs on prs --- .github/workflows/ci.yaml | 5 ++--- .github/workflows/release.yaml | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8c78cfc..a801db1 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -3,7 +3,6 @@ name: CI on: push: workflow_call: - pull_request: jobs: api: @@ -23,7 +22,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 20 - run: npm ci - run: npm run build @@ -52,7 +51,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 20 - run: npm ci diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5e6865e..6f6147f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -27,7 +27,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 20 - name: Install Helm uses: azure/setup-helm@v3