Skip to content

Commit

Permalink
Switch GitHub Actions to use ubuntu-latest
Browse files Browse the repository at this point in the history
Fixes the following error when running actions on a fork:

    Can't find any online and idle self-hosted runner in the current repository, account/organization that matches the required labels: 'ubuntu-16.04'
    Waiting for a self-hosted runner to pickup this job...
  • Loading branch information
jdufresne committed Sep 15, 2021
1 parent e94fba8 commit a042aeb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -37,7 +37,7 @@ jobs:
gemfile: gemfiles/rails_6.1.gemfile
orm: mongoid
adapter: sqlite3
runs-on: ubuntu-16.04
runs-on: ubuntu-latest
services:
mysql:
image: mysql:8.0
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
coveralls:
name: Coveralls
needs: rspec
runs-on: ubuntu-16.04
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
Expand All @@ -104,7 +104,7 @@ jobs:

rubocop:
name: RuboCop
runs-on: ubuntu-16.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
Expand Down

0 comments on commit a042aeb

Please sign in to comment.