Skip to content

Commit a94b0bb

Browse files
bump upload artifact action to v4
This patch bumps `actions/upload-artifact@v3` to `actions/upload-artifact@v4`. Now `v3` is deprecated [^1] which turned out to break #9. [^1] https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/
1 parent 0760d6e commit a94b0bb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ jobs:
6464
shell: pwsh
6565
- name: Upload
6666
if: ${{ matrix.cross != 'zigbuild' }}
67-
uses: actions/upload-artifact@v3
67+
uses: actions/upload-artifact@v4
6868
with:
6969
name: emmylua_ls-${{ matrix.platform }}
7070
path: ${{ github.workspace }}/artifact/
7171
- name: Upload zigbuild
7272
if: ${{ matrix.cross == 'zigbuild' }}
73-
uses: actions/upload-artifact@v3
73+
uses: actions/upload-artifact@v4
7474
with:
7575
name: emmylua_ls-${{ matrix.platform }}-glibc.${{ matrix.glibc }}
7676
path: ${{ github.workspace }}/artifact/
@@ -122,14 +122,14 @@ jobs:
122122
shell: pwsh
123123
- name: Upload
124124
if: ${{ matrix.cross != 'zigbuild' }}
125-
uses: actions/upload-artifact@v3
125+
uses: actions/upload-artifact@v4
126126
with:
127127
name: emmylua_doc_cli-${{ matrix.platform }}
128128
path: ${{ github.workspace }}/artifact/
129129
- name: Upload zigbuild
130130
if: ${{ matrix.cross == 'zigbuild' }}
131-
uses: actions/upload-artifact@v3
132-
with:
131+
uses: actions/upload-artifact@v4
132+
with:
133133
name: emmylua_doc_cli-${{ matrix.platform }}-glibc.${{ matrix.glibc }}
134134
path: ${{ github.workspace }}/artifact/
135135
release:
@@ -138,7 +138,7 @@ jobs:
138138
if: startsWith(github.ref, 'refs/tags/')
139139
steps:
140140
- name: Download
141-
uses: actions/download-artifact@v3
141+
uses: actions/download-artifact@v4
142142
- name: zip windows package win32-x64
143143
uses: TheDoctor0/[email protected]
144144
with:

0 commit comments

Comments
 (0)