Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update GitHub Actions upload-artifact to v4 #1130

Merged
merged 1 commit into from
Nov 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:

- name: Upload Artifacts
if: ${{ matrix.publish }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }}
if-no-files-found: ignore
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:

- name: Upload Artifacts
if: fromJSON(env.changes_detected)
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ClangFormat Patch
path: clang_format.patch
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/neovim-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
python ${{ env.GEN_CMD }} ${{ env.NVIM_EXE }} ${{ env.OUTPUT }}

- name: Upload Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Neovim API ${{ matrix.version}} Bindings
path: |
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
Expand-Archive -Path nvim-win64.zip -DestinationPath ${{ github.workspace }}\build\

- name: Install Dependencies
run:
run: |
pip install jinja2 msgpack
choco install dos2unix

Expand All @@ -135,7 +135,7 @@ jobs:
dos2unix src/auto/neovimapi${{ matrix.version }}.h

- name: Upload Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Neovim API ${{ matrix.version}} Bindings
path: |
Expand Down
Loading