Skip to content

Commit

Permalink
bump ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
gdams committed Dec 21, 2022
1 parent c91294f commit e9b0010
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/advanced-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]
jobs:
build_job:
# The host should always be linux
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
name: Build on ${{ matrix.distro }} ${{ matrix.arch }}

# Run steps on a matrix of 4 arch/distro combinations
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/basic-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ on: [push, pull_request]
jobs:
armv7_job:
# The host should always be linux
runs-on: ubuntu-18.04
name: Build on ubuntu-18.04 armv7
runs-on: ubuntu-20.04
name: Build on ubuntu-20.04 armv7
steps:
- uses: actions/checkout@v3
- uses: uraimo/run-on-arch-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/swift-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on: [push, pull_request]

jobs:
testactions_job:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
name: A job to test the multi architecture actions
steps:
- name: Checkout
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ on: [push, pull_request]
jobs:
armv7_job:
# The host should always be Linux
runs-on: ubuntu-18.04
name: Build on ubuntu-18.04 armv7
runs-on: ubuntu-20.04
name: Build on ubuntu-20.04 armv7
steps:
- uses: actions/checkout@v3
- uses: uraimo/run-on-arch-action@v2
Expand Down Expand Up @@ -67,7 +67,7 @@ on: [push, pull_request]
jobs:
build_job:
# The host should always be linux
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
name: Build on ${{ matrix.distro }} ${{ matrix.arch }}

# Run steps on a matrix of 3 arch/distro combinations
Expand Down

0 comments on commit e9b0010

Please sign in to comment.