[READ-ONLY] Mirror of https://github.com/probablykasper/time-machine-inspector. Time Machine backup size inspector app
backup macos tauri time-machine
0

Configure Feed

Select the types of activity you want to include in your feed.

Update CI

Kasper (Dec 5, 2022, 12:52 AM +0100) ff7ce474 b4e70d69

+8 -12
+4 -6
.github/workflows/release.yml
··· 10 10 runs-on: macos-10.15 11 11 steps: 12 12 - name: Checkout repository 13 - uses: actions/checkout@v2 13 + uses: actions/checkout@v3 14 14 15 15 - name: Node.js setup 16 16 uses: actions/setup-node@v1 17 17 with: 18 - node-version: 16 18 + node-version: 18 19 19 20 20 - name: Rust setup 21 - uses: actions-rs/toolchain@v1 22 - with: 23 - toolchain: stable 21 + uses: dtolnay/rust-toolchain@stable 24 22 25 - - name: Install webkit2gtk (ubuntu only) 23 + - name: Install dependencies (Ubuntu only) 26 24 if: matrix.platform == 'ubuntu-latest' 27 25 run: | 28 26 sudo apt-get update
+4 -6
.github/workflows/test.yml
··· 11 11 runs-on: macos-10.15 12 12 steps: 13 13 - name: Checkout repository 14 - uses: actions/checkout@v2 14 + uses: actions/checkout@v3 15 15 16 16 - name: Node.js setup 17 17 uses: actions/setup-node@v1 18 18 with: 19 - node-version: 16 19 + node-version: 18 20 20 21 21 - name: Rust setup 22 - uses: actions-rs/toolchain@v1 23 - with: 24 - toolchain: stable 22 + uses: dtolnay/rust-toolchain@stable 25 23 26 24 - name: Rust Cache 27 25 uses: Swatinem/rust-cache@v1 28 26 with: 29 27 working-directory: ./src-tauri 30 28 31 - - name: Install webkit2gtk (ubuntu only) 29 + - name: Install dependencies (Ubuntu only) 32 30 if: matrix.platform == 'ubuntu-latest' 33 31 run: | 34 32 sudo apt-get update