Skip to content

Commit 069a895

Browse files
authored
ci: rm unneeded apt upgrade (#4074)
* ci: print versions Just informative, for the log. * ci: rm unneeded apt upgrade Now that 24.04 has been released, 'apt upgrade' is not needed anymore for this job.
1 parent 497460b commit 069a895

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/CI.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ jobs:
6363
- name: Install dependencies
6464
run: |
6565
apt update --yes
66-
apt upgrade --yes
6766
6867
# NOTE: do not change the below with an `actions/setup-node` step! or it
6968
# would make this CI job entirely pointless
@@ -72,6 +71,9 @@ jobs:
7271
npm install --global yarn
7372
yarn install
7473
74+
- name: Print versions
75+
run: node --version && npm --version && yarn --version
76+
7577
- name: Build
7678
run: yarn build
7779

0 commit comments

Comments
 (0)