File tree 2 files changed +10
-10
lines changed
2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -56,22 +56,22 @@ jobs:
56
56
if [ "${{ github.event_name }}" = "push" ]; then
57
57
TAGS="$TAGS,${DOCKER_IMAGE}:sha-${GITHUB_SHA::8}"
58
58
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
62
62
63
63
- name : Set up Docker Buildx
64
- uses : docker/setup-buildx-action@v2
64
+ uses : docker/setup-buildx-action@v3
65
65
66
66
- name : Login to Container registry
67
- uses : docker/login-action@v2
67
+ uses : docker/login-action@v3
68
68
with :
69
69
registry : ${{ matrix.registry }}
70
70
username : ${{ github.actor }}
71
71
password : ${{ secrets.GITHUB_TOKEN }}
72
72
73
73
- name : Build and push container image
74
- uses : docker/build-push-action@v3
74
+ uses : docker/build-push-action@v5
75
75
with :
76
76
context : ${{ matrix.context }}
77
77
file : ${{ matrix.context }}/${{ matrix.file }}
Original file line number Diff line number Diff line change @@ -73,13 +73,13 @@ jobs:
73
73
mv build/coverage.info build/coverage-Linux-${{ matrix.use_mpi }}-${{ matrix.use_openmp }}-${{ matrix.use_smm }}-cpu.info
74
74
75
75
- name : Upload coverage data
76
- uses : actions/upload-artifact@v3
76
+ uses : actions/upload-artifact@v4
77
77
with :
78
78
name : coverage-data
79
79
path : build/coverage-*.info
80
80
81
81
- name : Upload coverage data (generated files)
82
- uses : actions/upload-artifact@v3
82
+ uses : actions/upload-artifact@v4
83
83
if : matrix.use_mpi == 'MPI=ON' && matrix.use_openmp == 'OPENMP=ON' && matrix.use_smm == 'SMM=blas' && matrix.mpi_suffix == 'openmpi'
84
84
with :
85
85
name : coverage-data
@@ -199,7 +199,7 @@ jobs:
199
199
- uses : actions/checkout@v4
200
200
201
201
- name : Download coverage data
202
- uses : actions/download-artifact@v3
202
+ uses : actions/download-artifact@v4
203
203
with :
204
204
name : coverage-data
205
205
@@ -212,7 +212,7 @@ jobs:
212
212
lcov --summary merged.info
213
213
214
214
- name : Upload merged HTML report
215
- uses : actions/upload-artifact@v3
215
+ uses : actions/upload-artifact@v4
216
216
with :
217
217
name : html-report
218
218
path : htmlcov
You can’t perform that action at this time.
0 commit comments