Skip to content

Commit 9a853eb

Browse files
committed
chore: use hashed versions
1 parent 6d4096a commit 9a853eb

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

.github/workflows/create-meeting-artifacts-manual.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ jobs:
3737
runs-on: ubuntu-latest
3838
steps:
3939
- name: Checkout repository
40-
uses: actions/checkout@v4
40+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
4141

4242
- name: Setup Node.js
43-
uses: actions/setup-node@v4
43+
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
4444
with:
4545
node-version-file: '.nvmrc'
4646
cache: 'npm'
@@ -57,7 +57,8 @@ jobs:
5757
echo "user=$user" >> $GITHUB_OUTPUT
5858
echo "hackmd_team_name=$hackmd_team_name" >> $GITHUB_OUTPUT
5959
60-
- uses: actions/create-github-app-token@v2
60+
- name: Create GitHub App Token
61+
uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2.1.4
6162
id: app-token
6263
with:
6364
app-id: ${{ secrets.BOT_ID }}
@@ -74,7 +75,7 @@ jobs:
7475

7576
- name: Upload artifacts
7677
if: always()
77-
uses: actions/upload-artifact@v4
78+
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
7879
with:
7980
name: meeting-artifacts-${{ github.event.inputs.meeting_group || 'tsc' }}
8081
path: |

.github/workflows/create-meeting-artifacts-scheduled.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535
- web-server-frameworks
3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
3939

4040
- name: Setup Node.js
41-
uses: actions/setup-node@v4
41+
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
4242
with:
4343
node-version-file: '.nvmrc'
4444
cache: 'npm'
@@ -55,7 +55,8 @@ jobs:
5555
echo "user=$user" >> $GITHUB_OUTPUT
5656
echo "hackmd_team_name=$hackmd_team_name" >> $GITHUB_OUTPUT
5757
58-
- uses: actions/create-github-app-token@v2
58+
- name: Create GitHub App Token
59+
uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2.1.4
5960
id: app-token
6061
with:
6162
app-id: ${{ secrets.BOT_ID }}
@@ -72,7 +73,7 @@ jobs:
7273

7374
- name: Upload artifacts
7475
if: always()
75-
uses: actions/upload-artifact@v4
76+
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
7677
with:
7778
name: meeting-artifacts-${{ matrix.meeting_group }}
7879
path: |

0 commit comments

Comments
 (0)