Skip to content

Commit

Permalink
chore: upgrade ubuntu from 20.04 to latest (#2352)
Browse files Browse the repository at this point in the history
  • Loading branch information
Revolyssup authored Feb 12, 2025
1 parent 4b089a3 commit adc70f3
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/e2e-test-ci-v2-cron-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ concurrency:
jobs:
changes:
if: ${{ (!github.event.pull_request.draft && github.event.schedule == '0 0 * * *') }}
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
outputs:
docs: ${{ steps.filter.outputs.docs }}
go: ${{ steps.filter.outputs.go }}
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
- ".github/**"
build:
name: Build
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
needs: changes
if: needs.changes.outputs.go == 'true'

Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
prepare:
needs: changes
if: needs.changes.outputs.go == 'true'
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -151,7 +151,7 @@ jobs:
- changes
- prepare
- build
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
fail-fast: false # If false, GitHub will not cancels all in-progress jobs in the matrix if any matrix job fails.
matrix:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/e2e-test-ci-v2-cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ concurrency:
jobs:
changes:
if: ${{ (!github.event.pull_request.draft && contains(github.event.pull_request.labels.*.name, 'area/test/apiv2')) || github.event.schedule == '0 0 * * *' }}
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
outputs:
docs: ${{ steps.filter.outputs.docs }}
go: ${{ steps.filter.outputs.go }}
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
- ".github/**"
build:
name: Build
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
needs: changes
if: needs.changes.outputs.go == 'true'

Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
prepare:
needs: changes
if: needs.changes.outputs.go == 'true'
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -150,7 +150,7 @@ jobs:
- changes
- prepare
- build
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
fail-fast: false # If false, GitHub will not cancels all in-progress jobs in the matrix if any matrix job fails.
matrix:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/e2e-test-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ concurrency:

jobs:
changes:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
outputs:
docs: ${{ steps.filter.outputs.docs }}
go: ${{ steps.filter.outputs.go }}
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
- ".github/**"
build:
name: Build
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
needs: changes
if: needs.changes.outputs.go == 'true'

Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
prepare:
needs: changes
if: needs.changes.outputs.go == 'true'
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -151,7 +151,7 @@ jobs:
- changes
- prepare
- build
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
fail-fast: false # If false, GitHub will not cancels all in-progress jobs in the matrix if any matrix job fails.
matrix:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/k8s-timer-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ on:

jobs:
changes:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
outputs:
docs: ${{ steps.filter.outputs.docs }}
go: ${{ steps.filter.outputs.go }}
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
- 'utils/**'
build:
name: Build
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
needs: changes

steps:
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
prepare:
needs: changes
if: needs.changes.outputs.go == 'true'
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -131,7 +131,7 @@ jobs:
- changes
- prepare
- build
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
fail-fast: false # If false, GitHub will not cancels all in-progress jobs in the matrix if any matrix job fails.
matrix:
Expand Down

0 comments on commit adc70f3

Please sign in to comment.