Add whois limit, actions, etc

This commit is contained in:
Be
2024-03-03 10:09:55 +01:00
parent ab3634412b
commit 1bc382c3a8
5 changed files with 47 additions and 16 deletions

7
.github/actions/checkout/action.yaml vendored Normal file
View File

@@ -0,0 +1,7 @@
runs:
using: "composite"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # this is required to fetch all history for all branches and tags
token: ${{ env.GH_PAT }}

8
.github/actions/pyInstall/action.yaml vendored Normal file
View File

@@ -0,0 +1,8 @@
runs:
using: "composite"
steps:
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: ./requirements.sh
shell: /bin/bash