This repository was archived by the owner on Aug 17, 2025. It is now read-only.
Update module github.com/cloudevents/sdk-go/v2 to v2.15.2 [SECURITY] #222
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: ddnsb0t | |
| on: | |
| push: | |
| paths-ignore: | |
| - "function/**" | |
| - ".github/**" | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go 1.16 | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.16 | |
| id: go | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v4 | |
| - name: Download go modules | |
| run: go mod download | |
| - name: Verify go modules | |
| run: go mod verify | |
| - name: Build | |
| run: go build -v . |