2024-09-05 18:33:03 +00:00
|
|
|
name: 'setup-netcat'
|
|
|
|
description: 'Github action to setup netcat tool'
|
2024-09-05 18:29:10 +00:00
|
|
|
branding:
|
2024-09-05 18:33:03 +00:00
|
|
|
icon: search
|
|
|
|
color: blue
|
2024-09-05 18:29:10 +00:00
|
|
|
runs:
|
|
|
|
using: "composite"
|
|
|
|
steps:
|
2024-09-05 18:33:03 +00:00
|
|
|
- name: Update apt index
|
2024-09-05 18:29:10 +00:00
|
|
|
run: |
|
2024-09-05 18:33:03 +00:00
|
|
|
apt update
|
|
|
|
shell: bash
|
2024-09-05 18:29:10 +00:00
|
|
|
|
2024-09-05 18:33:03 +00:00
|
|
|
- name: Install netcat
|
2024-09-05 18:29:10 +00:00
|
|
|
shell: bash
|
|
|
|
run: |
|
2024-09-05 18:33:03 +00:00
|
|
|
apt install -y netcat
|