From 6d85c31779302e9818a966e1add66a2442dceacf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 9 Nov 2025 03:13:42 +0100 Subject: [PATCH] Update GitHub Actions to use v4 artifacts and dependency review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update actions/upload-artifact from v3 to v4 - Update actions/dependency-review-action from v3 to v4 - Fix deprecated action warnings 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/benchmark.yml | 2 +- .github/workflows/ci.yml | 2 +- .github/workflows/security.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 096c234..a1db6f3 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -36,7 +36,7 @@ jobs: run: cargo bench --no-fail-fast - name: Upload benchmark results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: benchmark-results path: target/criterion/ \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6183346..b7e70e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -157,7 +157,7 @@ jobs: run: cargo build --release --target ${{ matrix.target }} --verbose - name: Upload artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: piglet-${{ matrix.target }} path: | diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index 94cdbdc..623c209 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -31,4 +31,4 @@ jobs: uses: actions/checkout@v4 - name: Dependency Review - uses: actions/dependency-review-action@v3 \ No newline at end of file + uses: actions/dependency-review-action@v4 \ No newline at end of file