From d1d2d9830ff3ac65347196d403b7f791de2879fd Mon Sep 17 00:00:00 2001 From: Christian Langenbacher Date: Wed, 11 Dec 2024 09:40:21 +0100 Subject: [PATCH 1/2] [CI] bump artifact actions to v4 --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fa71fca..50ff133 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -85,7 +85,7 @@ jobs: # Upload artifacts - name: Upload integritee-collator - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: integritee-collator-${{ github.sha }} path: target/release/integritee-collator @@ -140,7 +140,7 @@ jobs: # Upload artifacts - name: Upload integritee-collator - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: integritee-collator-${{ github.sha }} path: target/release/integritee-collator @@ -208,7 +208,7 @@ jobs: run: cargo +stable about generate about.hbs > license.html - name: Archive license file - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: license path: license.html @@ -329,7 +329,7 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: integritee-collator-${{ github.sha }} @@ -376,7 +376,7 @@ jobs: - uses: actions/checkout@v3 - name: Download Integritee Collator - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: integritee-collator-${{ github.sha }} @@ -421,7 +421,7 @@ jobs: runtime: [ "shell", "integritee" ] steps: - uses: actions/checkout@v3 - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 - name: Set up Ruby 3 uses: ruby/setup-ruby@v1 From 29917a6946f605cedb73166f216b5f80b72f5072 Mon Sep 17 00:00:00 2001 From: Christian Langenbacher Date: Wed, 11 Dec 2024 10:27:48 +0100 Subject: [PATCH 2/2] [CI] fix duplicate artifact name --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 50ff133..43c5c52 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -142,7 +142,7 @@ jobs: - name: Upload integritee-collator uses: actions/upload-artifact@v4 with: - name: integritee-collator-${{ github.sha }} + name: integritee-collator-try-and-benchmark-runtime-${{ github.sha }} path: target/release/integritee-collator - name: Slack Notification