@@ -13,12 +13,12 @@ jobs:
1313 matrix : ${{ steps.set-matrix.outputs.matrix }}
1414 steps :
1515 - name : Checkout repository
16- uses : actions/checkout@v2
16+ uses : actions/checkout@v3
1717 - id : set-matrix
1818 name : Read config from matrix.json
1919 run : |
2020 TASKS=$(echo $(cat .github/workflows/matrix.json) | sed 's/ //g' )
21- echo "::set-output name= matrix:: $TASKS"
21+ echo "matrix= $TASKS" >> $GITHUB_OUTPUT
2222
2323 build-utbot-and-run-unit-tests :
2424 needs : matrix-prep
3939 ARTIFACT_DIR : utbot-artifact
4040 steps :
4141 - name : Checkout repository
42- uses : actions/checkout@v2
42+ uses : actions/checkout@v3
4343 with :
4444 submodules : recursive
4545 - name : Build UTBot
5353 run : |
5454 chmod +x docker/action-scripts/unit-tests.sh
5555 ./docker/action-scripts/unit-tests.sh
56- - uses : actions/upload-artifact@v2
56+ - uses : actions/upload-artifact@v3
5757 if : failure()
5858 with :
5959 name : UTBot unit tests logs
7878 ARTIFACT_DIR : utbot-artifact
7979 steps :
8080 - name : Checkout repository
81- uses : actions/checkout@v2
81+ uses : actions/checkout@v3
8282 with :
8383 submodules : recursive
8484
@@ -104,7 +104,7 @@ jobs:
104104 chmod +x docker/action-scripts/runClionIntegrationTests.sh
105105 ./docker/action-scripts/runClionIntegrationTests.sh
106106 - name : Upload logs
107- uses : actions/upload-artifact@v2
107+ uses : actions/upload-artifact@v3
108108 if : failure()
109109 with :
110110 name : test-report
@@ -131,7 +131,7 @@ jobs:
131131 ARTIFACT_DIR : utbot-artifact
132132 steps :
133133 - name : Checkout repository
134- uses : actions/checkout@v2
134+ uses : actions/checkout@v3
135135 with :
136136 submodules : recursive
137137
@@ -159,7 +159,7 @@ jobs:
159159 PORTABLE_CONTAINER_NAME : Portable
160160 steps :
161161 - name : Checkout repository
162- uses : actions/checkout@v2
162+ uses : actions/checkout@v3
163163 with :
164164 submodules : recursive
165165
0 commit comments