@@ -100,14 +100,14 @@ jobs:
100
100
steps :
101
101
- name : Check out source code
102
102
if : ${{ github.event_name != 'pull_request_target' }}
103
- uses : actions/checkout@v3
103
+ uses : actions/checkout@v4
104
104
with :
105
105
fetch-depth : 0
106
106
persist-credentials : false
107
107
108
108
- name : Check out source code (pull request)
109
109
if : ${{ github.event_name == 'pull_request_target' }}
110
- uses : actions/checkout@v3
110
+ uses : actions/checkout@v4
111
111
with :
112
112
ref : ${{ github.event.pull_request.head.sha }}
113
113
fetch-depth : 0
@@ -119,7 +119,7 @@ jobs:
119
119
echo "${VERSION:1}" > version
120
120
121
121
- name : Upload version file
122
- uses : actions/upload-artifact@v3
122
+ uses : actions/upload-artifact@v4
123
123
with :
124
124
name : version
125
125
path : version
@@ -558,14 +558,14 @@ jobs:
558
558
559
559
- name : Check out source code
560
560
if : ${{ github.event_name != 'pull_request_target' }}
561
- uses : actions/checkout@v3
561
+ uses : actions/checkout@v4
562
562
with :
563
563
submodules : recursive
564
564
persist-credentials : false
565
565
566
566
- name : Check out source code (pull request)
567
567
if : ${{ github.event_name == 'pull_request_target' }}
568
- uses : actions/checkout@v3
568
+ uses : actions/checkout@v4
569
569
with :
570
570
ref : ${{ github.event.pull_request.head.sha }}
571
571
submodules : recursive
@@ -607,13 +607,13 @@ jobs:
607
607
${CT_NG} version
608
608
609
609
- name : Download version information
610
- uses : actions/download-artifact@v3
610
+ uses : actions/download-artifact@v4
611
611
with :
612
612
name : version
613
613
path : ${{ runner.temp }}
614
614
615
615
- name : Configure AWS Credentials
616
- uses : aws-actions/configure-aws-credentials@v1-node16
616
+ uses : aws-actions/configure-aws-credentials@v4
617
617
with :
618
618
aws-access-key-id : ${{ secrets.AWS_CACHE_SDK_ACCESS_KEY_ID }}
619
619
aws-secret-access-key : ${{ secrets.AWS_CACHE_SDK_SECRET_ACCESS_KEY }}
@@ -811,13 +811,13 @@ jobs:
811
811
812
812
- name : Upload toolchain build log
813
813
if : always()
814
- uses : actions/upload-artifact@v3
814
+ uses : actions/upload-artifact@v4
815
815
with :
816
816
name : log_${{ matrix.host.name }}_${{ matrix.target }}
817
817
path : ${{ matrix.target }}.log
818
818
819
819
- name : Upload toolchain build artifact
820
- uses : actions/upload-artifact@v3
820
+ uses : actions/upload-artifact@v4
821
821
with :
822
822
name : toolchain_${{ matrix.host.name }}_${{ matrix.target }}
823
823
path : |
@@ -875,21 +875,21 @@ jobs:
875
875
876
876
- name : Check out source code
877
877
if : ${{ github.event_name != 'pull_request_target' }}
878
- uses : actions/checkout@v3
878
+ uses : actions/checkout@v4
879
879
with :
880
880
submodules : recursive
881
881
persist-credentials : false
882
882
883
883
- name : Check out source code (pull request)
884
884
if : ${{ github.event_name == 'pull_request_target' }}
885
- uses : actions/checkout@v3
885
+ uses : actions/checkout@v4
886
886
with :
887
887
ref : ${{ github.event.pull_request.head.sha }}
888
888
submodules : recursive
889
889
persist-credentials : false
890
890
891
891
- name : Configure AWS Credentials
892
- uses : aws-actions/configure-aws-credentials@v1-node16
892
+ uses : aws-actions/configure-aws-credentials@v4
893
893
with :
894
894
aws-access-key-id : ${{ secrets.AWS_CACHE_SDK_ACCESS_KEY_ID }}
895
895
aws-secret-access-key : ${{ secrets.AWS_CACHE_SDK_SECRET_ACCESS_KEY }}
@@ -963,7 +963,7 @@ jobs:
963
963
964
964
- name : Upload toolchain build artifact
965
965
if : startsWith(matrix.host.name, 'linux-') # FIXME: Do for all
966
- uses : actions/upload-artifact@v3
966
+ uses : actions/upload-artifact@v4
967
967
with :
968
968
name : hosttools_${{ matrix.host.name }}
969
969
path : |
@@ -1026,13 +1026,13 @@ jobs:
1026
1026
1027
1027
- name : Check out source code
1028
1028
if : ${{ github.event_name != 'pull_request_target' }}
1029
- uses : actions/checkout@v3
1029
+ uses : actions/checkout@v4
1030
1030
with :
1031
1031
persist-credentials : false
1032
1032
1033
1033
- name : Check out source code (pull request)
1034
1034
if : ${{ github.event_name == 'pull_request_target' }}
1035
- uses : actions/checkout@v3
1035
+ uses : actions/checkout@v4
1036
1036
with :
1037
1037
ref : ${{ github.event.pull_request.head.sha }}
1038
1038
persist-credentials : false
@@ -1056,7 +1056,7 @@ jobs:
1056
1056
sha256sum ${ARCHIVE_FILE} > sha256.sum
1057
1057
1058
1058
- name : Upload CMake package build artifact
1059
- uses : actions/upload-artifact@v3
1059
+ uses : actions/upload-artifact@v4
1060
1060
with :
1061
1061
name : cmake_${{ matrix.host.name }}
1062
1062
path : |
@@ -1116,21 +1116,21 @@ jobs:
1116
1116
1117
1117
- name : Check out source code
1118
1118
if : ${{ github.event_name != 'pull_request_target' }}
1119
- uses : actions/checkout@v3
1119
+ uses : actions/checkout@v4
1120
1120
with :
1121
1121
path : repository
1122
1122
persist-credentials : false
1123
1123
1124
1124
- name : Check out source code (pull request)
1125
1125
if : ${{ github.event_name == 'pull_request_target' }}
1126
- uses : actions/checkout@v3
1126
+ uses : actions/checkout@v4
1127
1127
with :
1128
1128
ref : ${{ github.event.pull_request.head.sha }}
1129
1129
path : repository
1130
1130
persist-credentials : false
1131
1131
1132
1132
- name : Download artifacts
1133
- uses : actions/download-artifact@v3
1133
+ uses : actions/download-artifact@v4
1134
1134
with :
1135
1135
# NOTE: This downloads all build artifacts, including the toolchains and host tools for
1136
1136
# the irrelevant hosts, because the download-artifact action does not support
@@ -1245,7 +1245,7 @@ jobs:
1245
1245
sha256sum ${ARCHIVE_NAME}.${EXT} ${ARCHIVE_NAME}_minimal.${EXT} > sha256.sum
1246
1246
1247
1247
- name : Upload distribution bundle
1248
- uses : actions/upload-artifact@v3
1248
+ uses : actions/upload-artifact@v4
1249
1249
with :
1250
1250
name : ${{ env.BUNDLE_ARCHIVE_NAME }}
1251
1251
path : |
@@ -1279,7 +1279,7 @@ jobs:
1279
1279
steps :
1280
1280
- name : Set up Python
1281
1281
if : ${{ runner.os == 'Windows' }}
1282
- uses : actions/setup-python@v4
1282
+ uses : actions/setup-python@v5
1283
1283
with :
1284
1284
# Force Python 3.10 because the twister is not compatible with a Python
1285
1285
# version lower than 3.8 on Windows.
@@ -1363,7 +1363,7 @@ jobs:
1363
1363
echo "VENV_ACTIVATE=${VENV_ACTIVATE}" >> $GITHUB_ENV
1364
1364
1365
1365
- name : Download version information
1366
- uses : actions/download-artifact@v3
1366
+ uses : actions/download-artifact@v4
1367
1367
with :
1368
1368
name : version
1369
1369
path : artifacts
@@ -1382,7 +1382,7 @@ jobs:
1382
1382
echo "BUNDLE_DIR=${BUNDLE_DIR}" >> $GITHUB_ENV
1383
1383
1384
1384
- name : Download distribution bundle
1385
- uses : actions/download-artifact@v3
1385
+ uses : actions/download-artifact@v4
1386
1386
with :
1387
1387
name : ${{ env.BUNDLE_NAME }}
1388
1388
path : artifacts
@@ -1620,7 +1620,7 @@ jobs:
1620
1620
1621
1621
- name : Publish test results
1622
1622
if : always()
1623
- uses : actions/upload-artifact@v3
1623
+ uses : actions/upload-artifact@v4
1624
1624
with :
1625
1625
name : test_${{ matrix.testenv.name }}_${{ matrix.subset }}
1626
1626
if-no-files-found : ignore
0 commit comments