@@ -14,7 +14,7 @@ permissions:
1414
1515env :
1616 # run coverage and benchmarks only with the latest Go version
17- LATEST_GO_VERSION : " 1.24 "
17+ LATEST_GO_VERSION : " 1.25 "
1818
1919jobs :
2020 test :
@@ -25,12 +25,12 @@ jobs:
2525 # Echo tests with last four major releases (unless there are pressing vulnerabilities)
2626 # As we depend on `golang.org/x/` libraries which only support last 2 Go releases we could have situations when
2727 # we derive from last four major releases promise.
28- go : ["1.21 ", "1.22 ", "1.23 ", "1.24 "]
28+ go : ["1.22 ", "1.23 ", "1.24 ", "1.25 "]
2929 name : ${{ matrix.os }} @ Go ${{ matrix.go }}
3030 runs-on : ${{ matrix.os }}
3131 steps :
3232 - name : Checkout Code
33- uses : actions/checkout@v4
33+ uses : actions/checkout@v5
3434
3535 - name : Set up Go ${{ matrix.go }}
3636 uses : actions/setup-go@v5
4242
4343 - name : Upload coverage to Codecov
4444 if : success() && matrix.go == env.LATEST_GO_VERSION && matrix.os == 'ubuntu-latest'
45- uses : codecov/codecov-action@v3
45+ uses : codecov/codecov-action@v5
4646 with :
4747 token :
4848 fail_ci_if_error : false
@@ -53,13 +53,13 @@ jobs:
5353 runs-on : ubuntu-latest
5454 steps :
5555 - name : Checkout Code (Previous)
56- uses : actions/checkout@v4
56+ uses : actions/checkout@v5
5757 with :
5858 ref : ${{ github.base_ref }}
5959 path : previous
6060
6161 - name : Checkout Code (New)
62- uses : actions/checkout@v4
62+ uses : actions/checkout@v5
6363 with :
6464 path : new
6565
0 commit comments