Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade dependencies #21

Merged
merged 9 commits into from
Dec 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 6 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,27 +13,22 @@ 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@v2
uses: actions/upload-artifact@v4
with:
name: nucleoid-backend
path: target/release/nucleoid-backend
Loading