Skip to content

Commit 2c6f00c

Browse files
committed
v2 to v4 upload-artifact updates
1 parent ee95596 commit 2c6f00c

5 files changed

+9
-9
lines changed

.github/workflows/backward_model_load_check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
pip install built_wheel/*.whl
6161
python ./test/run_tests_model_gen_and_load.py --generate_models --skip_missing_args --skip_pr_tests "${{ github.event.pull_request.title }}"
6262
- name: Upload generated file
63-
uses: actions/upload-artifact@v2
63+
uses: actions/upload-artifact@v4
6464
with:
6565
name: vw_generated_models
6666
path: ~/.vw_runtests_model_gen_working_dir/*

.github/workflows/forward_model_load_check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
pip install built_wheel/*.whl
5858
python ./test/run_tests_model_gen_and_load.py --generate_models --skip_pr_tests "${{ github.event.pull_request.title }}"
5959
- name: Upload generated file
60-
uses: actions/upload-artifact@v2
60+
uses: actions/upload-artifact@v4
6161
with:
6262
name: vw_generated_models
6363
path: ~/.vw_runtests_model_gen_working_dir/*

.github/workflows/python_wheels.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
shell: bash
104104
run: python setup.py sdist
105105
- name: Upload built wheel
106-
uses: actions/upload-artifact@v2
106+
uses: actions/upload-artifact@v4
107107
with:
108108
name: python_source_distribution
109109
path: dist/*.tar.gz

.github/workflows/run_benchmarks_manual.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
shell: bash
3030
run: cp ./.scripts/linux/*benchmarks.sh test/benchmarks/
3131
- name: Upload benchmark module
32-
uses: actions/upload-artifact@v2
32+
uses: actions/upload-artifact@v4
3333
with:
3434
name: benchmark-module
3535
path: test/benchmarks/
@@ -63,13 +63,13 @@ jobs:
6363
shell: bash
6464
run: ./.scripts/linux/run-benchmarks.sh base-benchmarks.json
6565
- name: Upload ${{ github.event.inputs.base_ref }} benchmark results
66-
uses: actions/upload-artifact@v2
66+
uses: actions/upload-artifact@v4
6767
with:
6868
name: base-benchmarks
6969
path: base-benchmarks.json
7070
if-no-files-found: error
7171
- name: Upload benchmark compare
72-
uses: actions/upload-artifact@v2
72+
uses: actions/upload-artifact@v4
7373
with:
7474
name: benchmark-compare
7575
path: benchmark/tools/

.github/workflows/valgrind.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@ jobs:
2424
cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release -DBUILD_EXPERIMENTAL_BINDING=On -DVW_FEAT_FLATBUFFERS=On -DVW_FEAT_CSV=On -DVW_FEAT_CB_GRAPH_FEEDBACK=On -DSTD_INV_SQRT=ON
2525
cmake --build build
2626
- name: Upload vw binary
27-
uses: actions/upload-artifact@v2
27+
uses: actions/upload-artifact@v4
2828
with:
2929
name: vw
3030
path: build/vowpalwabbit/cli/vw
3131
if-no-files-found: error
3232
- name: Upload spanning_tree binary
33-
uses: actions/upload-artifact@v2
33+
uses: actions/upload-artifact@v4
3434
with:
3535
name: spanning_tree
3636
path: build/vowpalwabbit/spanning_tree_bin/spanning_tree
3737
if-no-files-found: error
3838
- name: Upload to_flatbuff binary
39-
uses: actions/upload-artifact@v2
39+
uses: actions/upload-artifact@v4
4040
with:
4141
name: to_flatbuff
4242
path: build/utl/flatbuffer/to_flatbuff

0 commit comments

Comments
 (0)