Bump github.com/mattn/go-sqlite3 from 1.14.22 to 1.14.32 #793
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: Webhook Broker CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: '1.23.0' | |
- name: Create dist | |
run: mkdir ./dist/ | |
- name: Run Test & Build | |
run: make os-deps dep-tools deps build ci-test | |
- name: Upload build artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist-app | |
path: dist/webhook-broker-*.tar.bz2 |