Skip to content

Commit

Permalink
Merge pull request #1808 from authzed/add-dependabot-to-update-actions
Browse files Browse the repository at this point in the history
adds dependabot configuration to update GitHub Actions
  • Loading branch information
vroldanbet authored Mar 19, 2024
2 parents 32e903f + 413c6e8 commit a2f45a3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,7 @@ updates:
interval: "monthly"
labels:
- "area/dependencies"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
8 changes: 7 additions & 1 deletion .github/workflows/security.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ on: # yamllint disable-line rule:truthy
merge_group:
types:
- "checks_requested"
env:
DOCKERHUB_PUBLIC_ACCESS_TOKEN: "dckr_pat_8AEETZWxu8f7FvJUk9NrpyX_ZEQ"
DOCKERHUB_PUBLIC_USER: "spicedbgithubactions"
jobs:

codeql:
name: "CodeQL Analyze"
if: "${{ github.event_name == 'pull_request' }}" # workaround to https://github.com/github/codeql-action/issues/1537
Expand Down Expand Up @@ -41,6 +43,10 @@ jobs:
steps:
- uses: "actions/checkout@v3"
- uses: "authzed/actions/setup-go@main"
- uses: "docker/login-action@v3"
with:
username: "${{ env.DOCKERHUB_PUBLIC_USER }}"
password: "${{ env.DOCKERHUB_PUBLIC_ACCESS_TOKEN }}"
- uses: "aquasecurity/trivy-action@master"
with:
scan-type: "fs"
Expand Down

0 comments on commit a2f45a3

Please sign in to comment.