fix: add --no-install-recommends to prevent deprecated package 404s
This commit is contained in:
parent
556e5002f1
commit
7f77c7d208
|
|
@ -15,9 +15,9 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
set -e
|
set -e
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get install -y --fix-missing python3-yaml
|
apt-get install -y --no-install-recommends curl python3-yaml
|
||||||
curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
|
curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
|
||||||
apt-get install -y nodejs
|
apt-get install -y --no-install-recommends nodejs
|
||||||
- name: Check out repository
|
- name: Check out repository
|
||||||
run: |
|
run: |
|
||||||
set -e
|
set -e
|
||||||
|
|
@ -38,9 +38,9 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
set -e
|
set -e
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get install -y --fix-missing python3-yaml
|
apt-get install -y --no-install-recommends curl python3-yaml
|
||||||
curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
|
curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
|
||||||
apt-get install -y nodejs
|
apt-get install -y --no-install-recommends nodejs
|
||||||
- name: Check out repository
|
- name: Check out repository
|
||||||
run: |
|
run: |
|
||||||
set -e
|
set -e
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue