18 lines
314 B
YAML
18 lines
314 B
YAML
name: 'setup-netcat'
|
|
description: 'Github action to setup netcat tool'
|
|
branding:
|
|
icon: search
|
|
color: blue
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Update apt index
|
|
run: |
|
|
apt update
|
|
shell: bash
|
|
|
|
- name: Install netcat
|
|
shell: bash
|
|
run: |
|
|
apt install -y netcat
|