Skip to content

Commit

Permalink
Revert "Pin runner to ubuntu 20.04"
Browse files Browse the repository at this point in the history
This reverts commit 55bff9a.
This didn't fix cvmfs mounting, but galaxyproject/planemo-ci-action#38
has.
  • Loading branch information
mvdbeek committed Dec 12, 2022
1 parent 55bff9a commit 64ba0c3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
setup:
name: Setup cache and determine changed repositories
if: github.repository_owner == 'galaxyproject'
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
outputs:
galaxy-head-sha: ${{ steps.get-galaxy-sha.outputs.galaxy-head-sha }}
fork: ${{ steps.get-fork-branch.outputs.fork }}
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
name: Lint workflows
needs: setup
if: needs.setup.outputs.repository-list != ''
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7']
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
test:
name: Test workflows
# This job runs on Linux
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
needs: setup
if: ${{ needs.setup.outputs.repository-list != '' }}
strategy:
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
matrix:
python-version: ['3.7']
# This job runs on Linux
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ on:
jobs:
setup:
name: Setup cache and determine changed repositories
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
outputs:
galaxy-head-sha: ${{ steps.get-galaxy-sha.outputs.galaxy-head-sha }}
repository-list: ${{ steps.discover.outputs.repository-list }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ on:
jobs:
test:
name: Test workflows
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/workflow_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: Lint workflows
needs: setup
if: needs.setup.outputs.repository-list != ''
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7']
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
strategy:
matrix:
python-version: ['3.7']
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
strategy:
matrix:
python-version: ['3.7']
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && github.repository_owner == 'galaxyproject'
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 64ba0c3

Please sign in to comment.