Update responses folder #70
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update responses folder | |
on: | |
workflow_dispatch: | |
jobs: | |
bruteforce: | |
strategy: | |
fail-fast: false | |
matrix: | |
client: [3] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
with: | |
ref: 'main' | |
- name: install torsocks | |
run: sudo apt install torsocks | |
- name: Update responses folder | |
run: torsocks --debug python innerbrute.py ${{ matrix.client }} | |
- uses: EndBug/add-and-commit@v9 | |
with: | |
message: 'Add clients for ${{ matrix.client }}' | |
pull: '--rebase --autostash' |