Skip to content

Commit f5cf3a6

Browse files
git-f0xmmstick
authored andcommitted
chore: update dependencies
This should fix the build issue caused by specifying explicitly 1.85.1. Updates sctk and removes the `cosmic-config` patch.
1 parent d46d05e commit f5cf3a6

9 files changed

Lines changed: 662 additions & 546 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,14 @@
1-
on:
2-
push:
3-
branches: [master_jammy]
4-
pull_request:
1+
name: Continuous Integration
52

6-
name: CI
3+
on: [push, pull_request]
74

85
jobs:
9-
rustfmt:
10-
name: Rustfmt
11-
runs-on: ubuntu-20.04
6+
formatting:
7+
runs-on: ubuntu-24.04
128
steps:
13-
- uses: actions/checkout@v2
14-
- uses: actions-rs/toolchain@v1
9+
- uses: actions/checkout@v5
10+
- uses: dtolnay/rust-toolchain@nightly
1511
with:
16-
profile: minimal
17-
toolchain: stable
18-
override: true
1912
components: rustfmt
20-
- name: Create blank versions of configured file
21-
run: echo -e "" >> src/config.rs
22-
- name: Run cargo fmt
23-
run: cargo fmt --all -- --check
13+
- name: Run rustfmt
14+
run: cargo +nightly fmt --all -- --check

0 commit comments

Comments
 (0)