From 0174539fee5c6b95413167043a1d47c53289cb2a Mon Sep 17 00:00:00 2001 From: Brendan McDevitt Date: Thu, 27 Mar 2025 17:13:34 -0500 Subject: [PATCH] adjust daily-collect --- .forgejo/workflows/daily-collect.yaml | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/.forgejo/workflows/daily-collect.yaml b/.forgejo/workflows/daily-collect.yaml index 34d55ed..f8483c5 100644 --- a/.forgejo/workflows/daily-collect.yaml +++ b/.forgejo/workflows/daily-collect.yaml @@ -24,19 +24,18 @@ jobs: git clone git@git.mcdevitt.tech:bpmcdevitt/github_poc_collector.git . - name: Setup Rust - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - override: true - + run: | + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y + source "$HOME/.cargo/env" + rustup default stable + rustc --version + cargo --version + - name: Cache Cargo dependencies - uses: actions/cache@v3 - with: - path: | - ~/.cargo/registry - ~/.cargo/git - target - key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} + run: | + mkdir -p ~/.cargo/registry + mkdir -p ~/.cargo/git + mkdir -p target - name: Run recent feed update run: cargo run -- --feed recent