Skip to content

Commit

Permalink
Updated github action dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
orium committed Feb 12, 2024
1 parent 4ea95ce commit e201ddf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ jobs:
cargo install cargo-deadlinks
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 2
uses: actions/checkout@v4

- name: Check everything
run: bash ./tools/check.sh
Expand All @@ -47,9 +45,7 @@ jobs:
run: cargo install cargo-msrv

- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 2
uses: actions/checkout@v4

- name: Check the minimum supported rust version
run: cargo msrv verify
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ jobs:
archive: tar.zst zip

steps:
- uses: actions/checkout@main
- uses: actions/checkout@v4

- name: Build release binary
uses: rust-build/[email protected].0
uses: rust-build/[email protected].4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down
1 change: 1 addition & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ async fn main_loop(config: Config) -> ! {
info!("No fermenters found.");
}

// WIP! do in parallel?
for ferm in ferms {
match grainfather.get_fermenter_temperature(ferm.id).await {
Ok(Some(temp_record)) => {
Expand Down

0 comments on commit e201ddf

Please sign in to comment.