diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index df827c2..9b55fcd 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: '' @@ -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