Skip to content
Merged
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
16 changes: 8 additions & 8 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
mv dist/cloudfuse-gui dist/cloudfuse-gui_${{ runner.os }}

- name: Cache compiled GUI
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v4
uses: actions/cache/save@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4

Check warning

Code scanning / zizmor

action's hash pin has mismatched or missing version comment Warning

action's hash pin has mismatched or missing version comment
with:
enableCrossOsArchive: true
path: dist/cloudfuse-gui_${{ runner.os }}
Expand Down Expand Up @@ -96,7 +96,7 @@
# Get the WinFSP installer (from cache or download)
- name: Get cached WinFSP installer
id: restore-winfsp-installer
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v4
uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4

Check warning

Code scanning / zizmor

action's hash pin has mismatched or missing version comment Warning

action's hash pin has mismatched or missing version comment
with:
path: ${{ env.winfsp }}
key: ${{ env.winfsp }}
Expand All @@ -109,13 +109,13 @@

- name: Cache WinFSP installer
if: ${{ ! steps.restore-winfsp-installer.outputs.cache-hit }}
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v4
uses: actions/cache/save@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4

Check warning

Code scanning / zizmor

action's hash pin has mismatched or missing version comment Warning

action's hash pin has mismatched or missing version comment
with:
path: ${{ env.winfsp }}
key: ${{ env.winfsp }}

- name: Fetch cached compiled GUI
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v4
uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4

Check warning

Code scanning / zizmor

action's hash pin has mismatched or missing version comment Warning

action's hash pin has mismatched or missing version comment
with:
enableCrossOsArchive: true
path: dist/cloudfuse-gui_${{ runner.os }}
Expand All @@ -141,7 +141,7 @@
mv windows/Output/cloudfuse-gui.exe windows/Output/cloudfuse-gui_${{ steps.get_version.outputs.VERSION }}_windows_amd64.exe

- name: Cache windows installer
uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v4
uses: actions/cache/save@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4

Check warning

Code scanning / zizmor

action's hash pin has mismatched or missing version comment Warning

action's hash pin has mismatched or missing version comment
with:
enableCrossOsArchive: true
path: windows/Output/cloudfuse-gui_${{ steps.get_version.outputs.VERSION }}_windows_amd64.exe
Expand All @@ -168,14 +168,14 @@
GITHUB_REF_NAME: ${{ github.ref_name }}

- name: Restore Linux compiled GUI
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v4
uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4

Check warning

Code scanning / zizmor

action's hash pin has mismatched or missing version comment Warning

action's hash pin has mismatched or missing version comment
with:
path: dist/cloudfuse-gui_Linux
key: Linux-compiled-gui-${{ steps.get_version.outputs.VERSION }}-${{ github.sha }}
fail-on-cache-miss: true

- name: Restore Windows compiled GUI
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v4
uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4

Check warning

Code scanning / zizmor

action's hash pin has mismatched or missing version comment Warning

action's hash pin has mismatched or missing version comment
with:
enableCrossOsArchive: true
path: dist/cloudfuse-gui_Windows
Expand All @@ -184,7 +184,7 @@

- name: Restore Windows Installer
id: restore-installer
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v4
uses: actions/cache/restore@8b402f58fbc84540c8b491a91e594a4576fec3d7 # v4

Check warning

Code scanning / zizmor

action's hash pin has mismatched or missing version comment Warning

action's hash pin has mismatched or missing version comment
with:
enableCrossOsArchive: true
path: windows/Output/cloudfuse-gui_${{ steps.get_version.outputs.VERSION }}_windows_amd64.exe
Expand Down