Skip to content

Commit 8a28e10

Browse files
WEB-818: Pin dependencies
1 parent aad6742 commit 8a28e10

7 files changed

Lines changed: 20 additions & 20 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
# Steps represent a sequence of tasks that will be executed as part of the job
2020
steps:
2121
- name: Checkout code
22-
uses: actions/checkout@v6
22+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2323

2424
- name: Use Node.js 22
25-
uses: actions/setup-node@v6
25+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
2626
with:
2727
# no support for lts as of now with github actions.
2828
# issue link : https://github.com/actions/setup-node/issues/26
@@ -84,7 +84,7 @@ jobs:
8484

8585
- name: Deploy to github pages
8686
if: ${{ github.event_name == 'push' }}
87-
uses: JamesIves/github-pages-deploy-action@v4
87+
uses: JamesIves/github-pages-deploy-action@d92aa235d04922e8f08b40ce78cc5442fcfbfa2f # v4
8888
with:
8989
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9090
BRANCH: gh-pages

.github/workflows/commit-lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
steps:
3838
- name: Count commits in PR
3939
id: count
40-
uses: actions/github-script@v7
40+
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7
4141
with:
4242
github-token: ${{ secrets.GITHUB_TOKEN }}
4343
script: |
@@ -58,7 +58,7 @@ jobs:
5858
5959
- name: Post squash instructions
6060
if: failure()
61-
uses: actions/github-script@v7
61+
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7
6262
with:
6363
github-token: ${{ secrets.GITHUB_TOKEN }}
6464
script: |
@@ -121,7 +121,7 @@ jobs:
121121
122122
- name: Clean up comment on success
123123
if: success()
124-
uses: actions/github-script@v7
124+
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7
125125
with:
126126
github-token: ${{ secrets.GITHUB_TOKEN }}
127127
script: |

.github/workflows/create-docker-hub-image.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ jobs:
1111
DOCKER_ORGANIZATION: ${{ secrets.DOCKER_ORGANIZATION }}
1212

1313
steps:
14-
- uses: actions/checkout@v6
14+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1515

1616
- name: Set up QEMU
17-
uses: docker/setup-qemu-action@v4
17+
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4
1818

1919
- name: Set up Docker Buildx
2020
id: buildx
21-
uses: docker/setup-buildx-action@v2
21+
uses: docker/setup-buildx-action@885d1462b80bc1c1c7f0b00334ad271f09369c55 # v2
2222
with:
2323
install: true
2424

2525
- name: Log in to Docker Hub
26-
uses: docker/login-action@v4
26+
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4
2727
with:
2828
username: ${{ secrets.DOCKER_USER }}
2929
password: ${{ secrets.DOCKER_PASSWORD }}

.github/workflows/license-headers.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818

1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@v6
21+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2222

2323
- name: Use Node.js
24-
uses: actions/setup-node@v6
24+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
2525
with:
2626
node-version: '24'
2727
cache: 'npm'
@@ -74,7 +74,7 @@ jobs:
7474
7575
- name: Comment on PR (if failed)
7676
if: failure() && github.event_name == 'pull_request'
77-
uses: actions/github-script@v8
77+
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
7878
with:
7979
script: |
8080
github.rest.issues.createComment({

.github/workflows/playwright.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414

1515
steps:
1616
- name: Checkout code
17-
uses: actions/checkout@v6
17+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1818

1919
- name: Use Node.js 22x
20-
uses: actions/setup-node@v6
20+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
2121
with:
2222
node-version: '24.14.0'
2323
cache: 'npm'
@@ -37,15 +37,15 @@ jobs:
3737
E2E_PASSWORD: password
3838

3939
- name: Upload Playwright report
40-
uses: actions/upload-artifact@v7
40+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
4141
if: always()
4242
with:
4343
name: playwright-report
4444
path: playwright-report/
4545
retention-days: 7
4646

4747
- name: Upload test results
48-
uses: actions/upload-artifact@v7
48+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
4949
if: failure()
5050
with:
5151
name: test-results

.github/workflows/scan-skills.yml

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

1111
jobs:
1212
scan:
13-
uses: cisco-ai-defense/skill-scanner/.github/workflows/scan-skills.yml@main
13+
uses: cisco-ai-defense/skill-scanner/.github/workflows/scan-skills.yml@e285187191a96bfac909f482ec7c4f40deb54291 # main
1414
with:
1515
# We tell the scanner to look at the skills directory
1616
skill_path: skills

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
LOCALHOST_URL: ${{secrets.LOCALHOST_URL}}
1616

1717
steps:
18-
- uses: actions/checkout@v6
18+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1919

2020
- name: Use Node.js 22
21-
uses: actions/setup-node@v6
21+
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
2222
with:
2323
node-version: '24.14.0'
2424

0 commit comments

Comments
 (0)