Skip to content
Open
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions .github/workflows/Build-gear-loader-network.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: [kuberunner]
steps:
- name: "ACTIONS: Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: "Install: Rust toolchain"
uses: ./.github/actions/install-rust
Expand All @@ -21,7 +21,7 @@ jobs:
cargo build --release --locked --package gear-node-loader

- name: Archive production artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: gear-loader
path: |
Expand All @@ -32,15 +32,15 @@ jobs:
needs: build-gear-loader
steps:
- name: "ACTIONS: Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Download artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: gear-loader

- name: Run playbook
uses: dawidd6/action-ansible-playbook@v3
uses: dawidd6/action-ansible-playbook@v5
with:
directory: ./ansible/
playbook: gear-loader-update.yaml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CI-docker-gear.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
fi

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
needs: build
steps:
- name: Download artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6

- name: Delete previous release
uses: dev-drprasad/[email protected]
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
available_region: ${{ steps.get-region.outputs.available_region }}
steps:
- name: AWS Login
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v5
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand All @@ -67,7 +67,7 @@ jobs:
echo "::add-mask::$TOKEN"

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Check Capacity
id: get-region
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
pull-requests: write
steps:
- name: "ACTIONS: Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: "Install: Rust toolchain"
uses: ./.github/actions/install-rust
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
id: upload-errors
# This step will only run if the run-bench step failed
if: ${{ failure() && steps.run-bench.conclusion == 'failure' }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: benchmarking-errors
path: scripts/benchmarking/benchmarking_errors.txt
Expand All @@ -177,7 +177,7 @@ jobs:
# This step will run if benchmarking finished with no errors (upload-errors step was skipped),
# This runs even if baremetal patching was failed - in that case, make sure to handle it.
if: ${{ !cancelled() && steps.upload-errors.conclusion == 'skipped'}}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: weights-output
path: scripts/benchmarking/weights-output
Expand All @@ -188,7 +188,7 @@ jobs:

- name: Create commit
if: ${{ inputs.change-type == 'commit' }}
uses: stefanzweifel/git-auto-commit-action@v5
uses: stefanzweifel/git-auto-commit-action@v7
with:
commit_message: "chore(runtime): update weights"
file_pattern: >-
Expand Down Expand Up @@ -220,14 +220,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: AWS Login
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v5
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-west-2

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
sparse-checkout: terraform

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-node-fuzzer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-unix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
runs-on: ${{ matrix.targets.runs-on }}
steps:
- name: "ACTIONS: Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: "Install: cargo-binstall"
uses: cargo-bins/cargo-binstall@main
Expand All @@ -40,7 +40,7 @@ jobs:
run: cargo binstall --no-confirm cargo-nextest

- name: "ACTIONS: Download node"
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: node-and-runtime-release-${{ matrix.targets.target }}
path: target/release
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
name: build-windows (${{ matrix.profiles.name }})
steps:
- name: "ACTIONS: Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: "ACTIONS: Setup linker"
uses: ./.github/actions/setup-linker
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
${{ matrix.profiles.flags }}

- name: "ACTIONS: Upload workspace"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: nextest-workspace-${{ matrix.profiles.name }}-x86_64-pc-windows-msvc
path: workspace.tar.zst
Expand All @@ -81,7 +81,7 @@ jobs:
name: test-windows (${{ matrix.profiles.name }})
steps:
- name: "ACTIONS: Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: "Install: Rust toolchain"
uses: ./.github/actions/install-rust
Expand All @@ -95,12 +95,12 @@ jobs:
$tmp | Remove-Item

- name: "ACTIONS: Download workspace"
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: nextest-workspace-${{ matrix.profiles.name }}-x86_64-pc-windows-msvc

- name: "ACTIONS: Download node"
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: node-and-runtime-release-x86_64-pc-windows-msvc
path: target/release
Expand Down
26 changes: 13 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
name: node (${{ matrix.targets.name }})
steps:
- name: "ACTIONS: Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: "Install: Setup linker"
uses: ./.github/actions/setup-linker
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
cp target/${{ matrix.targets.target }}/release/wbuild/vara-runtime/*.wasm artifact/wbuild/vara-runtime/

- name: "ACTIONS: Upload node and VARA runtime"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: node-and-runtime-release-${{ matrix.targets.target }}
path: artifact
Expand All @@ -157,7 +157,7 @@ jobs:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: recursive

Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
name: workspace (${{ matrix.profiles.name }})
steps:
- name: "ACTIONS: Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: recursive

Expand Down Expand Up @@ -240,13 +240,13 @@ jobs:
run: cargo build --workspace --all-targets --all-features ${{ matrix.profiles.flags }}

- name: "ACTIONS: Upload example WASMs"
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: examples-${{ matrix.profiles.name }}-wasm32-gear
path: target/wasm32-gear/${{ matrix.profiles.name }}

- name: "ACTIONS: Download node and runtime"
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: node-and-runtime-release-x86_64-unknown-linux-gnu
path: node-and-runtime-release
Expand All @@ -261,7 +261,7 @@ jobs:
needs: workspace
steps:
- name: "ACTIONS: Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: "Install: Setup linker"
uses: ./.github/actions/setup-linker
Expand Down Expand Up @@ -291,7 +291,7 @@ jobs:
name: benchmarks
steps:
- name: "ACTIONS: Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: "Install: Setup linker"
uses: ./.github/actions/setup-linker
Expand Down Expand Up @@ -345,7 +345,7 @@ jobs:
name: try-runtime (${{ matrix.profiles.name }})
steps:
- name: "ACTIONS: Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: "Install: Setup linker"
uses: ./.github/actions/setup-linker
Expand Down Expand Up @@ -403,7 +403,7 @@ jobs:
access_token: ${{ github.token }}

- name: "ACTIONS: Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: "Install: Setup linker"
uses: ./.github/actions/setup-linker
Expand Down Expand Up @@ -463,7 +463,7 @@ jobs:
if: ${{ inputs.production }}
steps:
- name: "ACTIONS: Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: "Install: Setup linker"
uses: ./.github/actions/setup-linker
Expand All @@ -472,7 +472,7 @@ jobs:
uses: ./.github/actions/install-rust

- name: "ACTIONS: Download example WASMs"
uses: actions/download-artifact@v4
uses: actions/download-artifact@v6
with:
name: examples-release-wasm32-gear
path: examples-artifact
Expand All @@ -498,7 +498,7 @@ jobs:

- name: Upload artifacts
if: ${{ github.event_name == 'push' }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
path: artifact

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-node-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
image_name: ${{ steps.image.outputs.image_name }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Get branch
id: branch
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Log in to the github container registry
uses: docker/login-action@v3
Expand Down
Loading
Loading