Skip to content
This repository was archived by the owner on May 13, 2024. It is now read-only.

Commit 63bbe5b

Browse files
committed
ci: update workflows to follow security guidelines for best practices
1 parent b069eee commit 63bbe5b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/actions/invalidate_master_cache/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ runs:
44
using: composite
55
steps:
66
- name: save_cache
7-
uses: actions/cache/save@v3
7+
uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2
88
with:
99
path: ./node_modules
1010
key: ${{ runner.os }}-node_modules-${{ hashFiles('./package-lock.json') }}

.github/actions/npm_install_from_cache/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ runs:
55
steps:
66
- name: Cache node modules
77
id: cache-nodemodules
8-
uses: actions/cache/restore@v3
8+
uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2
99
with:
1010
path: node_modules
1111
key: ${{ runner.os }}-node_modules-${{ hashFiles('./package-lock.json') }}

.github/workflows/release_staging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
environment: Staging
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
1414
- name: Setup Node
1515
uses: ./.github/actions/setup_node
1616
- name: Install Dependencies

0 commit comments

Comments
 (0)