-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #78 from SARDONYX-sard/feature/stop-unnecessary-alloc
Feature/stop unnecessary alloc
- Loading branch information
Showing
78 changed files
with
1,702 additions
and
1,502 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,9 +18,9 @@ jobs: | |
runs-on: ${{ matrix.platform }} | ||
|
||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].2 | ||
- name: Rust cache | ||
uses: Swatinem/[email protected].3 | ||
uses: Swatinem/[email protected].5 | ||
with: | ||
prefix-key: cargo-debug-${{ matrix.platform }} | ||
|
||
|
@@ -43,9 +43,9 @@ jobs: | |
runs-on: ${{ matrix.platform }} | ||
|
||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].2 | ||
- name: Rust cache | ||
uses: Swatinem/[email protected].3 | ||
uses: Swatinem/[email protected].5 | ||
with: | ||
prefix-key: cargo-debug-${{ matrix.platform }} | ||
- name: Install dependencies (ubuntu only) | ||
|
@@ -65,9 +65,9 @@ jobs: | |
runs-on: ${{ matrix.platform }} | ||
|
||
steps: | ||
- uses: actions/[email protected].0 | ||
- uses: actions/[email protected].2 | ||
- name: Rust cache | ||
uses: Swatinem/[email protected].3 | ||
uses: Swatinem/[email protected].5 | ||
with: | ||
prefix-key: cargo-release-${{ matrix.platform }} | ||
|
||
|
@@ -82,7 +82,7 @@ jobs: | |
run: cargo build --release | ||
|
||
- name: Node.js cache | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: ${{ github.workspace }}/gui/frontend/.next/cache | ||
# Generate a new cache whenever packages or source files change. | ||
|
@@ -93,7 +93,7 @@ jobs: | |
run: npm ci | ||
|
||
- name: Sync node version | ||
uses: actions/setup-node@v4.0.4 | ||
uses: actions/setup-node@v4.1.0 | ||
with: | ||
node-version: 'lts/*' | ||
cache: 'npm' | ||
|
@@ -126,7 +126,7 @@ jobs: | |
mv ./target/release/dar2oar ./build | ||
- name: Upload a Build Artifact | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].3 | ||
with: | ||
name: DAR_to_OAR_Converter-${{runner.os}}-Portable | ||
path: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
runs-on: ${{ matrix.platform }} | ||
|
||
steps: | ||
- uses: actions/[email protected].1 | ||
- uses: actions/[email protected].2 | ||
|
||
- name: Install dependencies (ubuntu only) | ||
if: matrix.platform == 'ubuntu-latest' | ||
|
@@ -34,7 +34,7 @@ jobs: | |
prefix-key: cargo-${{ matrix.platform }} | ||
|
||
- name: Sync node version and setup cache | ||
uses: actions/setup-node@v4.0.4 | ||
uses: actions/setup-node@v4.1.0 | ||
with: | ||
node-version: 'lts/*' | ||
cache: 'npm' | ||
|
Oops, something went wrong.