Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ci][chore] upgrade workflow runner to ubuntu-24.04 #885

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-and-deploy-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
workflow_dispatch:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout 🛎️
uses: actions/checkout@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-preview-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
site-preview:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout 🛎️
uses: actions/checkout@master
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/bump-meshery-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
versions-check:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
outputs:
current: ${{ steps.current.outputs.VERSION }}
steps:
Expand All @@ -23,7 +23,7 @@ jobs:
echo "VERSION=$(cat ./number)" >> $GITHUB_OUTPUT
id: current
bump-meshery:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: versions-check
steps:
- name: Checkout Meshery code
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
assignees: l5io
draft: false
bump-meshery-extensions:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: versions-check
steps:
- name: Checkout Meshery Extensions code
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
assignees: l5io
draft: false
bump-layer5:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: versions-check
steps:
- name: Checkout Layer5 code
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
assignees: l5io
draft: false
bump-meshery-cloud:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: versions-check
steps:
- name: Checkout Meshery Extensions code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
checks:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
node-version: [16, 18, 20]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
- '*'
jobs:
lint:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
node-version: [16, 18, 20]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ env:

jobs:
print-inputs:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:

- run: |
Expand All @@ -45,7 +45,7 @@ jobs:
echo "Env GIT_TAG: ${{ github.event.release.tag_name }}"

docker-build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
-
name: Checkout repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/preview-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
deploy-preview:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
update_release_draft:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
# Drafts your next Release notes as Pull Requests are merged into "master"
- uses: release-drafter/release-drafter@v5
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4

Expand All @@ -21,7 +21,7 @@ jobs:

publish-gpr:
needs: build
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
contents: read
packages: write
Expand All @@ -46,7 +46,7 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
versions-check:
needs: publish-gpr
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/github-script@v7
id: versions
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/slack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
star-notify:
if: github.event_name == 'watch'
name: Notify Slack on star
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Get current star count
run: |
Expand All @@ -21,7 +21,7 @@ jobs:
good-first-issue-notify:
if: github.event_name == 'issues' && github.event.label.name == 'good first issue' || github.event.label.name == 'first-timers-only'
name: Notify Slack for new good-first-issue
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Notify slack
env:
Expand Down