Bump github.com/tetratelabs/wazero from 1.8.1 to 1.8.2 in the go grou… #170
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: CI | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- "*" | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
build: | |
uses: wasilibs/actions/.github/workflows/ci.yaml@435fbabb9723e77fd6ba71e6ec8744efd1a56be1 | |
secrets: inherit | |
example: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5 | |
with: | |
go-version-file: go.work | |
cache-dependency-path: "**/go.sum" | |
- name: build example | |
run: go run github.com/bufbuild/buf/cmd/[email protected] generate | |
working-directory: example |