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
4 changes: 2 additions & 2 deletions .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
./r10edocker.tmp --version

- name: "Release canary binaries"
# v1.14.0
uses: ncipollo/release-action@2c591bcc8ecdcd2db72b97d6147f871fcd833ba5
# v1.21.0
uses: ncipollo/release-action@339a81892b84b4eeb0f6e744e4574d79d0d9b8dd
with:
tag: "canary"
name: "Canary"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ jobs:
fi

- name: "Release versioned"
# v1.14.0
uses: ncipollo/release-action@2c591bcc8ecdcd2db72b97d6147f871fcd833ba5
# v1.21.0
uses: ncipollo/release-action@339a81892b84b4eeb0f6e744e4574d79d0d9b8dd
with:
allowUpdates: true
generateReleaseNotes: true
Expand Down
15 changes: 9 additions & 6 deletions .github/workflows/sanity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version: [1.24.x]
go-version: [1.26.x]
os: [ubuntu-latest]
steps:
- name: "install golang"
uses: actions/setup-go@v5.0.0
# v6.4.0
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c
with:
go-version: ${{ matrix.go-version }}
cache: false
Expand Down Expand Up @@ -97,11 +98,12 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version: [1.24.x]
go-version: [1.26.x]
os: [ubuntu-latest]
steps:
- name: "install golang"
uses: actions/setup-go@v5.0.0
# v6.4.0
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c
with:
go-version: ${{ matrix.go-version }}
cache: false
Expand All @@ -119,12 +121,13 @@ jobs:
fail-fast: false
# Run on linux and macos
matrix:
go-version: [1.24.x]
go-version: [1.26.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: "install golang"
uses: actions/setup-go@v5.0.0
# v6.4.0
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c
with:
go-version: ${{ matrix.go-version }}
cache: false
Expand Down