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
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
make DESTDIR="$(pwd)"/_dest install

- name: Upload
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: install
path: _dest/
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
tar -C ../install -cf - . | tar xf - &&
tar cvf - * .[0-9A-Za-z]* | gzip -1 >../git-sdk-x86_64-minimal.tar.gz
- name: upload minimal-sdk artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: minimal-sdk
path: git-sdk-x86_64-minimal.tar.gz
Expand All @@ -107,7 +107,7 @@ jobs:
echo "result=$(tar Oxf git-artifacts.tar.gz git/bin-wrappers/git |
sed -n 's|^GIT_EXEC_PATH='\''\(.*\)/git'\''$|\1|p')" >>$GITHUB_OUTPUT
- name: upload git artifacts for testing
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: git-artifacts
path: git-artifacts.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cygwin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ jobs:

# upload test logs to facilitate investigation of problems
- name: Upload test logs
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: testlogs
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ui-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ jobs:
screenshot $bounds "ui-tests/screenshot.png"
- name: Upload test results
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: ui-tests-${{ matrix.os }}
path: ui-tests
Loading