chore(deps): update all dependencies #300
This file contains hidden or 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
# name: Demo scheduled Run of the Collector | |
# on: | |
# schedule: | |
# - cron: "0 0 * * *" # Runs at 00:00 UTC every day | |
# workflow_dispatch: # Allows manual triggering | |
# jobs: | |
# deploy: | |
# if: github.repository == 'devsecopsmaturitymodel/collector-confluence' && github.ref == 'refs/heads/main' | |
# runs-on: ubuntu-latest | |
# environment: heroku | |
# steps: | |
# - name: Checkout repository | |
# uses: actions/checkout@v4 | |
# - name: Set Heroku branch | |
# run: | | |
# echo "HEROKU_BRANCH=main" >> $GITHUB_ENV | |
# - name: Deploy to Heroku | |
# uses: akhileshns/heroku-deploy@v3.12.14 | |
# with: | |
# heroku_api_key: ${{ secrets.HEROKU_API_KEY }} | |
# heroku_app_name: "collector-confluence" | |
# heroku_email: timo.pagel@owasp.org | |
# branch: ${{ env.HEROKU_BRANCH }} | |