2024-09-05 18:33:03 +00:00
|
|
|
# setup-netcat
|
|
|
|
|
2024-09-05 20:37:29 +00:00
|
|
|
GiHhub action to set up netcat on an ubuntu runner with the apt package manager
|
|
|
|
|
|
|
|
usage example
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
name: Main
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: runner
|
|
|
|
steps:
|
|
|
|
- name: Setup netcat tools
|
2024-09-15 10:56:35 +00:00
|
|
|
uses: https://antoine-roux.tk/projects/actions/setup-netcat@v1.0.0
|
2024-09-05 20:37:29 +00:00
|
|
|
id: setup-netcat
|
|
|
|
```
|