-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(deps): update rust crate sqlx to 0.8 [security] (v1) (#1687)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: FabianLars <[email protected]>
- Loading branch information
1 parent
64e42b2
commit 20d2f54
Showing
28 changed files
with
2,156 additions
and
2,154 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 |
---|---|---|
@@ -1,57 +1,57 @@ | ||
name: Check MSRV | ||
|
||
on: | ||
push: | ||
branches: | ||
- v1 | ||
- v2 | ||
paths: | ||
- ".github/workflows/msrv-check.yml" | ||
- "plugins/*/src/**" | ||
- "**/Cargo.toml" | ||
- "**/Cargo.lock" | ||
pull_request: | ||
branches: | ||
- v1 | ||
- v2 | ||
paths: | ||
- ".github/workflows/msrv-check.yml" | ||
- "plugins/*/src/**" | ||
- "**/Cargo.toml" | ||
- "**/Cargo.lock" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
msrv: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: install webkit2gtk and libudev for [authenticator] | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y libwebkit2gtk-4.0-dev libwebkit2gtk-4.1-dev libudev-dev | ||
- uses: dtolnay/rust-toolchain@1.64.0 | ||
|
||
- uses: Swatinem/rust-cache@v2 | ||
|
||
- name: build | ||
run: cargo build --workspace --exclude 'tauri-plugin-sql' --all-targets --all-features | ||
|
||
- uses: dtolnay/rust-toolchain@1.65.0 | ||
|
||
- name: build sql:sqlite | ||
run: cargo build --package 'tauri-plugin-sql' --all-targets --features sqlite | ||
|
||
- name: build sql:mysql | ||
run: cargo build --package 'tauri-plugin-sql' --all-targets --features mysql | ||
|
||
- name: build sql:postgres | ||
run: cargo build --package 'tauri-plugin-sql' --all-targets --features postgres | ||
name: Check MSRV | ||
|
||
on: | ||
push: | ||
branches: | ||
- v1 | ||
- v2 | ||
paths: | ||
- ".github/workflows/msrv-check.yml" | ||
- "plugins/*/src/**" | ||
- "**/Cargo.toml" | ||
- "**/Cargo.lock" | ||
pull_request: | ||
branches: | ||
- v1 | ||
- v2 | ||
paths: | ||
- ".github/workflows/msrv-check.yml" | ||
- "plugins/*/src/**" | ||
- "**/Cargo.toml" | ||
- "**/Cargo.lock" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
msrv: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: install webkit2gtk and libudev for [authenticator] | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y libwebkit2gtk-4.0-dev libwebkit2gtk-4.1-dev libudev-dev | ||
- uses: dtolnay/rust-toolchain@1.67.0 | ||
|
||
- uses: Swatinem/rust-cache@v2 | ||
|
||
- name: build | ||
run: cargo build --workspace --exclude 'tauri-plugin-sql' --all-targets --all-features | ||
|
||
- uses: dtolnay/rust-toolchain@1.80.1 | ||
|
||
- name: build sql:sqlite | ||
run: cargo build --package 'tauri-plugin-sql' --all-targets --features sqlite | ||
|
||
- name: build sql:mysql | ||
run: cargo build --package 'tauri-plugin-sql' --all-targets --features mysql | ||
|
||
- name: build sql:postgres | ||
run: cargo build --package 'tauri-plugin-sql' --all-targets --features postgres |
Oops, something went wrong.