Skip to content

Commit 22f9bcb

Browse files
authored
update all actions/upload-artifacts ocurrances to v4 (#1858)
1 parent 6e4ec75 commit 22f9bcb

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/duplicate-profiles.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
python ./.github/scripts/check_duplicates.py
3232
3333
- name: Upload duplicate profile comment artifact
34-
uses: actions/upload-artifact@v3
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: duplicate_profile_comment
3737
path: |
@@ -40,7 +40,7 @@ jobs:
4040
- run: echo ${{ github.event.number }} > pr_number.txt
4141

4242
- name: Upload PR info
43-
uses: actions/upload-artifact@v3
43+
uses: actions/upload-artifact@v4
4444
with:
4545
name: pr_number
4646
path: |

.github/workflows/run-tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -139,14 +139,14 @@ jobs:
139139
LUA_PATH: ${{ steps.lua_path.outputs.lua_path }}
140140
- name: Upload test artifact
141141
if: always()
142-
uses: actions/upload-artifact@v3
142+
uses: actions/upload-artifact@v4
143143
with:
144144
name: tests
145145
path: |
146146
tools/test_output/*.xml
147147
- name: Upload coverage artifact
148148
if: always()
149-
uses: actions/upload-artifact@v3
149+
uses: actions/upload-artifact@v4
150150
with:
151151
name: coverage
152152
path: |
@@ -156,13 +156,13 @@ jobs:
156156
runs-on: ubuntu-latest
157157
steps:
158158
- name: Upload event file artifact
159-
uses: actions/upload-artifact@v3
159+
uses: actions/upload-artifact@v4
160160
with:
161161
name: event-file
162162
path: ${{ github.event_path }}
163163
- run: echo ${{ github.event.number }} > pr_number.txt
164164
- name: Upload pr number artifact
165-
uses: actions/upload-artifact@v3
165+
uses: actions/upload-artifact@v4
166166
with:
167167
name: pr_number
168168
path: |

.github/workflows/upload-driver-packages.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: |
4141
zip -v ${{env.package_key}}.zip config.yml fingerprints.yml search-parameters.y*ml $(find . -name "*.pem") $(find . -name "*.crt") $(find profiles -name "*.y*ml") $(find . -name "*.lua") -x "*test*"
4242
- name: Upload packaged driver artifact
43-
uses: actions/upload-artifact@v3
43+
uses: actions/upload-artifact@v4
4444
with:
4545
name: ${{ env.package_key }}
4646
path: |
@@ -51,14 +51,14 @@ jobs:
5151
steps:
5252
- run: echo ${{ github.event.number }} > pr_number.txt
5353
- name: Upload pr number artifact
54-
uses: actions/upload-artifact@v3
54+
uses: actions/upload-artifact@v4
5555
with:
5656
name: pr_number
5757
path: |
5858
pr_number.txt
5959
- run: echo ${{ github.head_ref }} > head_ref.txt
6060
- name: Upload head ref artifact
61-
uses: actions/upload-artifact@v3
61+
uses: actions/upload-artifact@v4
6262
with:
6363
name: head_ref
6464
path: |

0 commit comments

Comments
 (0)