Skip to content

Commit

Permalink
Pin GitHub Actions runners to a specific version (#1763)
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
ErikSchierboom authored Nov 14, 2023
1 parent 025710e commit 0f927c9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
jobs:
configlet:
name: configlet lint
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout code
Expand All @@ -28,7 +28,7 @@ jobs:

markdownlint:
name: markdown lint
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout code
Expand All @@ -40,7 +40,7 @@ jobs:
# stolen from https://raw.githubusercontent.com/exercism/github-actions/main/.github/workflows/shellcheck.yml
shellcheck:
name: Run shellcheck on scripts
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
Expand All @@ -50,7 +50,7 @@ jobs:

compilation:
name: Check compilation
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

strategy:
matrix:
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:

tests:
name: Run repository tests
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout code
Expand All @@ -96,7 +96,7 @@ jobs:

rustformat:
name: Check Rust Formatting
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout code
Expand All @@ -119,7 +119,7 @@ jobs:
clippy:
name: Clippy
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout code
Expand All @@ -143,7 +143,7 @@ jobs:

nightly-compilation:
name: Check exercises on nightly (benchmark enabled)
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
continue-on-error: true # It's okay if the nightly job fails

steps:
Expand Down

0 comments on commit 0f927c9

Please sign in to comment.