Skip to content

fix(deps): update module github.com/sashabaranov/go-openai to v1.31.0 #89

fix(deps): update module github.com/sashabaranov/go-openai to v1.31.0

fix(deps): update module github.com/sashabaranov/go-openai to v1.31.0 #89

Workflow file for this run

name: keep vendored branch up to date
on:
push:
branches: ["main"]
jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: vendor
run: |
git config user.name "github-actions[bot]"
git config user.email "bat+bot@sbz.fr"
git checkout -b vendored
go mod vendor
git add .
git commit -m "vendored"
git push -f origin vendored