From b0d2fe1fb78d21a22ea5b7381c59b5ae14335f1d Mon Sep 17 00:00:00 2001 From: Airyzz <36567925+Airyzz@users.noreply.github.com> Date: Thu, 9 Apr 2026 19:19:35 +0930 Subject: [PATCH 1/2] downgrade linux runner version --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index df827c2..738fa2c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: fail-fast: false matrix: include: - - platform: 'ubuntu-latest' + - platform: 'ubuntu-22.04' args: '' - platform: 'windows-latest' args: '' From e6f649c480cb869c9073118d97a12503832328a2 Mon Sep 17 00:00:00 2001 From: Airyzz <36567925+Airyzz@users.noreply.github.com> Date: Thu, 9 Apr 2026 19:21:19 +0930 Subject: [PATCH 2/2] needed to change it in more places --- .github/workflows/release.yml | 8 ++++---- .github/workflows/static_analysis.yml | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 738fa2c..9b55fcd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: node-version: lts/* - name: install dependencies (ubuntu only) - if: matrix.platform == 'ubuntu-latest' + if: matrix.platform == 'ubuntu-22.04' run: | sudo apt-get update sudo apt-get install -y libwebkit2gtk-4.1-dev @@ -66,7 +66,7 @@ jobs: run: cargo build -r - name: Upload to release (Linux) - if: github.event_name == 'release' && matrix.platform == 'ubuntu-latest' + if: github.event_name == 'release' && matrix.platform == 'ubuntu-22.04' uses: actions/upload-release-asset@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -88,7 +88,7 @@ jobs: asset_content_type: application/octet-stream release-blender-integration: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 @@ -110,7 +110,7 @@ jobs: asset_content_type: application/zip release-inkscape-integration: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/static_analysis.yml b/.github/workflows/static_analysis.yml index e8d9108..37f536f 100644 --- a/.github/workflows/static_analysis.yml +++ b/.github/workflows/static_analysis.yml @@ -10,7 +10,7 @@ jobs: fail-fast: false matrix: include: - - platform: 'ubuntu-latest' + - platform: 'ubuntu-22.04' args: '' - platform: 'windows-latest' args: '' @@ -28,7 +28,7 @@ jobs: node-version: lts/* - name: install dependencies (ubuntu only) - if: matrix.platform == 'ubuntu-latest' + if: matrix.platform == 'ubuntu-22.04' run: | sudo apt-get update sudo apt-get install -y libwebkit2gtk-4.1-dev @@ -51,7 +51,7 @@ jobs: formatting: name: cargo fmt - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1