From 7475f818802d7ec90de95c5f770e8cd37b6af2df Mon Sep 17 00:00:00 2001 From: Nikhil Narayana Date: Sun, 15 Sep 2024 21:45:17 -0700 Subject: [PATCH] chore: update CI deps --- .github/workflows/build.yml | 12 ++++++------ .github/workflows/release.yml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4edd051a2..8928d2d23 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,13 +31,13 @@ jobs: strategy: fail-fast: false matrix: - node-version: [18.x] + node-version: [20.x] python: ["3.11"] os: [ubuntu-latest, windows-latest, macOS-latest] steps: - name: Use Python ${{ matrix.python }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python }} @@ -45,13 +45,13 @@ jobs: uses: actions/checkout@v4 - name: Install Node.js and yarn - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} cache: yarn - name: Cache node modules - uses: actions/cache@v3 + uses: actions/cache@v4 id: cache with: path: node_modules @@ -66,7 +66,7 @@ jobs: - name: Cache CodeSignTool if: matrix.os == 'windows-latest' - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ./CodeSignTool/ @@ -157,7 +157,7 @@ jobs: mkdir artifacts mv release/build/{*.exe*,*.deb,*.AppImage,*.dmg*,*.zip,*.yml} artifacts || true - name: Upload artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{matrix.os}} path: artifacts diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cce8f0152..2c4489728 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Download latest artifacts - uses: dawidd6/action-download-artifact@v2 + uses: dawidd6/action-download-artifact@v6 with: github_token: ${{ secrets.GITHUB_TOKEN }} workflow: build.yml