Bump dependencies to fix CVE alerts #129
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
# This workflow runs unpriviledged unit tests. | |
name: unit-tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
schedule: | |
# At 03:23 on every 3rd day | |
- cron: "23 3 */3 * *" | |
jobs: | |
run_unit_tests: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '^1.19' | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run unit tests | |
run: make test |