update url in daily-collect job

This commit is contained in:
Brendan McDevitt 2025-03-27 22:01:04 +00:00
parent bcc1ae9f3e
commit a9ff8c559d

View file

@ -11,28 +11,22 @@ jobs:
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 run: |
git clone https://git.mcdevitt.tech/bpmcdevitt/github_poc_collector.git .
- name: Setup Rust - name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Cache Cargo dependencies
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install Rust toolchain
run: | run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
source "$HOME/.cargo/env" source "$HOME/.cargo/env"
rustup default stable rustup default stable
rustc --version
cargo --version
- name: Cache Cargo dependencies
run: |
mkdir -p ~/.cargo/registry
mkdir -p ~/.cargo/git
mkdir -p target
- name: Run recent feed update - name: Run recent feed update
run: cargo run -- --feed recent run: cargo run -- --feed recent