Skip to content

Commit

Permalink
Use ubuntu-latest in workflows (netty#12728)
Browse files Browse the repository at this point in the history
Motivation:

ubuntu-18.04 is deprecated. Let's just use ubuntu-latest

Modifications:

Use ubuntu-latest in workflows

Result:

Cleanup
  • Loading branch information
normanmaurer committed Aug 23, 2022
1 parent 4292669 commit 57dbfb0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
if-no-files-found: error

deploy-staged-snapshots:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
# Wait until we have staged everything
needs: stage-snapshot
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ env:

jobs:
verify-pr:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-release-5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ env:

jobs:
prepare-release:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
run: bash ./.github/scripts/release_rollback.sh release.properties netty/netty main

deploy-staged-release:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
# Wait until we have staged everything
needs: stage-release-linux
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ env:

jobs:
prepare-release:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
run: bash ./.github/scripts/release_rollback.sh release.properties netty/netty 4.1

deploy-staged-release:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
# Wait until we have staged everything
needs: stage-release-linux
steps:
Expand Down

0 comments on commit 57dbfb0

Please sign in to comment.