Skip to content

Commit 463e3f7

Browse files
renovate[bot]dschach
andauthoredNov 16, 2023
ci(github-actions): Pin dependencies (#72)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: David Schach <636977+dschach@users.noreply.github.com>
1 parent e5950f1 commit 463e3f7

5 files changed

+11
-11
lines changed
 

‎.github/workflows/LOCAL-dependabot-approve-and-auto-merge.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
steps:
1111
# Checkout the source code
1212
- name: 'Checkout source code'
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
1414

1515
- name: 'Fetch Dependabot metadata'
1616
id: dependabot-fetch
17-
uses: dependabot/fetch-metadata@v1
17+
uses: dependabot/fetch-metadata@c9c4182bf1b97f5224aee3906fd373f6b61b4526 # v1
1818
with:
1919
github-token: '${{ secrets.GITHUB_TOKEN }}'
2020

@@ -51,7 +51,7 @@ jobs:
5151
steps:
5252
- name: 'Fetch Dependabot metadata'
5353
id: dependabot
54-
uses: dependabot/fetch-metadata@v1
54+
uses: dependabot/fetch-metadata@c9c4182bf1b97f5224aee3906fd373f6b61b4526 # v1
5555
with:
5656
github-token: '${{ secrets.GITHUB_TOKEN }}'
5757

‎.github/workflows/apex.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
steps:
2626
# Checkout the source code
2727
- name: 'Checkout source code'
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
2929

3030
# Install Salesforce CLI
3131
- name: 'Install Salesforce sfdx CLI'
@@ -75,7 +75,7 @@ jobs:
7575

7676
# Upload code coverage to Codecov.io
7777
- name: 'Upload code coverage for Apex to Codecov.io'
78-
uses: codecov/codecov-action@v3
78+
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3
7979
with:
8080
flags: Apex
8181
token: ${{ secrets.codecov-token }}

‎.github/workflows/lint-lwc.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ jobs:
1414
steps:
1515
# Checkout the source code
1616
- name: 'Checkout source code'
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
1818

1919
# Install Volta to enforce proper node and package manager versions
2020
- name: 'Install Volta'
21-
uses: volta-cli/action@v4
21+
uses: volta-cli/action@d253558a6e356722728a10e9a469190de21a83ef # v4
2222

2323
# Cache node_modules to speed up the process
2424
- name: 'Restore node_modules cache'
2525
id: cache-npm
26-
uses: actions/cache@v3
26+
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3
2727
with:
2828
path: node_modules
2929
key: npm-${{ hashFiles('**/package-lock.json') }}
@@ -46,7 +46,7 @@ jobs:
4646

4747
# Upload code coverage data
4848
- name: 'Upload code coverage for LWC to Codecov.io'
49-
uses: codecov/codecov-action@v3
49+
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3
5050
with:
5151
flags: LWC
5252
token: ${{ secrets.CODECOV_TOKEN }}${{ secrets.codecov-token }}

‎.github/workflows/prettier-verify.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
# Checkout the source code
1919
- name: 'Checkout source code'
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
2121

2222
# Install npm dependencies for Prettier
2323
- name: 'Install Dependencies'

‎.github/workflows/release-please.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: Release Please
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: google-github-actions/release-please-action@v3
24+
- uses: google-github-actions/release-please-action@db8f2c60ee802b3748b512940dde88eabd7b7e01 # v3
2525
with:
2626
command: manifest
2727
token: ${{ secrets.release-token }}

0 commit comments

Comments
 (0)
Please sign in to comment.