Skip to content

Commit

Permalink
Update action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kyletaylored committed May 28, 2024
1 parent 55803af commit 9b4b71c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16'
node-version: '20'

- name: Cache Node.js modules
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/.npm
Expand All @@ -40,23 +40,23 @@ jobs:
override: true

- name: Cache Rust cargo registry
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-registry-
- name: Cache Rust cargo index
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.cargo/index
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-index-
- name: Cache Rust cargo build
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: target
key: ${{ runner.os }}-cargo-build-${{ hashFiles('**/Cargo.lock') }}
Expand All @@ -67,7 +67,7 @@ jobs:
run: npm run tauri build

- name: Upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: colima-gui-macos
path: src-tauri/target/release/bundle/macos/*.app
Expand All @@ -78,7 +78,7 @@ jobs:

steps:
- name: Download artifact from build
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: colima-gui-macos
path: .
Expand Down

0 comments on commit 9b4b71c

Please sign in to comment.