Fix: Remove duplicate volume mount
All checks were successful
Infrastructure Audit / audit (push) Successful in 35s
All checks were successful
Infrastructure Audit / audit (push) Successful in 35s
This commit is contained in:
@@ -6,18 +6,16 @@ jobs:
|
|||||||
audit:
|
audit:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
# Використовуємо образ, де точно є Node.js (щоб працював checkout)
|
# Використовуємо образ Node (щоб працював checkout)
|
||||||
|
# Секцію volumes ми ПРИБРАЛИ, бо Runner робить це сам
|
||||||
image: node:16-bullseye
|
image: node:16-bullseye
|
||||||
# Прокидаємо сокет хоста, щоб бачити реальні контейнери
|
|
||||||
volumes:
|
|
||||||
- /var/run/docker.sock:/var/run/docker.sock
|
|
||||||
steps:
|
steps:
|
||||||
- name: 📥 Check out repository
|
- name: 📥 Check out repository
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: 🛠️ Setup Tools
|
- name: 🛠️ Setup Tools
|
||||||
run: |
|
run: |
|
||||||
# Встановлюємо Docker CLI та Python
|
# Встановлюємо Docker CLI (щоб говорити з сокетом, який вже там є)
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get install -y docker.io python3
|
apt-get install -y docker.io python3
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user