File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -56,22 +56,22 @@ jobs:
5656 if [ "${{ github.event_name }}" = "push" ]; then
5757 TAGS="$TAGS,${DOCKER_IMAGE}:sha-${GITHUB_SHA::8}"
5858 fi
59- echo ::set-output name= version:: ${VERSION}
60- echo ::set-output name= tags:: ${TAGS}
61- echo ::set-output name= created:: $(date -u +'%Y-%m-%dT%H:%M:%SZ')
59+ echo " version= ${VERSION}" >> $GITHUB_OUTPUT
60+ echo " tags= ${TAGS}" >> $GITHUB_OUTPUT
61+ echo " created= $(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT
6262
6363 - name : Set up Docker Buildx
64- uses : docker/setup-buildx-action@v2
64+ uses : docker/setup-buildx-action@v3
6565
6666 - name : Login to Container registry
67- uses : docker/login-action@v2
67+ uses : docker/login-action@v3
6868 with :
6969 registry : ${{ matrix.registry }}
7070 username : ${{ github.actor }}
7171 password : ${{ secrets.GITHUB_TOKEN }}
7272
7373 - name : Build and push container image
74- uses : docker/build-push-action@v3
74+ uses : docker/build-push-action@v5
7575 with :
7676 context : ${{ matrix.context }}
7777 file : ${{ matrix.context }}/${{ matrix.file }}
Original file line number Diff line number Diff line change @@ -73,13 +73,13 @@ jobs:
7373 mv build/coverage.info build/coverage-Linux-${{ matrix.use_mpi }}-${{ matrix.use_openmp }}-${{ matrix.use_smm }}-cpu.info
7474
7575 - name : Upload coverage data
76- uses : actions/upload-artifact@v3
76+ uses : actions/upload-artifact@v4
7777 with :
7878 name : coverage-data
7979 path : build/coverage-*.info
8080
8181 - name : Upload coverage data (generated files)
82- uses : actions/upload-artifact@v3
82+ uses : actions/upload-artifact@v4
8383 if : matrix.use_mpi == 'MPI=ON' && matrix.use_openmp == 'OPENMP=ON' && matrix.use_smm == 'SMM=blas' && matrix.mpi_suffix == 'openmpi'
8484 with :
8585 name : coverage-data
@@ -199,7 +199,7 @@ jobs:
199199 - uses : actions/checkout@v4
200200
201201 - name : Download coverage data
202- uses : actions/download-artifact@v3
202+ uses : actions/download-artifact@v4
203203 with :
204204 name : coverage-data
205205
@@ -212,7 +212,7 @@ jobs:
212212 lcov --summary merged.info
213213
214214 - name : Upload merged HTML report
215- uses : actions/upload-artifact@v3
215+ uses : actions/upload-artifact@v4
216216 with :
217217 name : html-report
218218 path : htmlcov
You can’t perform that action at this time.
0 commit comments