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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
cache: false

- name: Cache Go artifacts
uses: actions/cache@v5
uses: actions/cache@v5.0.4
with:
path: |
~/.cache/go-build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-licenses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
cache: false

- name: Cache Go artifacts
uses: actions/cache@v5
uses: actions/cache@v5.0.4
with:
path: |
~/.cache/go-build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
go-version: stable

- name: Cache Go artifacts
uses: actions/cache@v5
uses: actions/cache@v5.0.4
with:
path: |
~/.cache/go-build
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
go-version: stable

- name: Cache Go artifacts
uses: actions/cache@v5
uses: actions/cache@v5.0.4
with:
path: |
~/.cache/go-build
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
go-version: stable

- name: Cache Go artifacts
uses: actions/cache@v5
uses: actions/cache@v5.0.4
with:
path: |
~/.cache/go-build
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
go-version: stable

- name: Cache Go artifacts
uses: actions/cache@v5
uses: actions/cache@v5.0.4
with:
path: |
~/.cache/go-build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/vmui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

- name: Restore node_modules cache
id: cache-restore
uses: actions/cache/restore@v5
uses: actions/cache/restore@v5.0.4
with:
path: app/vmui/packages/vmui/node_modules
key: vmui-deps-${{ runner.os }}-${{ hashFiles('app/vmui/packages/vmui/package-lock.json') }}
Expand All @@ -47,7 +47,7 @@ jobs:

- name: Save node_modules cache
if: steps.cache-restore.outputs.cache-hit != 'true'
uses: actions/cache/save@v5
uses: actions/cache/save@v5.0.4
with:
path: app/vmui/packages/vmui/node_modules
key: vmui-deps-${{ runner.os }}-${{ hashFiles('app/vmui/packages/vmui/package-lock.json') }}
Expand Down
Loading