Skip to content

Commit

Permalink
attempt to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
nebudev14 committed Aug 25, 2022
1 parent 7c4d59f commit 9958a95
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: "1.59.0"
toolchain: "1.61.0"
components: rustfmt
- name: Format
run: cargo fmt -- --check
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: "1.59.0"
toolchain: "1.61.0"
- name: Build
run: cargo build
lint:
Expand All @@ -41,7 +41,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: "1.59.0"
toolchain: "1.61.0"
components: clippy
- name: Lint
run: cargo clippy -- -D warnings
Expand Down
8 changes: 4 additions & 4 deletions crates/db_models/src/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ table! {
}

table! {
invites (team_id, user_id) {
user_id -> Int4,
team_id -> Int4,
}
invites (team_id, user_id) {
user_id -> Int4,
team_id -> Int4,
}
}

table! {
Expand Down
2 changes: 1 addition & 1 deletion docker/dev.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.63
FROM rust:1.61

WORKDIR /usr/src/app

Expand Down
2 changes: 1 addition & 1 deletion docker/prod-sccache.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1.2

FROM rust:1.59 AS builder
FROM rust:1.61 AS builder

WORKDIR /usr/src/app

Expand Down
2 changes: 1 addition & 1 deletion docker/prod.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.56 AS builder
FROM rust:1.61 AS builder

WORKDIR /usr/src/app

Expand Down

0 comments on commit 9958a95

Please sign in to comment.