Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update actions #8799

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
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
4 changes: 2 additions & 2 deletions .github/actions/cache_elixir/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ runs:
steps:
- name: Restore and save cache
if: ${{ github.event_name == 'schedule' }}
uses: actions/cache@67b839edb68371cc5014f6cea11c9aa77238de78
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57
with:
path: |
**/deps
Expand All @@ -22,7 +22,7 @@ runs:

- name: Restore Cache
if: ${{ github.event_name != 'schedule' }}
uses: actions/cache/restore@67b839edb68371cc5014f6cea11c9aa77238de78
uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57
with:
path: |
**/deps
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/cache_nix/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ runs:
- name: Restore and Save Cache
id: nix-restore-and-save
if: ${{ github.event_name == 'schedule' }}
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57
with:
path: |
/tmp/nix-cache
Expand All @@ -26,7 +26,7 @@ runs:
- name: Restore Cache
id: nix-restore
if: ${{ github.event_name != 'schedule' }}
uses: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84
uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57
with:
path: |
/tmp/nix-cache
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/elixir_cache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ runs:
steps:
- name: Restore and save cache
if: ${{ github.event_name == 'schedule' }}
uses: actions/cache@67b839edb68371cc5014f6cea11c9aa77238de78
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57
with:
path: |
**/deps
Expand All @@ -24,7 +24,7 @@ runs:

- name: Restore Cache
if: ${{ github.event_name != 'schedule' }}
uses: actions/cache/restore@67b839edb68371cc5014f6cea11c9aa77238de78
uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57
with:
path: |
**/deps
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/nix_installer_and_cache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ runs:
- name: Restore and Save Cache
id: nix-restore-and-save
if: ${{ github.event_name == 'schedule' }}
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57
with:
path: |
/tmp/nix-cache
Expand All @@ -28,7 +28,7 @@ runs:
- name: Restore Cache
id: nix-restore
if: ${{ github.event_name != 'schedule' }}
uses: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84
uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57
with:
path: |
/tmp/nix-cache
Expand Down
Loading