Skip to content

Commit 80cde73

Browse files
chore(deps): pin dependencies - workflows - .github/workflows/unused-dependencies.yml
1 parent 94c866c commit 80cde73

11 files changed

+23
-23
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ jobs:
2828
fetch-depth: 0
2929

3030
- name: Use Node.js ${{ matrix.node-version }}
31-
uses: actions/setup-node@v4
31+
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
3232
with:
3333
node-version: ${{ matrix.node-version }}
3434

3535
- name: Start MongoDB
36-
uses: supercharge/mongodb-github-action@1.11.0
36+
uses: supercharge/mongodb-github-action@90004df786821b6308fb02299e5835d0dae05d0d # 1.12.0
3737
with:
3838
mongodb-version: ${{ matrix.mongodb-version }}
3939

@@ -47,7 +47,7 @@ jobs:
4747
npm run test-coverage-ci --workspaces --if-present
4848
4949
- name: Upload test coverage report
50-
uses: codecov/codecov-action@v5.1.2
50+
uses: codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 # v5.3.1
5151
with:
5252
files: ./coverage/lcov.info
5353
token: ${{ secrets.CODECOV_TOKEN }}
@@ -59,14 +59,14 @@ jobs:
5959
run: npm run build
6060

6161
- name: Save build folder
62-
uses: actions/upload-artifact@v4
62+
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4
6363
with:
6464
name: build
6565
if-no-files-found: error
6666
path: build
6767

6868
- name: Download the build folders
69-
uses: actions/download-artifact@v4
69+
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4
7070
with:
7171
name: build
7272
path: build

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ jobs:
4848

4949
steps:
5050
- name: Checkout repository
51-
uses: actions/checkout@v4
51+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
5252

5353
# Initializes the CodeQL tools for scanning.
5454
- name: Initialize CodeQL
55-
uses: github/codeql-action/init@v3
55+
uses: github/codeql-action/init@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3
5656
with:
5757
languages: ${{ matrix.language }}
5858
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -66,7 +66,7 @@ jobs:
6666
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
6767
# If this step fails, then you should remove it and run the build manually (see below)
6868
- name: Autobuild
69-
uses: github/codeql-action/autobuild@v3
69+
uses: github/codeql-action/autobuild@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3
7070

7171
# ℹ️ Command-line programs to run using the OS shell.
7272
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -79,6 +79,6 @@ jobs:
7979
# ./location_of_script_within_repo/buildscript.sh
8080

8181
- name: Perform CodeQL Analysis
82-
uses: github/codeql-action/analyze@v3
82+
uses: github/codeql-action/analyze@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3
8383
with:
8484
category: "/language:${{matrix.language}}"

.github/workflows/dependency-review.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: 'Checkout Repository'
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1414
- name: Dependency Review
15-
uses: actions/dependency-review-action@v4
15+
uses: actions/dependency-review-action@3b139cfc5fae8b618d3eae3675e383bb1769c019 # v4
1616
with:
1717
comment-summary-in-pr: always
1818
fail-on-severity: high

.github/workflows/experimental-inventory-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ jobs:
2828
fetch-depth: 0
2929

3030
- name: Use Node.js ${{ matrix.node-version }}
31-
uses: actions/setup-node@v4
31+
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
3232
with:
3333
node-version: ${{ matrix.node-version }}
3434

3535
- name: Start MongoDB
36-
uses: supercharge/mongodb-github-action@1.11.0
36+
uses: supercharge/mongodb-github-action@90004df786821b6308fb02299e5835d0dae05d0d # 1.12.0
3737
with:
3838
mongodb-version: ${{ matrix.mongodb-version }}
3939

.github/workflows/experimental-inventory-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1111

1212
# Setup .npmrc file to publish to npm
13-
- uses: actions/setup-node@v4
13+
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
1414
with:
1515
node-version: '18.x'
1616
registry-url: 'https://registry.npmjs.org'

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps: # list of steps
1313
- name: Install NodeJS
14-
uses: actions/setup-node@v4
14+
uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
1515
with:
1616
node-version: ${{ env.NODE_VERSION }}
1717

.github/workflows/npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
steps:
99
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1010
# Setup .npmrc file to publish to npm
11-
- uses: actions/setup-node@v4
11+
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
1212
with:
1313
node-version: '18.x'
1414
registry-url: 'https://registry.npmjs.org'

.github/workflows/pr-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: Validate & Label PR
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: amannn/action-semantic-pull-request@v5
24+
- uses: amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017 # v5
2525
env:
2626
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2727
with:
@@ -39,6 +39,6 @@ jobs:
3939
revert
4040
test
4141
break
42-
- uses: release-drafter/release-drafter@v6
42+
- uses: release-drafter/release-drafter@b1476f6e6eb133afa41ed8589daba6dc69b4d3f5 # v6
4343
env:
4444
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/sample-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1313
# Setup .npmrc file to publish to npm
14-
- uses: actions/setup-node@v4
14+
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4
1515
with:
1616
node-version: '18.x'
1717
registry-url: 'https://registry.npmjs.org'

.github/workflows/scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: Harden Runner
35-
uses: step-security/harden-runner@c95a14d0e5bab51a9f56296a4eb0e416910cd350 # v2.10.3
35+
uses: step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
3636
with:
3737
egress-policy: audit
3838

@@ -72,6 +72,6 @@ jobs:
7272

7373
# Upload the results to GitHub's code scanning dashboard.
7474
- name: "Upload to code-scanning"
75-
uses: github/codeql-action/upload-sarif@aa578102511db1f4524ed59b8cc2bae4f6e88195 # v3.27.6
75+
uses: github/codeql-action/upload-sarif@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3.28.8
7676
with:
7777
sarif_file: results.sarif

0 commit comments

Comments
 (0)