Skip to content

Commit

Permalink
Upgrade dependencies (#21)
Browse files Browse the repository at this point in the history
* chore: bump all the dependencies

* chore: fix clippy warnings clippy

* chore: run cargo fmt

* fix(ci): update actions

* fix(nix): remove override for crane nixpkgs input

* feat: replace log with tracing

* fix(statistics): clickhouse-rs changed date(time) typing again

* chore(ci): bump builds up to ubuntu 22.04

we can't do 24.04 since the server hasn't updated yet

* chore: bits from code cleanup
  • Loading branch information
ashhhleyyy authored Dec 21, 2024
1 parent 84c156b commit f05fe4e
Show file tree
Hide file tree
Showing 20 changed files with 1,561 additions and 1,174 deletions.
15 changes: 5 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,20 @@ jobs:

strategy:
matrix:
os: [ubuntu-20.04]
os: [ubuntu-22.04]

steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Cache build artifacts
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: target/**
key: ${{ matrix.os }}-cargo
- name: Install rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
run: rustup update stable && rustup default stable
- name: Build with cargo
uses: actions-rs/cargo@v1
with:
command: build
args: --release
run: cargo build --verbose --release
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
Expand Down
Loading

0 comments on commit f05fe4e

Please sign in to comment.