Skip to content

Commit 6e88e3d

Browse files
authored
Use go-version 1.24.x in sanity check in CI (#50)
* Use go-version 1.24.x in sanity check in CI Upgrade to 1.24.x. * GHA: Use checkout action v4.2.2 Roll deps.
1 parent 7595851 commit 6e88e3d

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/canary.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: "Checkout code"
12-
uses: actions/checkout@v4.1.1
12+
uses: actions/checkout@v4.2.2
1313
with:
1414
# Fetch all history for all tags and branches
1515
fetch-depth: 0

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: "Checkout code"
15-
uses: actions/checkout@v4.1.1
15+
uses: actions/checkout@v4.2.2
1616
with:
1717
# Fetch all history for all tags and branches
1818
fetch-depth: 0

.github/workflows/sanity.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
17-
go-version: [1.23.x]
17+
go-version: [1.24.x]
1818
os: [ubuntu-latest]
1919
steps:
2020
- name: "install golang"
@@ -23,7 +23,7 @@ jobs:
2323
go-version: ${{ matrix.go-version }}
2424
cache: false
2525
- name: "checkout code"
26-
uses: actions/checkout@v4.1.1
26+
uses: actions/checkout@v4.2.2
2727
with:
2828
# Fetch all history for all tags and branches
2929
fetch-depth: 0
@@ -96,7 +96,7 @@ jobs:
9696
runs-on: ${{ matrix.os }}
9797
strategy:
9898
matrix:
99-
go-version: [1.23.x]
99+
go-version: [1.24.x]
100100
os: [ubuntu-latest]
101101
steps:
102102
- name: "install golang"
@@ -105,7 +105,7 @@ jobs:
105105
go-version: ${{ matrix.go-version }}
106106
cache: false
107107
- name: "checkout code"
108-
uses: actions/checkout@v4.1.1
108+
uses: actions/checkout@v4.2.2
109109
- name: "test JSON config files"
110110
run: |
111111
set -euxo pipefail
@@ -117,7 +117,7 @@ jobs:
117117
fail-fast: false
118118
# Run on linux and macos
119119
matrix:
120-
go-version: [1.23.x]
120+
go-version: [1.24.x]
121121
os: [ubuntu-latest, macos-latest]
122122
runs-on: ${{ matrix.os }}
123123
steps:
@@ -127,7 +127,7 @@ jobs:
127127
go-version: ${{ matrix.go-version }}
128128
cache: false
129129
- name: "Checkout repository"
130-
uses: actions/checkout@v4.1.1
130+
uses: actions/checkout@v4.2.2
131131
- if: ${{ matrix.os == 'ubuntu-latest' }}
132132
name: Install shellcheck on Ubuntu
133133
run: |

0 commit comments

Comments
 (0)