Skip to content

Commit

Permalink
Prefer a known runner version
Browse files Browse the repository at this point in the history
Even if it's every 2 years, using `latest` is
akin to using `main` for a branch reference

We want to pin the runner version we're
using
  • Loading branch information
kivra-pauoli committed Sep 27, 2024
1 parent 396d05b commit a7dd6af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/erlang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:

build_and_test:

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

name: OTP ${{matrix.otp}}
strategy:
Expand All @@ -33,7 +33,7 @@ jobs:
release:
if: github.ref == 'refs/heads/master' && startsWith(github.event.head_commit.message, 'no-release:') == false
needs: build_and_test
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Bump version and push tag
id: tag_version
Expand Down

0 comments on commit a7dd6af

Please sign in to comment.