@@ -50,31 +50,31 @@ jobs:
5050 echo "K8S node: ${K8S_NODE_NAME}"
5151
5252 - name : Checkout Repository
53- uses : actions/checkout@v4
53+ uses : actions/checkout@v6
5454 with :
5555 fetch-depth : 0
5656 fetch-tags : true
5757 persist-credentials : false
5858
5959 - name : Download fda
6060 id : binaries
61- uses : actions/download-artifact@v4
61+ uses : actions/download-artifact@v8
6262 with :
6363 name : fda-${{ matrix.rust_target }}
6464 path : build
6565 run-id : ${{ inputs.artifacts_run_id || github.run_id }}
6666 github-token : ${{ secrets.GITHUB_TOKEN }}
6767
6868 - name : Download pipeline-manager
69- uses : actions/download-artifact@v4
69+ uses : actions/download-artifact@v8
7070 with :
7171 name : pipeline-manager-${{ matrix.rust_target }}
7272 path : build
7373 run-id : ${{ inputs.artifacts_run_id || github.run_id }}
7474 github-token : ${{ secrets.GITHUB_TOKEN }}
7575
7676 - name : Download Compiler Binaries
77- uses : actions/download-artifact@v4
77+ uses : actions/download-artifact@v8
7878 with :
7979 name : feldera-sql-compiler
8080 path : build
@@ -137,7 +137,7 @@ jobs:
137137 touch "$RUNNER_TEMP/digests/${digest#sha256:}"
138138
139139 - name : Upload digest
140- uses : actions/upload-artifact@v4
140+ uses : actions/upload-artifact@v7
141141 with :
142142 name : digests-${{ env.PLATFORM_PAIR }}
143143 path : ${{ runner.temp }}/digests/*
@@ -153,7 +153,7 @@ jobs:
153153 needs : build-docker
154154 steps :
155155 - name : Download digests
156- uses : actions/download-artifact@v4
156+ uses : actions/download-artifact@v8
157157 with :
158158 path : ${{ runner.temp }}/digests
159159 pattern : digests-*
@@ -191,7 +191,7 @@ jobs:
191191 run : |
192192 docker buildx imagetools inspect ${{ vars.FELDERA_IMAGE_NAME }}:${{ steps.meta.outputs.version }}
193193
194- - uses : actions/checkout@v4
194+ - uses : actions/checkout@v6
195195 with :
196196 fetch-depth : 1
197197
@@ -208,7 +208,7 @@ jobs:
208208 run : echo "${{ steps.meta.outputs.version }}" > /tmp/docker-image-ready.txt
209209
210210 - name : Upload docker-image-ready artifact
211- uses : actions/upload-artifact@v4
211+ uses : actions/upload-artifact@v7
212212 with :
213213 name : docker-image-ready
214214 path : /tmp/docker-image-ready.txt
0 commit comments