Skip to content
Open
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
14 changes: 7 additions & 7 deletions .github/workflows/eventlist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,47 +65,47 @@ jobs:
working-directory: ./tools/eventlist

- name: Archive eventlist
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: eventlist-linux-amd64
path: ./tools/eventlist/build/linux-amd64
retention-days: 1
if-no-files-found: error

- name: Archive eventlist
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: eventlist-linux-arm64
path: ./tools/eventlist/build/linux-arm64
retention-days: 1
if-no-files-found: error

- name: Archive eventlist
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: eventlist-darwin-amd64
path: ./tools/eventlist/build/darwin-amd64
retention-days: 1
if-no-files-found: error

- name: Archive eventlist
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: eventlist-darwin-arm64
path: ./tools/eventlist/build/darwin-arm64
retention-days: 1
if-no-files-found: error

- name: Archive eventlist
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: eventlist-windows-amd64
path: ./tools/eventlist/build/windows-amd64
retention-days: 1
if-no-files-found: error

- name: Archive eventlist
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: eventlist-windows-arm64
path: ./tools/eventlist/build/windows-arm64
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
go-junit-report -set-exit-code -in build/evenlistunittest-${{ matrix.os }}.txt -iocopy -out build/evenlistunittest-${{ matrix.os }}.xml

- name: Archive unit test results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: unit-test-result-${{ matrix.os }}
path: ./tools/eventlist/build/evenlistunittest-*.xml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tpip-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
working-directory: ./tools/eventlist/cmd/eventlist

- name: Archive TPIP report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: tpip-report
path: ./tools/eventlist/${{ env.tpip_report }}
Expand Down
Loading