Skip to content

Commit

Permalink
Pin GitHub Actions runners to a specific version (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom authored Nov 14, 2023
1 parent 07b38c0 commit d82403f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
precheck:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
Expand All @@ -25,7 +25,7 @@ jobs:
run: yarn lint

unit_tests:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
format:
name: 'Format code'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/format')
steps:
- name: 'Post acknowledgement that it will format code'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.ci.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on: pull_request

jobs:
precheck:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- name: Checkout PR
Expand All @@ -25,7 +25,7 @@ jobs:
run: yarn lint

unit_tests:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify-code-formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
verify:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: 'Checkout code'
uses: actions/checkout@v2
Expand Down

0 comments on commit d82403f

Please sign in to comment.