Skip to content

Commit 9958a95

Browse files
committed
attempt to fix CI
1 parent 7c4d59f commit 9958a95

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: actions-rs/toolchain@v1
1616
with:
1717
profile: minimal
18-
toolchain: "1.59.0"
18+
toolchain: "1.61.0"
1919
components: rustfmt
2020
- name: Format
2121
run: cargo fmt -- --check
@@ -28,7 +28,7 @@ jobs:
2828
- name: Install Rust toolchain
2929
uses: actions-rs/toolchain@v1
3030
with:
31-
toolchain: "1.59.0"
31+
toolchain: "1.61.0"
3232
- name: Build
3333
run: cargo build
3434
lint:
@@ -41,7 +41,7 @@ jobs:
4141
uses: actions-rs/toolchain@v1
4242
with:
4343
profile: minimal
44-
toolchain: "1.59.0"
44+
toolchain: "1.61.0"
4545
components: clippy
4646
- name: Lint
4747
run: cargo clippy -- -D warnings

crates/db_models/src/schema.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ table! {
5858
}
5959

6060
table! {
61-
invites (team_id, user_id) {
62-
user_id -> Int4,
63-
team_id -> Int4,
64-
}
61+
invites (team_id, user_id) {
62+
user_id -> Int4,
63+
team_id -> Int4,
64+
}
6565
}
6666

6767
table! {

docker/dev.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.63
1+
FROM rust:1.61
22

33
WORKDIR /usr/src/app
44

docker/prod-sccache.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1.2
22

3-
FROM rust:1.59 AS builder
3+
FROM rust:1.61 AS builder
44

55
WORKDIR /usr/src/app
66

docker/prod.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.56 AS builder
1+
FROM rust:1.61 AS builder
22

33
WORKDIR /usr/src/app
44

0 commit comments

Comments
 (0)