Skip to content

Commit

Permalink
Pin GitHub Actions runners to a specific version (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom committed Nov 14, 2023
1 parent 52bb14a commit ecece0a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request, workflow_dispatch]

jobs:
lint:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Install Go
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9
Expand All @@ -20,7 +20,7 @@ jobs:
test:
strategy:
matrix:
platform: [ubuntu-latest, windows-latest]
platform: [ubuntu-22.04, windows-2022]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
run: bin/run-tests-in-docker.sh

coverage:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Install Go
if: success()
Expand Down

0 comments on commit ecece0a

Please sign in to comment.