Skip to content

Commit c4bf7df

Browse files
authored
chore: bumping bullfrog to 0.9.2 in docs and ci (#230)
1 parent 1d03e04 commit c4bf7df

3 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/bullfrog.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
diff: ${{ steps.changes.outputs.src }}
2525
steps:
2626
- name: Enable egress filtering
27-
uses: bullfrogsec/bullfrog@4a9cb341c9259028c5aa8a132452004399f8c2db # v0.9.1
27+
uses: bullfrogsec/bullfrog@c8e5fff94e0050c0cef9b9596c55cf3d9c53ba2c # v0.9.2
2828
with:
2929
egress-policy: block
3030
api-token: ${{ secrets.BULLFROG_API_TOKEN }}
@@ -49,7 +49,7 @@ jobs:
4949
if: ${{ needs.check-diff.outputs.diff == 'true' }}
5050
steps:
5151
- name: Enable egress filtering
52-
uses: bullfrogsec/bullfrog@4a9cb341c9259028c5aa8a132452004399f8c2db # v0.9.1
52+
uses: bullfrogsec/bullfrog@c8e5fff94e0050c0cef9b9596c55cf3d9c53ba2c # v0.9.2
5353
with:
5454
egress-policy: block
5555
api-token: ${{ secrets.BULLFROG_API_TOKEN }}
@@ -88,7 +88,7 @@ jobs:
8888

8989
steps:
9090
- name: Enable egress filtering
91-
uses: bullfrogsec/bullfrog@4a9cb341c9259028c5aa8a132452004399f8c2db # v0.9.1
91+
uses: bullfrogsec/bullfrog@c8e5fff94e0050c0cef9b9596c55cf3d9c53ba2c # v0.9.2
9292
with:
9393
egress-policy: block
9494
api-token: ${{ secrets.BULLFROG_API_TOKEN }}
@@ -117,7 +117,7 @@ jobs:
117117
version_tag: ${{ steps.version.outputs.tag }}
118118
steps:
119119
- name: Enable egress filtering
120-
uses: bullfrogsec/bullfrog@4a9cb341c9259028c5aa8a132452004399f8c2db # v0.9.1
120+
uses: bullfrogsec/bullfrog@c8e5fff94e0050c0cef9b9596c55cf3d9c53ba2c # v0.9.2
121121
with:
122122
egress-policy: block
123123
api-token: ${{ secrets.BULLFROG_API_TOKEN }}
@@ -386,7 +386,7 @@ jobs:
386386

387387
steps:
388388
- name: Enable egress filtering
389-
uses: bullfrogsec/bullfrog@4a9cb341c9259028c5aa8a132452004399f8c2db # v0.9.1
389+
uses: bullfrogsec/bullfrog@c8e5fff94e0050c0cef9b9596c55cf3d9c53ba2c # v0.9.2
390390
with:
391391
egress-policy: block
392392
api-token: ${{ secrets.BULLFROG_API_TOKEN }}
@@ -435,7 +435,7 @@ jobs:
435435
minor: ${{ steps.release.outputs.minor }}
436436
steps:
437437
- name: Enable egress filtering
438-
uses: bullfrogsec/bullfrog@4a9cb341c9259028c5aa8a132452004399f8c2db # v0.9.1
438+
uses: bullfrogsec/bullfrog@c8e5fff94e0050c0cef9b9596c55cf3d9c53ba2c # v0.9.2
439439
with:
440440
egress-policy: block
441441
api-token: ${{ secrets.BULLFROG_API_TOKEN }}
@@ -500,7 +500,7 @@ jobs:
500500
needs: [pre-release, pre-release-validation]
501501
steps:
502502
- name: Enable egress filtering
503-
uses: bullfrogsec/bullfrog@4a9cb341c9259028c5aa8a132452004399f8c2db # v0.9.1
503+
uses: bullfrogsec/bullfrog@c8e5fff94e0050c0cef9b9596c55cf3d9c53ba2c # v0.9.2
504504
with:
505505
egress-policy: block
506506
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@4a9cb341c9259028c5aa8a132452004399f8c2db # v0.9.1
16+
uses: bullfrogsec/bullfrog@c8e5fff94e0050c0cef9b9596c55cf3d9c53ba2c # v0.9.2
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@4a9cb341c9259028c5aa8a132452004399f8c2db # v0.9.1
18+
- uses: bullfrogsec/bullfrog@c8e5fff94e0050c0cef9b9596c55cf3d9c53ba2c # v0.9.2
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@4a9cb341c9259028c5aa8a132452004399f8c2db # v0.9.1
65+
- uses: bullfrogsec/bullfrog@c8e5fff94e0050c0cef9b9596c55cf3d9c53ba2c # v0.9.2
6666
```
6767
6868
### Block every outbound connections
6969
7070
```yaml
71-
- uses: bullfrogsec/bullfrog@4a9cb341c9259028c5aa8a132452004399f8c2db # v0.9.1
71+
- uses: bullfrogsec/bullfrog@c8e5fff94e0050c0cef9b9596c55cf3d9c53ba2c # v0.9.2
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@4a9cb341c9259028c5aa8a132452004399f8c2db # v0.9.1
79+
- uses: bullfrogsec/bullfrog@c8e5fff94e0050c0cef9b9596c55cf3d9c53ba2c # v0.9.2
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@4a9cb341c9259028c5aa8a132452004399f8c2db # v0.9.1
91+
- uses: bullfrogsec/bullfrog@c8e5fff94e0050c0cef9b9596c55cf3d9c53ba2c # v0.9.2
9292
with:
9393
egress-policy: block
9494
allowed-ips: |

0 commit comments

Comments
 (0)