Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:

# Upload artifacts
- name: Upload integritee-node
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: integritee-node-${{ github.sha }}
path: target/release/integritee-node
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:

# Upload artifacts
- name: Upload integritee-node-benchmarks
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: integritee-node-benchmarks-${{ github.sha }}
path: target/release/integritee-node
Expand Down Expand Up @@ -222,7 +222,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
Expand Down Expand Up @@ -302,7 +302,7 @@ jobs:
# cat ${{ matrix.chain }}-diff.txt

- name: Upload ${{ matrix.runtime }} srtool json
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.runtime }}-srtool-json-${{ github.sha }}
path: |
Expand All @@ -314,7 +314,7 @@ jobs:


- name: Upload ${{ matrix.runtime }} runtime
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.runtime }}-runtime-${{ github.sha }}
path: |
Expand Down Expand Up @@ -344,7 +344,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

# - uses: actions/download-artifact@v3
# - uses: actions/download-artifact@v4
# with:
# name: integritee-node-${{ github.sha }}

Expand All @@ -364,7 +364,7 @@ jobs:
# sha256sum ${{ env.CHAIN_SPEC }}.json >> checksums.txt

# - name: Upload ${{ env.CHAIN_SPEC }} Files
# uses: actions/upload-artifact@v3
# uses: actions/upload-artifact@v4
# with:
# name: ${{ env.CHAIN_SPEC }}-${{ github.sha }}
# path: |
Expand Down Expand Up @@ -393,7 +393,7 @@ jobs:
- uses: actions/checkout@v3

- name: Download Integritee Node
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: integritee-node-${{ github.sha }}

Expand Down Expand Up @@ -438,7 +438,7 @@ jobs:
runtime: [ "integritee-node" ]
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
Expand Down
Loading