Vendor Dep Updates #27
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
# This is a basic workflow to help you get started with Actions | |
name: Vendor Dep Updates | |
# Controls when the action will run. | |
on: | |
schedule: | |
- cron: "0 7,19 * * *" # This is in UTC time which makes the actual run 1AM and 1PM CST | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
vendor-updates: | |
uses: Frc5572/Workflows/.github/workflows/update-dependencies.yml@main | |
secrets: inherit |