chore(deps): update all dependencies (#415) #147
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
name: Index and upload LSIF data to sourcegraph.com | |
on: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: read | |
jobs: | |
index-and-upload: | |
runs-on: ubuntu-latest | |
container: sourcegraph/lsif-go@sha256:2194d2652862966f022b537ed81bccf5a9a535ab763534cb4e98a3083c8a1bc6 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Generate LSIF data | |
run: lsif-go | |
- name: Upload LSIF data to Sourcegraph | |
# Ignore failures to avoid disrupting CI pipelines with non-critical errors. | |
run: src lsif upload -no-progress -github-token=${{ secrets.GITHUB_TOKEN }} -ignore-upload-failure |