Skip to content

Commit

Permalink
chore: update CI deps
Browse files Browse the repository at this point in the history
  • Loading branch information
NikhilNarayana committed Sep 16, 2024
1 parent af0a901 commit 7475f81
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,27 +31,27 @@ 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 }}

- name: Check out Git repository
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
Expand All @@ -66,7 +66,7 @@ jobs:
- name: Cache CodeSignTool
if: matrix.os == 'windows-latest'
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
./CodeSignTool/
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7475f81

Please sign in to comment.