Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: "cargo"
directory: "/src-tauri"
schedule:
interval: "weekly"

- package-ecosystem: "npm"
directory: "/release/openapi/swagger"
schedule:
interval: "weekly"

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
9 changes: 4 additions & 5 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,10 @@ jobs:
cache: 'yarn'

- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
uses: dtolnay/[email protected]

- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2

- name: Install dependencies
run: yarn install
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,11 @@ jobs:
node-version: '21.x'
cache: 'yarn'

- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Setup Rust
uses: dtolnay/[email protected]

- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2

- name: Install app dependencies
run: yarn install
Expand Down
Loading
Loading