@@ -18,11 +18,11 @@ jobs:
1818
1919 steps :
2020 - name : Checkout
21- uses : actions/checkout@v2
21+ uses : actions/checkout@v4
2222
23- - uses : actions/setup-go@v3
23+ - uses : actions/setup-go@v4
2424 with :
25- go-version : 1.22
25+ go-version : 1.23.1
2626 cache : true
2727
2828
@@ -60,17 +60,17 @@ jobs:
6060 - shell : bash
6161 run : |
6262 echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
63- - uses : actions/upload-artifact@v3
63+ - uses : actions/upload-artifact@v4
6464 if : matrix.os == 'ubuntu-latest'
6565 with :
6666 path : dist/linux
6767 name : linux-${{ env.sha_short }}
68- - uses : actions/upload-artifact@v3
68+ - uses : actions/upload-artifact@v4
6969 if : matrix.os == 'macos-latest'
7070 with :
7171 path : dist/darwin
7272 name : darwin-${{ env.sha_short }}
73- - uses : actions/upload-artifact@v3
73+ - uses : actions/upload-artifact@v4
7474 if : matrix.os == 'windows-latest'
7575 with :
7676 path : dist/windows
@@ -80,12 +80,12 @@ jobs:
8080 runs-on : ubuntu-latest
8181 needs : build
8282 steps :
83- - uses : actions/checkout@v3
83+ - uses : actions/checkout@v4
8484 with :
8585 fetch-depth : 0
86- - uses : actions/setup-go@v3
86+ - uses : actions/setup-go@v4
8787 with :
88- go-version : 1.22
88+ go-version : 1.23.1
8989 cache : true
9090
9191 - name : GCP auth
@@ -96,15 +96,15 @@ jobs:
9696 # copy the caches from prepare
9797 - shell : bash
9898 run : echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
99- - uses : actions/download-artifact@v3
99+ - uses : actions/download-artifact@v4
100100 with :
101101 path : dist/linux
102102 name : linux-${{ env.sha_short }}
103- - uses : actions/download-artifact@v3
103+ - uses : actions/download-artifact@v4
104104 with :
105105 path : dist/darwin
106106 name : darwin-${{ env.sha_short }}
107- - uses : actions/download-artifact@v3
107+ - uses : actions/download-artifact@v4
108108 with :
109109 path : dist/windows
110110 name : windows-${{ env.sha_short }}
@@ -137,7 +137,7 @@ jobs:
137137 # For macOS, we need to modify the hashes for the zips ot match
138138 # those of the notarized ZIPs, rather than the build output zips.
139139 - name : Checkout homebrew-otterize
140- uses : actions/checkout@v2
140+ uses : actions/checkout@v4
141141 with :
142142 token : ${{ secrets.OTTERIZEBOT_GITHUB_TOKEN }}
143143 repository : otterize/homebrew-otterize
@@ -149,7 +149,7 @@ jobs:
149149 steps :
150150
151151 - name : Checkout docs
152- uses : actions/checkout@v2
152+ uses : actions/checkout@v4
153153 with :
154154 token : ${{ secrets.OTTERIZEBOT_GITHUB_TOKEN }}
155155 repository : otterize/docs
@@ -172,7 +172,7 @@ jobs:
172172 needs : release
173173 steps :
174174 - name : Checkout docs
175- uses : actions/checkout@v2
175+ uses : actions/checkout@v4
176176 with :
177177 token : ${{ secrets.OTTERIZEBOT_GITHUB_TOKEN }}
178178 repository : otterize/network-mapper
@@ -195,7 +195,7 @@ jobs:
195195 needs : release
196196 steps :
197197 - name : Checkout CLI
198- uses : actions/checkout@v2
198+ uses : actions/checkout@v4
199199 with :
200200 token : ${{ secrets.OTTERIZEBOT_GITHUB_TOKEN }}
201201 path : ./cli
0 commit comments