fix(deps): update all non-major dependencies #1378
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
name: Test Build (PRs) | |
permissions: read-all | |
on: | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
# sccache enablement | |
SCCACHE_GHA_ENABLED: true | |
RUSTC_WRAPPER: sccache | |
# Cancel the build if a new commit is pushed to the branch as a PR. | |
# Allow each PR to have its own build. | |
concurrency: | |
group: rust-${{ github.ref }}-${{ github.head_ref}} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Install bun | |
uses: oven-sh/setup-bun@4bc047ad259df6fc24a6c9b0f9a0cb08cf17fbe5 # v2 | |
- name: Create Fake .env File (dotenvy_macro requirement) | |
run: | | |
touch src-tauri/.env | |
echo APTABASE_KEY=${{ secrets.APTABASE_KEY }} >> src-tauri/.env | |
- name: Install Dependencies | |
# You can remove libayatana-appindicator3-dev if you don't use the system tray feature. | |
run: | | |
sudo apt-get update | |
sudo apt-get install --no-install-recommends libwebkit2gtk-4.0-dev \ | |
build-essential \ | |
curl \ | |
wget \ | |
file \ | |
libssl-dev \ | |
libgtk-3-dev \ | |
libayatana-appindicator3-dev \ | |
librsvg2-dev | |
sudo apt-get install --no-install-recommends javascriptcoregtk-4.1 \ | |
libsoup-3.0 \ | |
webkit2gtk-4.1 | |
- name: Run sccache-cache | |
uses: mozilla-actions/sccache-action@9e326ebed976843c9932b3aa0e021c6f50310eb4 # v0.0.6 | |
- name: Rust setup | |
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a # master | |
with: | |
toolchain: stable | |
- name: Install Client Dependencies & Build | |
run: | | |
bun install | |
bun run build | |
- name: Build the Tauri App | |
run: bunx tauri build | |
env: | |
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} | |
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_PRIVATE_KEY_PASSWORD }} | |
- name: Show sccache stats | |
shell: bash | |
run: | | |
echo '## SCCACHE STATS' >> $GITHUB_STEP_SUMMARY | |
echo '| Metric | Value |' >> $GITHUB_STEP_SUMMARY | |
echo '|--------|-------|' >> $GITHUB_STEP_SUMMARY | |
${SCCACHE_PATH} --show-stats | awk -F'[[:space:]][[:space:]]+' 'NR<=22{ print "| "$1" | "$2" |"}' >> $GITHUB_STEP_SUMMARY | |
echo '</hr>' >> $GITHUB_STEP_SUMMARY | |
clippy: | |
name: Clippy Check | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
- name: Install bun | |
uses: oven-sh/setup-bun@4bc047ad259df6fc24a6c9b0f9a0cb08cf17fbe5 # v2 | |
- name: Install Dependencies | |
# You can remove libayatana-appindicator3-dev if you don't use the system tray feature. | |
run: | | |
sudo apt-get update | |
sudo apt-get install --no-install-recommends libwebkit2gtk-4.0-dev \ | |
build-essential \ | |
curl \ | |
wget \ | |
file \ | |
libssl-dev \ | |
libgtk-3-dev \ | |
libayatana-appindicator3-dev \ | |
librsvg2-dev | |
sudo apt-get install --no-install-recommends javascriptcoregtk-4.1 \ | |
libsoup-3.0 \ | |
webkit2gtk-4.1 | |
- name: Create .env | |
run: | | |
touch src-tauri/.env | |
echo APTABASE_KEY=${{ secrets.APTABASE_KEY }} >> src-tauri/.env | |
- name: Install Client Dependencies & Build | |
run: | | |
bun install | |
bun run build | |
- name: Run sccache-cache | |
uses: mozilla-actions/sccache-action@9e326ebed976843c9932b3aa0e021c6f50310eb4 # v0.0.6 | |
- name: Rust setup | |
uses: dtolnay/rust-toolchain@7b1c307e0dcbda6122208f10795a713336a9b35a # master | |
with: | |
toolchain: stable | |
- name: Run clippy | |
run: | | |
cd src-tauri | |
cargo clippy -- -D warnings |