Skip to content

Commit

Permalink
Upgrade backend dependencies and base images (#154)
Browse files Browse the repository at this point in the history
Signed-off-by: Sergio Castaño Arteaga <[email protected]>
  • Loading branch information
tegioz authored Jan 11, 2024
1 parent fb27f64 commit 7010403
Show file tree
Hide file tree
Showing 8 changed files with 238 additions and 156 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ updates:
interval: "weekly"
ignore:
- dependency-name: "node"
versions: ["19-alpine3.18", "20-alpine3.18"]
versions: ["19-alpine3.19", "20-alpine3.19", "21-alpine3.19"]

- package-ecosystem: "docker"
directory: "/database/migrations"
Expand Down
26 changes: 7 additions & 19 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,38 +13,26 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Rust
uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.74.0
profile: minimal
toolchain: 1.75.0
components: clippy, rustfmt
override: true
- name: Run clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets --all-features -- --deny warnings
run: cargo clippy --all-targets --all-features -- --deny warnings
- name: Run rustfmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
run: cargo fmt --all -- --check

tests-backend:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Rust
uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.74.0
profile: minimal
override: true
toolchain: 1.75.0
- name: Run backend tests
uses: actions-rs/cargo@v1
with:
command: test
run: cargo test

tests-frontend:
runs-on: ubuntu-latest
Expand Down
Loading

0 comments on commit 7010403

Please sign in to comment.