Skip to content
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
10 changes: 5 additions & 5 deletions .github/workflows/md5checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
dpkg -c dist/*.deb

- name: Upload DEB artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: md5checker-deb
path: examples/md5_checker/dist/*.deb
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
file dist/*

- name: Upload macOS artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: md5checker-${{ matrix.os }}
path: examples/md5_checker/dist/*
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
if (Test-Path "dist\*.exe") { Write-Host "Installer created successfully" } else { Write-Host "Installer not found"; exit 1 }

- name: Upload Windows artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: md5checker-windows
path: examples/md5_checker/dist/*.exe
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
shards build --release --no-debug --static --link-flags "-lcrypto -lssl -mwindows"

- name: Upload MinGW64 artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: md5checker-mingw64
path: examples/md5_checker/bin/md5checker.exe
Expand All @@ -175,7 +175,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download DEB package
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: md5checker-deb
path: ./
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/screenshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
output-files: ${{ env.OUTPUT_FILES }}

- name: Upload screenshots
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: screenshots-${{ matrix.os }}
path: "*.png"
Expand All @@ -131,7 +131,7 @@ jobs:
git checkout --orphan screenshots || git checkout screenshots

- name: Download all screenshots artifacts
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
pattern: screenshots-*
merge-multiple: true
Expand Down
Loading