Skip to content

Commit 2ee7d11

Browse files
dependabot[bot]Jens-G
authored andcommitted
Bump actions/download-artifact from 6 to 8
Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 6 to 8. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v8) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 99e0f6f commit 2ee7d11

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

.github/workflows/build.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ jobs:
141141
run: |
142142
./configure $(echo $CONFIG_ARGS_FOR_LIBS | sed 's/without-php/with-php/' | sed 's/without-php_extension/with-php_extension/' )
143143
144-
- uses: actions/download-artifact@v7
144+
- uses: actions/download-artifact@v8
145145
with:
146146
name: thrift-compiler
147147
path: compiler/cpp
@@ -195,7 +195,7 @@ jobs:
195195
run: |
196196
./configure $(echo $CONFIG_ARGS_FOR_LIBS | sed 's/without-go/with-go/')
197197
198-
- uses: actions/download-artifact@v7
198+
- uses: actions/download-artifact@v8
199199
with:
200200
name: thrift-compiler
201201
path: compiler/cpp
@@ -273,7 +273,7 @@ jobs:
273273
run: |
274274
./configure $(echo $CONFIG_ARGS_FOR_LIBS | sed 's/without-java/with-java/' | sed 's/without-kotlin/with-kotlin/')
275275
276-
- uses: actions/download-artifact@v7
276+
- uses: actions/download-artifact@v8
277277
with:
278278
name: thrift-compiler
279279
path: compiler/cpp
@@ -389,7 +389,7 @@ jobs:
389389
run: |
390390
./configure $(echo $CONFIG_ARGS_FOR_LIBS | sed 's/without-netstd/with-netstd/')
391391
392-
- uses: actions/download-artifact@v7
392+
- uses: actions/download-artifact@v8
393393
with:
394394
name: thrift-compiler
395395
path: compiler/cpp
@@ -438,7 +438,7 @@ jobs:
438438
run: |
439439
./configure $(echo $CONFIG_ARGS_FOR_LIBS | sed 's/without-swift/with-swift/')
440440
441-
- uses: actions/download-artifact@v7
441+
- uses: actions/download-artifact@v8
442442
with:
443443
name: thrift-compiler
444444
path: compiler/cpp
@@ -492,7 +492,7 @@ jobs:
492492
run: |
493493
./configure $(echo $CONFIG_ARGS_FOR_LIBS | sed 's/without-rs/with-rs/')
494494
495-
- uses: actions/download-artifact@v7
495+
- uses: actions/download-artifact@v8
496496
with:
497497
name: thrift-compiler
498498
path: compiler/cpp
@@ -561,7 +561,7 @@ jobs:
561561
run: |
562562
./configure $(echo $CONFIG_ARGS_FOR_LIBS | sed 's/without-py3/with-py3/')
563563
564-
- uses: actions/download-artifact@v7
564+
- uses: actions/download-artifact@v8
565565
with:
566566
name: thrift-compiler
567567
path: compiler/cpp
@@ -640,7 +640,7 @@ jobs:
640640
- name: Run configure
641641
run: ./configure $(echo $CONFIG_ARGS_FOR_LIBS | sed 's/without-py3/with-py3/')
642642

643-
- uses: actions/download-artifact@v7
643+
- uses: actions/download-artifact@v8
644644
with:
645645
name: thrift-compiler-${{ matrix.os }}
646646
path: compiler/cpp
@@ -679,7 +679,7 @@ jobs:
679679
run: |
680680
./configure $(echo $CONFIG_ARGS_FOR_LIBS | sed -E 's/without-node([tj])s/with-node\1s/g')
681681
682-
- uses: actions/download-artifact@v7
682+
- uses: actions/download-artifact@v8
683683
with:
684684
name: thrift-compiler
685685
path: compiler/cpp
@@ -716,7 +716,7 @@ jobs:
716716
run: |
717717
./configure $(echo $CONFIG_ARGS_FOR_LIBS | sed -E 's/without-cpp/with-cpp/g')
718718
719-
- uses: actions/download-artifact@v7
719+
- uses: actions/download-artifact@v8
720720
with:
721721
name: thrift-compiler
722722
path: compiler/cpp
@@ -791,7 +791,7 @@ jobs:
791791
run: |
792792
./configure $(echo $CONFIG_ARGS_FOR_LIBS | sed 's/without-ruby/with-ruby/')
793793
794-
- uses: actions/download-artifact@v7
794+
- uses: actions/download-artifact@v8
795795
with:
796796
name: thrift-compiler
797797
path: compiler/cpp
@@ -879,51 +879,51 @@ jobs:
879879
libevent-dev
880880
881881
- name: Download java precross artifacts
882-
uses: actions/download-artifact@v7
882+
uses: actions/download-artifact@v8
883883
with:
884884
name: java-precross
885885
path: lib/java/build
886886

887887
- name: Download kotlin precross artifacts
888-
uses: actions/download-artifact@v7
888+
uses: actions/download-artifact@v8
889889
with:
890890
name: kotlin-precross
891891
path: lib/kotlin
892892

893893
- name: Download swift precross artifacts
894-
uses: actions/download-artifact@v7
894+
uses: actions/download-artifact@v8
895895
if: false # currently broken and no maintainers around -> see THRIFT-5864
896896
with:
897897
name: swift-precross
898898
path: test/swift/CrossTests/.build/x86_64-unknown-linux-gnu/debug
899899

900900
- name: Download rust precross artifacts
901-
uses: actions/download-artifact@v7
901+
uses: actions/download-artifact@v8
902902
if: false # currently broken and no maintainers around -> see THRIFT-5917
903903
with:
904904
name: rs-precross
905905
path: test/rs/bin
906906

907907
- name: Download go precross artifacts
908-
uses: actions/download-artifact@v7
908+
uses: actions/download-artifact@v8
909909
with:
910910
name: go-precross
911911
path: test/go/bin
912912

913913
- name: Download cpp precross artifacts
914-
uses: actions/download-artifact@v7
914+
uses: actions/download-artifact@v8
915915
with:
916916
name: cpp-precross
917917
path: .
918918

919919
- name: Download python precross artifacts
920-
uses: actions/download-artifact@v7
920+
uses: actions/download-artifact@v8
921921
with:
922922
name: py-precross
923923
path: .
924924

925925
- name: Download ruby precross artifacts
926-
uses: actions/download-artifact@v6
926+
uses: actions/download-artifact@v8
927927
with:
928928
name: rb-precross
929929
path: .

0 commit comments

Comments
 (0)