Skip to content

Commit

Permalink
Stop denial of service attacking git repositories.
Browse files Browse the repository at this point in the history
  • Loading branch information
saurik committed Feb 27, 2024
1 parent 514996b commit 8b82de3
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,18 @@ jobs:



cache-submodule:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- run: env/setup.sh
- uses: ./.github/actions/submodule



build-flt-orc:
needs: [cache-submodule]
runs-on: macos-latest

steps:
Expand All @@ -22,6 +33,7 @@ jobs:


build-ios-app:
needs: [cache-submodule]
runs-on: macos-latest

steps:
Expand All @@ -33,6 +45,7 @@ jobs:


build-and-app:
needs: [cache-submodule]
runs-on: ubuntu-latest

steps:
Expand All @@ -53,6 +66,7 @@ jobs:


build-and-dkr:
needs: [cache-submodule]
runs-on: ubuntu-latest

steps:
Expand All @@ -67,6 +81,7 @@ jobs:


build-mac-app:
needs: [cache-submodule]
runs-on: macos-latest

steps:
Expand All @@ -78,6 +93,7 @@ jobs:


build-mac-snd:
needs: [cache-submodule]
runs-on: macos-latest

steps:
Expand All @@ -94,6 +110,7 @@ jobs:


build-mac-cli:
needs: [cache-submodule]
runs-on: macos-latest

steps:
Expand All @@ -110,6 +127,7 @@ jobs:


build-mac-srv:
needs: [cache-submodule]
runs-on: macos-latest

if: ${{ false }} # XXX: Hypervisor.framework
Expand All @@ -132,6 +150,7 @@ jobs:


build-win-app:
needs: [cache-submodule]
runs-on: ubuntu-latest

steps:
Expand All @@ -151,6 +170,7 @@ jobs:


build-win-snd:
needs: [cache-submodule]
runs-on: ubuntu-latest

steps:
Expand All @@ -169,6 +189,7 @@ jobs:


build-win-cli:
needs: [cache-submodule]
runs-on: ubuntu-latest

steps:
Expand All @@ -187,6 +208,7 @@ jobs:


build-win-srv:
needs: [cache-submodule]
runs-on: macos-latest

if: ${{ false }} # XXX: use Hyper-V
Expand All @@ -210,6 +232,7 @@ jobs:


build-lnx-app:
needs: [cache-submodule]
runs-on: ubuntu-latest

steps:
Expand All @@ -227,6 +250,7 @@ jobs:


build-lnx-tst:
needs: [cache-submodule]
runs-on: ubuntu-latest

steps:
Expand All @@ -238,6 +262,7 @@ jobs:


build-lnx-cli:
needs: [cache-submodule]
runs-on: ubuntu-latest

strategy:
Expand All @@ -259,6 +284,7 @@ jobs:


build-lnx-srv:
needs: [cache-submodule]
runs-on: ubuntu-latest

strategy:
Expand Down Expand Up @@ -286,6 +312,7 @@ jobs:


build-lnx-dkr:
needs: [cache-submodule]
runs-on: ubuntu-latest

steps:
Expand All @@ -299,6 +326,7 @@ jobs:


build-lnx-bld:
needs: [cache-submodule]
runs-on: ubuntu-latest

steps:
Expand All @@ -316,6 +344,7 @@ jobs:


build-lnx-mac:
needs: [cache-submodule]
runs-on: macos-latest

steps:
Expand All @@ -335,6 +364,7 @@ jobs:


build-lnx-bad:
needs: [cache-submodule]
runs-on: ubuntu-latest

steps:
Expand Down

0 comments on commit 8b82de3

Please sign in to comment.