Skip to content

Commit

Permalink
Convert Bionic CI jobs to run on Focal (#996)
Browse files Browse the repository at this point in the history
Hosted GitHub Actions runners for Bionic are EOL.
  • Loading branch information
cottsay authored May 11, 2023
1 parent e28b676 commit 39d96ea
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
ros1_audit:
name: ROS 1 Audit
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
matrix:
python: ['2.7', '3.6']
Expand All @@ -43,7 +43,7 @@ jobs:

ros1_config:
name: ROS 1 Config Validation
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- name: Check out project
uses: actions/checkout@v2
Expand All @@ -54,10 +54,10 @@ jobs:

ros1_devel:
name: ROS 1 Devel
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
matrix:
python: ['2.7', '3.4', '3.5', '3.6']
python: ['2.7', '3.5', '3.6']
build_tool: [null]
include:
- python: '3.6'
Expand All @@ -81,10 +81,10 @@ jobs:

ros1_doc:
name: ROS 1 Doc
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
matrix:
python: ['2.7', '3.4', '3.5', '3.6']
python: ['2.7', '3.5', '3.6']
steps:
- name: Check out project
uses: actions/checkout@v2
Expand All @@ -103,10 +103,10 @@ jobs:

ros1_prerelease:
name: ROS 1 Prerelease
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
matrix:
python: ['2.7', '3.4', '3.5', '3.6']
python: ['2.7', '3.5', '3.6']
steps:
- name: Check out project
uses: actions/checkout@v2
Expand All @@ -126,10 +126,10 @@ jobs:

ros1_prerelease_external:
name: ROS 1 Prerelease (External)
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
matrix:
python: ['2.7', '3.4', '3.5', '3.6']
python: ['2.7', '3.5', '3.6']
steps:
- name: Check out project
uses: actions/checkout@v2
Expand All @@ -154,10 +154,10 @@ jobs:

ros1_release:
name: ROS 1 Release
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
matrix:
python: ['2.7', '3.4', '3.5', '3.6']
python: ['2.7', '3.5', '3.6']
steps:
- name: Check out project
uses: actions/checkout@v2
Expand All @@ -176,10 +176,10 @@ jobs:

ros1_release_reconfigure:
name: ROS 1 Release Reconfigure
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
matrix:
python: ['2.7', '3.4', '3.5', '3.6']
python: ['2.7', '3.5', '3.6']
steps:
- name: Check out project
uses: actions/checkout@v2
Expand All @@ -197,10 +197,10 @@ jobs:

ros1_status_pages:
name: ROS 1 Status Pages
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
matrix:
python: ['2.7', '3.4', '3.5', '3.6']
python: ['2.7', '3.5', '3.6']
steps:
- name: Check out project
uses: actions/checkout@v2
Expand All @@ -217,10 +217,10 @@ jobs:

ros1_sync_criteria_check:
name: ROS 1 Sync Criteria Check
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
matrix:
python: ['2.7', '3.4', '3.5', '3.6']
python: ['2.7', '3.5', '3.6']
steps:
- name: Check out project
uses: actions/checkout@v2
Expand All @@ -234,10 +234,10 @@ jobs:

ros1_trigger:
name: ROS 1 Trigger
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
strategy:
matrix:
python: ['2.7', '3.4', '3.5', '3.6']
python: ['2.7', '3.5', '3.6']
steps:
- name: Check out project
uses: actions/checkout@v2
Expand Down

0 comments on commit 39d96ea

Please sign in to comment.