Skip to content

Commit

Permalink
(build) Update action version
Browse files Browse the repository at this point in the history
v2 of the upload-artifact action is now deprecated, and the
recommendation is to move to using v4:

https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/
  • Loading branch information
gep13 authored Sep 23, 2024
1 parent f299880 commit d44624c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ jobs:
./build.ps1 --target=CI
- name: Upload Issues-Report
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
if-no-files-found: warn
name: issues
path: code_drop/issues-report.html

- name: Upload Packages
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
if-no-files-found: warn
name: package
path: code_drop/Packages/**/*
path: code_drop/Packages/**/*

0 comments on commit d44624c

Please sign in to comment.