Skip to content

Commit

Permalink
Upgrade backend dependencies and base images
Browse files Browse the repository at this point in the history
Signed-off-by: Sergio Castaño Arteaga <[email protected]>
  • Loading branch information
tegioz committed Jan 11, 2024
1 parent 9b275a1 commit ad93fb6
Show file tree
Hide file tree
Showing 12 changed files with 254 additions and 159 deletions.
3 changes: 3 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ updates:
directory: "/clotributor-apiserver"
schedule:
interval: "weekly"
ignore:
- dependency-name: "node"
versions: ["19-alpine3.19", "20-alpine3.19", "21-alpine3.19"]

- package-ecosystem: "docker"
directory: "/clotributor-registrar"
Expand Down
20 changes: 5 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,26 +13,16 @@ 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
- name: Run backend tests
uses: actions-rs/cargo@v1
with:
command: test
run: cargo test

lint-and-test-frontend:
runs-on: ubuntu-latest
Expand Down
Loading

0 comments on commit ad93fb6

Please sign in to comment.