Skip to content

chore(deps): bump opentelemetry-go monorepo #281

chore(deps): bump opentelemetry-go monorepo

chore(deps): bump opentelemetry-go monorepo #281

Workflow file for this run

name: CI
on: # yamllint disable-line rule:truthy
pull_request:
branches:
- main
push:
branches:
- main
- next
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
with:
go-version-file: go.mod
- uses: jdx/mise-action@6d1e696aa24c1aa1bcc1adea0212707c71ab78a8 # v3.6.1
- run: make clean
- run: make generate
- run: make check
- name: check for changes
run: |
if [[ -n $(git status --porcelain) ]]; then
git status
git diff
echo "Files have changed, failing CI"
exit 1
fi
- run: make build
- run: make test
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: builds
path: |
dist/*.tar.gz
dist/metadata.json
dist/config.yaml
dist/artifacts.json
dist/*_checksums.txt
retention-days: 5