This commit is contained in:
Be
2024-03-03 10:10:55 +01:00
parent 1bc382c3a8
commit 384d53d03c
3 changed files with 16 additions and 11 deletions

View File

@@ -1,7 +0,0 @@
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 }}

View File

@@ -21,7 +21,10 @@ jobs:
shell: bash
steps:
- uses: ./.github/actions/checkout
- uses: actions/checkout@v4
with:
fetch-depth: 0 # this is required to fetch all history for all branches and tags
token: ${{ env.GH_PAT }}
- uses: ./.github/actions/pyInstall
- run: ./blacklists_updater.sh
- uses: ./.github/actions/gitPush

View File

@@ -24,7 +24,10 @@ jobs:
shell: bash
steps:
- uses: ./.github/actions/checkout
- uses: actions/checkout@v4
with:
fetch-depth: 0 # this is required to fetch all history for all branches and tags
token: ${{ env.GH_PAT }}
- uses: ./.github/actions/pyInstall
- run: ./get_info_from_ripe.py --asn --limit 4000
- uses: ./.github/actions/gitPush
@@ -43,7 +46,10 @@ jobs:
needs: get_asn
steps:
- uses: ./.github/actions/checkout
- uses: actions/checkout@v4
with:
fetch-depth: 0 # this is required to fetch all history for all branches and tags
token: ${{ env.GH_PAT }}
- uses: ./.github/actions/pyInstall
- run: ./get_info_from_ripe.py --ipv4 --limit 4000
- uses: ./.github/actions/gitPush
@@ -62,7 +68,10 @@ jobs:
needs: get_ipv4
steps:
- uses: ./.github/actions/checkout
- uses: actions/checkout@v4
with:
fetch-depth: 0 # this is required to fetch all history for all branches and tags
token: ${{ env.GH_PAT }}
- uses: ./.github/actions/pyInstall
- run: ./get_info_from_ripe.py --ipv6 --limit 4000
- uses: ./.github/actions/gitPush