Skip to content

Commit ce959ac

Browse files
committed
chore: pin dependencies in the pipeline
1 parent 2a00da2 commit ce959ac

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ jobs:
113113
node-version: "19.7"
114114

115115
steps:
116-
- uses: actions/checkout@v3
116+
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
117117

118118
- name: Install Node.js ${{ matrix.node-version }}
119119
shell: bash -eo pipefail -l {0}
@@ -178,7 +178,7 @@ jobs:
178178
mv "./${{ matrix.name }}" "./coverage/${{ matrix.name }}"
179179
180180
- name: Upload code coverage
181-
uses: actions/upload-artifact@v3
181+
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
182182
with:
183183
name: coverage
184184
path: ./coverage
@@ -188,14 +188,14 @@ jobs:
188188
needs: test
189189
runs-on: ubuntu-latest
190190
steps:
191-
- uses: actions/checkout@v3
191+
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
192192

193193
- name: Install lcov
194194
shell: bash
195195
run: sudo apt-get -y install lcov
196196

197197
- name: Collect coverage reports
198-
uses: actions/download-artifact@v3
198+
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2
199199
with:
200200
name: coverage
201201
path: ./coverage
@@ -205,6 +205,6 @@ jobs:
205205
run: find ./coverage -name lcov.info -exec printf '-a %q\n' {} \; | xargs lcov -o ./coverage/lcov.info
206206

207207
- name: Upload coverage report
208-
uses: coverallsapp/github-action@master
208+
uses: coverallsapp/github-action@09b709cf6a16e30b0808ba050c7a6e8a5ef13f8d # master
209209
with:
210210
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)