Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
# We're not on a multi-user machine, so this is safe.
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v5
- name: TinyGo version check
run: tinygo version
- name: Run unit tests
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
runs-on: windows-2022
steps:
- name: Install Go
uses: actions/setup-go@v4.1.0
uses: actions/setup-go@v6
with:
go-version: '1.21.0'
go-version: '1.25'
- name: Checkout
uses: actions/checkout@v3.6.0
uses: actions/checkout@v5
- name: Run unit tests
run: go test
- name: "Run Windows smoke tests"
Expand Down
Loading