diff --git a/.github/workflows/push_dependabot_metadata.yml b/.github/workflows/push_dependabot_metadata.yml deleted file mode 100644 index 2d7724a..0000000 --- a/.github/workflows/push_dependabot_metadata.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Send data to Security Alerts - -on: - workflow_dispatch: - schedule: - - cron: '0 22 * * *' - -jobs: - send-alerts: - runs-on: pub-hk-ubuntu-24.04-ip - steps: - - name: Create GitHub App Token - uses: actions/create-github-app-token@v1 - id: app-token - with: - app-id: ${{ secrets.SECURITY_ALERTS_GH_APP_ID }} - private-key: ${{ secrets.SECURITY_ALERTS_GH_APP_PRIVKEY }} - owner: heroku - - - name: Checkout code with security-alerts-action - uses: actions/checkout@v4 - with: - repository: heroku/security-alerts-action - token: ${{ steps.app-token.outputs.token }} - ref: public - - - name: Send data to Security Alerts - uses: ./ - with: - webhook-url: ${{ secrets.SECURITY_ALERTS_WEBHOOK_URL }} - sa-token: ${{ secrets.SECURITY_ALERTS_TOKEN }} - gh-app-token: ${{ steps.app-token.outputs.token }}