We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00be9f7 commit 3dfdf1aCopy full SHA for 3dfdf1a
.github/workflows/build.yml
@@ -11,16 +11,17 @@ on:
11
jobs:
12
build:
13
runs-on: ubuntu-latest
14
- container: ghcr.io/tinygo-org/tinygo-dev
+ container:
15
+ image: ghcr.io/tinygo-org/tinygo:latest
16
+ options: --user root
17
steps:
- - name: Work around CVE-2022-24765
- # We're not on a multi-user machine, so this is safe.
18
- run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
19
- name: Checkout
20
- uses: actions/checkout@v3
+ uses: actions/checkout@v6
21
- name: TinyGo version check
22
run: tinygo version
23
- name: Enforce Go Formatted Code
24
run: make fmt-check
25
- name: Run build and smoke tests
26
- run: make smoke-test
+ run: |
+ go env -w GOFLAGS=-buildvcs=false
27
+ make smoke-test
0 commit comments