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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,14 @@ jobs:
run: cargo build --release

- name: Upload artifact (windows)
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: startsWith(matrix.os, 'windows')
with:
name: artifact-windows
path: ./target/release/dfint-installer.exe

- name: Upload artifact (linux)
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: startsWith(matrix.os, 'ubuntu')
with:
name: artifact-linux
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-app-translations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
rm -f ./locale/vi.json

- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
uses: peter-evans/create-pull-request@v8
with:
title: Update translation file(s) of the app
commit-message: Update translation file(s) of the app
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions/checkout@v6

- name: Restore files
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
id: download
with:
pattern: artifact-*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-app-source-language-file.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: python scripts/extract_locale_strings.py

- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
uses: peter-evans/create-pull-request@v8
with:
title: Update source language file
commit-message: Update source language file
Expand Down