From 17660f57571dbf3021ff60b5b58cc48884cb345d Mon Sep 17 00:00:00 2001 From: Evan Tung Date: Fri, 15 Mar 2024 21:40:01 -0400 Subject: [PATCH] Update GitHub Actions versions --- .github/workflows/deliver.yml | 2 +- .github/workflows/integrate.yml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deliver.yml b/.github/workflows/deliver.yml index 1234f9f..32775c2 100644 --- a/.github/workflows/deliver.yml +++ b/.github/workflows/deliver.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/integrate.yml b/.github/workflows/integrate.yml index 38f278b..924a4c0 100644 --- a/.github/workflows/integrate.yml +++ b/.github/workflows/integrate.yml @@ -19,7 +19,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 - name: Install Dependencies run: npm ci @@ -31,7 +31,7 @@ jobs: run: npx jest --ci --coverage --passWithNoTests - name: Codecov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: fail_ci_if_error: true @@ -56,14 +56,14 @@ jobs: node-version: 20 - name: Initialize CodeQL - uses: github/codeql-action/init@v2 + uses: github/codeql-action/init@v3 with: languages: "javascript" - name: Autobuild - uses: github/codeql-action/autobuild@v2 + uses: github/codeql-action/autobuild@v3 - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v2 + uses: github/codeql-action/analyze@v3 with: category: "/language:javascript" \ No newline at end of file