Chore(deps): Bump github.com/prometheus/client_golang from 1.19.1 to 1.20.4 #383
Workflow file for this run
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
# Stage builds through GitHub Actions (GHA). | |
name: Builds | |
on: | |
pull_request: ~ | |
push: | |
branches: [ main ] | |
# Allow job to be triggered manually. | |
workflow_dispatch: | |
# Run builds each night. | |
schedule: | |
- cron: '0 5 * * *' | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Acquire sources | |
uses: actions/checkout@v4 | |
- name: Run build job | |
run: ./devtools/release.sh |