diff --git a/.forgejo/workflows/dependency-builds.yml b/.forgejo/workflows/dependency-builds.yml new file mode 100644 index 0000000..e193809 --- /dev/null +++ b/.forgejo/workflows/dependency-builds.yml @@ -0,0 +1,21 @@ +name: Dependency builds + +on: + pull_request: + +env: + FORGEJO_TOKEN: "" + GITHUB_TOKEN: "" + +jobs: + check: + if: ${{ github.actor == 'rasensprenger' }} + name: Build & Lint + runs-on: nixos + steps: + - uses: https://data.forgejo.org/actions/checkout@v4 + with: + persist-credentials: false + - run: nix develop .#default --command pnpm install --frozen-lockfile + - run: nix develop .#default --command pnpm run lint + - run: nix develop .#default --command pnpm run build diff --git a/apps/backend/Cargo.toml b/apps/backend/Cargo.toml index 8d8270d..021e577 100644 --- a/apps/backend/Cargo.toml +++ b/apps/backend/Cargo.toml @@ -9,7 +9,7 @@ base64 = "0.23" chrono = { version = "0.4", features = ["serde"] } http = "1" mtp = { git = "https://git.methanium.net/methanium/mtp.git", rev = "a692bed326dbfc8eac1a05825f4a287cbab6fd3e", features = ["crypto", "web-server"] } -reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] } +reqwest = { version = "0.13", default-features = false, features = ["rustls-tls"] } serde = { version = "1", features = ["derive"] } serde_json = "1" thiserror = "2"