diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 47f88349..98e44ee5 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,8 +3,8 @@ updates: - package-ecosystem: "cargo" directory: "/" schedule: - interval: "daily" + interval: "weekly" - package-ecosystem: "github-actions" directory: "/" schedule: - interval: "daily" + interval: "weekly" diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 4d91e2e4..30fd4e9e 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -35,6 +35,11 @@ jobs: toolchain: stable - name: Build run: cargo build --verbose + - name: Upload build artifacts + uses: actions/upload-artifact@v3 + with: + name: build-artifacts + path: target/debug/linutil test: runs-on: ubuntu-latest @@ -60,6 +65,11 @@ jobs: uses: actions-rs/toolchain@v1 with: toolchain: stable + - name: Download build artifacts + uses: actions/download-artifact@v3 + with: + name: build-artifacts + path: target/debug - name: Run tests run: cargo test --verbose - name: Replace linutil binary