Skip to content

Commit c6b404f

Browse files
Copilotclemensv
andcommitted
Fix conditional checks to reference updated runner names
Co-authored-by: clemensv <542030+clemensv@users.noreply.github.com>
1 parent 422b52c commit c6b404f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/perl.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ jobs:
218218
# Requires PAUSE_USERNAME and PAUSE_PASSWORD secrets to be set
219219
publish-cpan:
220220
name: Publish to CPAN
221-
runs-on: ubuntu-latest
221+
runs-on: ubuntu-latest-4-cores
222222
needs: prepare-cpan
223223
if: startsWith(github.ref, 'refs/tags/v')
224224
environment: cpan # Use a protected environment for secrets

.github/workflows/rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ jobs:
6565
run: cargo test --verbose
6666

6767
- name: Run clippy
68-
if: matrix.rust == 'stable' && matrix.os == 'ubuntu-latest'
68+
if: matrix.rust == 'stable' && matrix.os == 'ubuntu-latest-4-cores'
6969
working-directory: rust
7070
run: cargo clippy -- -D warnings
7171

7272
- name: Check formatting
73-
if: matrix.rust == 'stable' && matrix.os == 'ubuntu-latest'
73+
if: matrix.rust == 'stable' && matrix.os == 'ubuntu-latest-4-cores'
7474
working-directory: rust
7575
continue-on-error: true
7676
run: cargo fmt -- --check

0 commit comments

Comments
 (0)