Skip to content

Commit 81045ef

Browse files
authored
fix: update deprecated ubuntu base dependencies (#1683)
* fix: update deprecated ubuntu base dependencies
1 parent 7cb2063 commit 81045ef

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [pull_request]
44

55
jobs:
66
commitlint:
7-
runs-on: ubuntu-22.04
7+
runs-on: ubuntu-24.04
88
steps:
99
- uses: actions/checkout@v4
1010
with:
@@ -14,7 +14,7 @@ jobs:
1414
sudo apt update
1515
sudo apt install -y sudo
1616
sudo apt install -y git curl
17-
sudo curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
17+
sudo curl -sL https://deb.nodesource.com/setup_20.x | sudo -E bash -
1818
sudo DEBIAN_FRONTEND=noninteractive apt install -y nodejs
1919
sudo npm install -g conventional-changelog-conventionalcommits
2020
sudo npm install -g commitlint@latest
@@ -43,13 +43,13 @@ jobs:
4343
]
4444
include:
4545
- arch: x86_64-unknown-linux-gnu
46-
platform: ubuntu-20.04
46+
platform: ubuntu-24.04
4747
profile: release
4848
- arch: aarch64-apple-darwin
4949
platform: macos-latest
5050
profile: release
5151
- arch: x86_64-pc-windows-gnu
52-
platform: ubuntu-20.04
52+
platform: ubuntu-24.04
5353
profile: release
5454

5555
runs-on: ${{ matrix.platform }}

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515
jobs:
1616
extract-version:
1717
name: extract version
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-24.04
1919
steps:
2020
- name: Extract version
2121
run: echo "VERSION=$(echo ${GITHUB_REF#refs/tags/})" >> $GITHUB_OUTPUT
@@ -37,10 +37,10 @@ jobs:
3737
]
3838
include:
3939
- arch: aarch64-unknown-linux-gnu
40-
platform: ubuntu-20.04
40+
platform: ubuntu-24.04
4141
profile: release
4242
- arch: x86_64-unknown-linux-gnu
43-
platform: ubuntu-20.04
43+
platform: ubuntu-24.04
4444
profile: release
4545
- arch: x86_64-apple-darwin
4646
platform: macos-latest
@@ -49,7 +49,7 @@ jobs:
4949
platform: macos-latest
5050
profile: release
5151
- arch: x86_64-pc-windows-gnu
52-
platform: ubuntu-20.04
52+
platform: ubuntu-24.04
5353
profile: release
5454

5555
runs-on: ${{ matrix.platform }}

book/src/developers/contributing/releases/release_checklist.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ git push upstream v0.1.0-alpha.15
5757
This should take 15-20 min to complete.
5858
5. Find the draft release generated by the github bot in releases and edit the template by completing and deleting all checklists.
5959
Write a short summary if available. Add any clarifying information that's helpful about the release.
60-
6. Scroll to the bottom, check the `Set as a pre-release` box and click `Publish release`.
60+
6. Scroll to the bottom and click `Publish release` (if it's an alpha/beta release, make sure to mark it as pre-release).
6161

6262
### Build Instructions
6363
* [Linux](../build_instructions/linux.md)

testing/utp/docker/circleci/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:22.04
1+
FROM ubuntu:24.04
22

33
RUN apt-get update \
44
&& apt-get install -y ethtool net-tools \

0 commit comments

Comments
 (0)