diff options
author | ManeraKai <manerakai@protonmail.com> | 2022-04-16 16:19:25 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-16 16:19:25 +0300 |
commit | 073fe72e79ce5a1ae13a3762328f7675e1504eef (patch) | |
tree | c0606bfbe1710275946a72d8113518678f246ee4 /.github | |
parent | update instances (diff) | |
download | libredirect-073fe72e79ce5a1ae13a3762328f7675e1504eef.zip |
Update main.yml
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/main.yml | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1d7d62a9..876e752e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,22 +13,21 @@ jobs: - name: get repo content uses: actions/checkout@v2 + - name: install nmap + # You may pin to the exact commit or the version. + # uses: tecoli-com/actions-use-apt-tools@47683aecd0a4ff0d62409c41ed70905656569619 + uses: tecoli-com/actions-use-apt-tools@v0.4 + with: + tools: nmap + - name: setup python uses: actions/setup-python@v2 with: python-version: '3.8' # install the python version needed - - name: install python packages run: | python -m pip install --upgrade pip pip install requests bs4 colorama - - - name: install nmap - # You may pin to the exact commit or the version. - # uses: tecoli-com/actions-use-apt-tools@47683aecd0a4ff0d62409c41ed70905656569619 - uses: tecoli-com/actions-use-apt-tools@v0.4 - with: - tools: nmap - name: run script run: python src/instances/get_instances.py |