build(deps): Bump next from 14.2.3 to 14.2.10 #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##################################### | |
# DO NOT EDIT DIRECTLY. # | |
# This file is managed by Terraform # | |
##################################### | |
on: [pull_request] | |
jobs: | |
gitleaks: | |
runs-on: ubuntu-latest | |
name: Detect Secrets | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Checkout full history to make .gitleaksignore work like it does locally | |
- name: GitLeaks | |
uses: gacts/gitleaks@v1 # Action page: <https://github.com/gacts/gitleaks> | |
with: | |
version: 8.18.4 | |
- name: Add Failure Instructions to Pull Request | |
if: ${{ failure() }} | |
uses: thollander/actions-comment-pull-request@v2 # Action page: <https://github.com/thollander/actions-comment-pull-request> | |
with: | |
message: | | |
:warning: A secret was detected :warning: | |
Follow instructions in [Notion](https://www.notion.so/definitive-io/GitHub-Secret-Prevention-32992307be6a42f6b1a00f7db04d16df) to resolve. |