Skip to content
Open
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
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
# Track the latest 1.26 patch automatically so security fixes
# land in CI without needing to bump go.mod every patch release.
Expand Down Expand Up @@ -68,8 +68,8 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
# Track the latest 1.26 patch automatically so security fixes
# land in CI without needing to bump go.mod every patch release.
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
# Codecov now requires a token even on public repos for reliable
# ingestion. CODECOV_TOKEN is set as a repository secret. Failures
# stay non-fatal so a codecov.io outage doesn't break the build.
- uses: codecov/codecov-action@v6
- uses: codecov/codecov-action@v7
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.out
Expand Down Expand Up @@ -172,8 +172,8 @@ jobs:
url: http://localhost:8583/Microsoft-Server-ActiveSync
device: integration00000000000000000003
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
- uses: actions/checkout@v7
- uses: actions/setup-go@v7
with:
# Track the latest 1.26 patch automatically so security fixes
# land in CI without needing to bump go.mod every patch release.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-go@v6
- uses: actions/setup-go@v7
with:
go-version: '1.26'
check-latest: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0 # full history so release notes can diff against the previous tag

- uses: actions/setup-go@v6
- uses: actions/setup-go@v7
with:
go-version: '1.26'
check-latest: true
Expand Down
Loading