Skip to content

Commit dbaeef3

Browse files
deps: pin dependencies
1 parent 432930b commit dbaeef3

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,25 +8,25 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v6
11+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1212
with:
1313
persist-credentials: false
1414

1515
- name: Setup Node
16-
uses: ckotzbauer/actions-toolkit/setup-nodejs@0.52.0
16+
uses: ckotzbauer/actions-toolkit/setup-nodejs@9e2a560f6c957fe29a2a78f8cbadabeea56a8c73 # 0.52.0
1717

1818
- name: Build
1919
run: |
2020
npm i
2121
npm run build:docs
2222
2323
- name: Install SSH Client
24-
uses: webfactory/ssh-agent@v0.9.1
24+
uses: webfactory/ssh-agent@a6f90b1f127823b31d4d4a8d96047790581349bd # v0.9.1
2525
with:
2626
ssh-private-key: ${{ secrets.DEPLOY_KEY }}
2727

2828
- name: Deploy
29-
uses: JamesIves/github-pages-deploy-action@v4.8.0
29+
uses: JamesIves/github-pages-deploy-action@d92aa235d04922e8f08b40ce78cc5442fcfbfa2f # v4.8.0
3030
with:
3131
ssh-key: true
3232
branch: gh-pages # The branch the action should deploy to.

.github/workflows/label-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313

1414
jobs:
1515
label-issues:
16-
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-label-issues.yml@0.52.0
16+
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-label-issues.yml@9e2a560f6c957fe29a2a78f8cbadabeea56a8c73 # 0.52.0
1717
secrets:
1818
token: ${{ secrets.GITHUB_TOKEN }}
1919

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
build:
11-
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-build-test.yml@0.52.0
11+
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-build-test.yml@9e2a560f6c957fe29a2a78f8cbadabeea56a8c73 # 0.52.0
1212
with:
1313
install-node: true
1414
build-commands: |
@@ -19,15 +19,15 @@ jobs:
1919
coverage-file: ./coverage/lcov.info
2020

2121
docs:
22-
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-build-test.yml@0.52.0
22+
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-build-test.yml@9e2a560f6c957fe29a2a78f8cbadabeea56a8c73 # 0.52.0
2323
with:
2424
install-node: true
2525
build-commands: |
2626
npm ci
2727
npm run build:docs
2828
2929
lint:
30-
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-lint.yml@0.52.0
30+
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-lint.yml@9e2a560f6c957fe29a2a78f8cbadabeea56a8c73 # 0.52.0
3131
with:
3232
install-node: true
3333
lint-commands: |

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
release:
12-
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-release-nodejs.yml@0.52.0
12+
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-release-nodejs.yml@9e2a560f6c957fe29a2a78f8cbadabeea56a8c73 # 0.52.0
1313
with:
1414
version: ${{ github.event.inputs.version }}
1515
build-commands: |
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-latest
3030
steps:
3131
- name: Deploy docs
32-
uses: benc-uk/workflow-dispatch@v1.3
32+
uses: benc-uk/workflow-dispatch@7a027648b88c2413826b6ddd6c76114894dc5ec4 # v1.3
3333
with:
3434
workflow: deploy-docs
3535
ref: main

.github/workflows/size-label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
size-label:
8-
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-size-label.yml@0.52.0
8+
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-size-label.yml@9e2a560f6c957fe29a2a78f8cbadabeea56a8c73 # 0.52.0
99
secrets:
1010
token: ${{ secrets.GITHUB_TOKEN }}
1111

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ on:
55

66
jobs:
77
stale:
8-
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-stale.yml@0.52.0
8+
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-stale.yml@9e2a560f6c957fe29a2a78f8cbadabeea56a8c73 # 0.52.0
99
secrets:
1010
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/update-snyk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
update-snyk:
10-
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-scan-snyk.yml@0.52.0
10+
uses: ckotzbauer/actions-toolkit/.github/workflows/toolkit-scan-snyk.yml@9e2a560f6c957fe29a2a78f8cbadabeea56a8c73 # 0.52.0
1111
with:
1212
install-node: true
1313
scan-commands: snyk monitor

0 commit comments

Comments
 (0)