Skip to content

Commit

Permalink
Pin OS to specific versions (#673)
Browse files Browse the repository at this point in the history
With this, runner images are pinned to specific versions instead of
referring to `latest`. This allows to have a controlled upgrade path
instead instead of just waiting for when a change in the reference
affects the workflows.
  • Loading branch information
marbre authored Dec 11, 2024
1 parent 690274a commit 6c62ed1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-sharktank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
strategy:
matrix:
version: [3.11]
os: [ubuntu-latest, windows-latest]
os: [ubuntu-24.04, windows-2022]
fail-fast: false
runs-on: ${{matrix.os}}
defaults:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-tuner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ permissions:

jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
pre-commit:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0
Expand Down

0 comments on commit 6c62ed1

Please sign in to comment.