Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
groups:
dev-dependencies:
applies-to: version-updates
patterns:
- '*'
dependency-type: development
production-dependencies:
applies-to: version-updates
patterns:
- '*'
dependency-type: production
cooldown:
default-days: 7
include:
- '*'
exclude:
- react
16 changes: 13 additions & 3 deletions .github/workflows/release-reminder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ jobs:
outputs:
should_run: ${{ steps.should_run.outputs.bool }}
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@a5ad31d6a139d249332a2605b85202e8c0b78450 # v2.19.1
with:
egress-policy: audit

- name: Should run
id: should_run
run: |
Expand Down Expand Up @@ -42,6 +47,11 @@ jobs:
needs: [ determine-date ]
if: ${{ needs.determine-date.outputs.should_run == 'true' }}
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@a5ad31d6a139d249332a2605b85202e8c0b78450 # v2.19.1
with:
egress-policy: audit

- name: Get Date
id: date
run: |
Expand All @@ -52,7 +62,7 @@ jobs:
echo "window_close_date=$window_close_date" >> "${GITHUB_OUTPUT}"

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
with:
token: ${{ secrets.CF_BOT_GITHUB_TOKEN }}
fetch-depth: 0
Expand All @@ -71,7 +81,7 @@ jobs:

- name: File Issue
id: file-issue
uses: paketo-buildpacks/github-config/actions/issue/file@main
uses: paketo-buildpacks/github-config/actions/issue/file@94b73877cdf1df138db21159809bae9653a267cf # main
with:
token: ${{ secrets.CF_BOT_GITHUB_TOKEN }}
repo: ${{ github.repository }}
Expand All @@ -83,7 +93,7 @@ jobs:

- name: Add issue to project
id: issue-to-proj
uses: paketo-buildpacks/github-config/actions/issue/add-to-project@main
uses: paketo-buildpacks/github-config/actions/issue/add-to-project@94b73877cdf1df138db21159809bae9653a267cf # main
with:
# CF buildpacks project - https://github.com/orgs/cloudfoundry/projects/37
project-org: cloudfoundry
Expand Down
13 changes: 13 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
repos:
- repo: https://github.com/gitleaks/gitleaks
rev: v8.16.3
hooks:
- id: gitleaks
- repo: https://github.com/jumanjihouse/pre-commit-hooks
rev: 3.0.0
hooks:
- id: shellcheck
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: end-of-file-fixer