Skip to content

Commit 9826963

Browse files
authored
chore: bump bullfrog action to v0.11.1 (#303)
Bumps the pinned `bullfrogsec/bullfrog` action SHA to v0.11.1 in this repo's own workflows and README.
1 parent 7dee337 commit 9826963

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/bullfrog.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
diff: ${{ steps.changes.outputs.src }}
2424
steps:
2525
- name: Enable egress filtering
26-
uses: bullfrogsec/bullfrog@ebd3ce460ed3371d6fd751649fc1637ef0c21a18 # v0.11.0
26+
uses: bullfrogsec/bullfrog@7dee337d4575320b6d8cbe9a56d48d2fb765963a # v0.11.1
2727
with:
2828
egress-policy: block
2929
api-token: ${{ secrets.BULLFROG_API_TOKEN }}
@@ -48,7 +48,7 @@ jobs:
4848
if: ${{ needs.check-diff.outputs.diff == 'true' }}
4949
steps:
5050
- name: Enable egress filtering
51-
uses: bullfrogsec/bullfrog@ebd3ce460ed3371d6fd751649fc1637ef0c21a18 # v0.11.0
51+
uses: bullfrogsec/bullfrog@7dee337d4575320b6d8cbe9a56d48d2fb765963a # v0.11.1
5252
with:
5353
egress-policy: block
5454
api-token: ${{ secrets.BULLFROG_API_TOKEN }}
@@ -81,7 +81,7 @@ jobs:
8181

8282
steps:
8383
- name: Enable egress filtering
84-
uses: bullfrogsec/bullfrog@ebd3ce460ed3371d6fd751649fc1637ef0c21a18 # v0.11.0
84+
uses: bullfrogsec/bullfrog@7dee337d4575320b6d8cbe9a56d48d2fb765963a # v0.11.1
8585
with:
8686
egress-policy: block
8787
api-token: ${{ secrets.BULLFROG_API_TOKEN }}
@@ -105,7 +105,7 @@ jobs:
105105

106106
steps:
107107
- name: Enable egress filtering
108-
uses: bullfrogsec/bullfrog@ebd3ce460ed3371d6fd751649fc1637ef0c21a18 # v0.11.0
108+
uses: bullfrogsec/bullfrog@7dee337d4575320b6d8cbe9a56d48d2fb765963a # v0.11.1
109109
with:
110110
egress-policy: block
111111
api-token: ${{ secrets.BULLFROG_API_TOKEN }}
@@ -188,7 +188,7 @@ jobs:
188188
minor: ${{ steps.release.outputs.minor }}
189189
steps:
190190
- name: Enable egress filtering
191-
uses: bullfrogsec/bullfrog@ebd3ce460ed3371d6fd751649fc1637ef0c21a18 # v0.11.0
191+
uses: bullfrogsec/bullfrog@7dee337d4575320b6d8cbe9a56d48d2fb765963a # v0.11.1
192192
with:
193193
egress-policy: block
194194
api-token: ${{ secrets.BULLFROG_API_TOKEN }}
@@ -239,7 +239,7 @@ jobs:
239239
needs: [pre-release, pre-release-validation]
240240
steps:
241241
- name: Enable egress filtering
242-
uses: bullfrogsec/bullfrog@ebd3ce460ed3371d6fd751649fc1637ef0c21a18 # v0.11.0
242+
uses: bullfrogsec/bullfrog@7dee337d4575320b6d8cbe9a56d48d2fb765963a # v0.11.1
243243
with:
244244
egress-policy: block
245245
api-token: ${{ secrets.BULLFROG_API_TOKEN }}

.github/workflows/conventional-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-22.04
1414
steps:
1515
- name: Enable egress filtering
16-
uses: bullfrogsec/bullfrog@ebd3ce460ed3371d6fd751649fc1637ef0c21a18 # v0.11.0
16+
uses: bullfrogsec/bullfrog@7dee337d4575320b6d8cbe9a56d48d2fb765963a # v0.11.1
1717
with:
1818
egress-policy: block
1919
api-token: ${{ secrets.BULLFROG_API_TOKEN }}

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ For complete documentation, visit [docs.bullfrogsec.com](https://docs.bullfrogse
1515
```yaml
1616
# This action should be the first step of your job, and should be loaded on every separate job.
1717
# If this action is not loaded first, it will not be able to see or block any requests that occured prior to the action running.
18-
- uses: bullfrogsec/bullfrog@ebd3ce460ed3371d6fd751649fc1637ef0c21a18 # v0.11.0
18+
- uses: bullfrogsec/bullfrog@7dee337d4575320b6d8cbe9a56d48d2fb765963a # v0.11.1
1919
with:
2020
# List of IPs to allow outbound connections to.
2121
# By default, only localhost and IPs required for the essential operations of Github Actions are allowed.
@@ -62,21 +62,21 @@ For complete documentation, visit [docs.bullfrogsec.com](https://docs.bullfrogse
6262
The default usage will run in audit mode and will not block any request.
6363
6464
```yaml
65-
- uses: bullfrogsec/bullfrog@ebd3ce460ed3371d6fd751649fc1637ef0c21a18 # v0.11.0
65+
- uses: bullfrogsec/bullfrog@7dee337d4575320b6d8cbe9a56d48d2fb765963a # v0.11.1
6666
```
6767
6868
### Block every outbound connections
6969
7070
```yaml
71-
- uses: bullfrogsec/bullfrog@ebd3ce460ed3371d6fd751649fc1637ef0c21a18 # v0.11.0
71+
- uses: bullfrogsec/bullfrog@7dee337d4575320b6d8cbe9a56d48d2fb765963a # v0.11.1
7272
with:
7373
egress-policy: block
7474
```
7575
7676
### Only allow requests to domains required for pulling a docker image from the docker hub
7777
7878
```yaml
79-
- uses: bullfrogsec/bullfrog@ebd3ce460ed3371d6fd751649fc1637ef0c21a18 # v0.11.0
79+
- uses: bullfrogsec/bullfrog@7dee337d4575320b6d8cbe9a56d48d2fb765963a # v0.11.1
8080
with:
8181
egress-policy: block
8282
allowed-domains: |
@@ -88,7 +88,7 @@ The default usage will run in audit mode and will not block any request.
8888
### Only allow requests to a specific IP address without blocking DNS requests
8989
9090
```yaml
91-
- uses: bullfrogsec/bullfrog@ebd3ce460ed3371d6fd751649fc1637ef0c21a18 # v0.11.0
91+
- uses: bullfrogsec/bullfrog@7dee337d4575320b6d8cbe9a56d48d2fb765963a # v0.11.1
9292
with:
9393
egress-policy: block
9494
allowed-ips: |

0 commit comments

Comments
 (0)