From 19c534c12e30a6bbd249412c7287d66f14085409 Mon Sep 17 00:00:00 2001 From: "Alisher A. Khassanov" Date: Mon, 28 Oct 2024 10:42:57 +0500 Subject: [PATCH 1/2] Update `ci.yaml` runners to Ubuntu 24.04 --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index db3ee2780..28b736677 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -17,7 +17,7 @@ permissions: jobs: format: name: Check Lints - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v3 @@ -36,7 +36,7 @@ jobs: check: name: Cargo check needs: format - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v3 - name: Install linux dependencies @@ -72,7 +72,7 @@ jobs: clippy: name: Run Clippy needs: format - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v3 - name: Install linux dependencies From a3afa856b834f6d9370cc5cd75117b9d28b680a0 Mon Sep 17 00:00:00 2001 From: "Alisher A. Khassanov" Date: Mon, 28 Oct 2024 15:39:16 +0500 Subject: [PATCH 2/2] Make CI and branch protection rules happy --- runtime/cere-dev/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/cere-dev/src/lib.rs b/runtime/cere-dev/src/lib.rs index 11f8a2600..2798d05af 100644 --- a/runtime/cere-dev/src/lib.rs +++ b/runtime/cere-dev/src/lib.rs @@ -149,7 +149,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion { // and set impl_version to 0. If only runtime // implementation changes and behavior does not, then leave spec_version as // is and increment impl_version. - spec_version: 60002, + spec_version: 60003, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 20,