Skip to content

Commit

Permalink
chore(ci): pin runners to ubuntu-20.04 (#8474)
Browse files Browse the repository at this point in the history
## Problem

As per
[Github](https://github.blog/changelog/2022-11-09-github-actions-ubuntu-latest-workflows-will-use-ubuntu-22-04/)
the `ubuntu-latest` label is transitioning to Ubuntu 22.04. We would
like to continue running on Ubuntu 20.04 for now.

## Solution

Pin runner to Ubuntu 20.04.
  • Loading branch information
joshua-goldstein authored Dec 3, 2022
1 parent 1feadee commit 2b1441d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd-dgraph.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: cd-dgraph
on: workflow_dispatch
jobs:
dgraph-build:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Get Go Version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-dgraph-ldbc-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
- cron: "30 * * * *"
jobs:
dgraph-ldbc-tests:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Checkout Dgraph
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-golang-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
# TODO: uncomment this after release work
# if: github.event.pull_request.draft == false
name: lint
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Get Go Version
Expand Down

0 comments on commit 2b1441d

Please sign in to comment.