Skip to content

Commit

Permalink
.github/workflows: use a pinned version of Ubuntu (20.04)
Browse files Browse the repository at this point in the history
Updates tailscale/tailscale#6799

Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
  • Loading branch information
bradfitz committed Dec 20, 2022
1 parent e6ce5b5 commit 2cf198b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ on:

jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v2
- name: test
run: cd src && ./all.bash

linux:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
if: github.event_name == 'push'
steps:
- name: checkout
Expand All @@ -44,7 +44,7 @@ jobs:
path: ../linux.tar.gz

darwin:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
if: github.event_name == 'push'
steps:
- name: checkout
Expand All @@ -68,7 +68,7 @@ jobs:
path: ../darwin.tar.gz

linux-arm64:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
if: github.event_name == 'push'
steps:
- name: checkout
Expand All @@ -94,7 +94,7 @@ jobs:


darwin-arm64:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
if: github.event_name == 'push'
steps:
- name: checkout
Expand All @@ -120,7 +120,7 @@ jobs:


release:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
if: github.event_name == 'push'
needs: [test, linux, darwin, darwin-arm64, linux-arm64]
steps:
Expand Down

0 comments on commit 2cf198b

Please sign in to comment.