Skip to content

Commit 5503059

Browse files
chore(deps): bump the actions group across 1 directory with 4 updates
Bumps the actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-node](https://github.com/actions/setup-node), [coverallsapp/github-action](https://github.com/coverallsapp/github-action) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/setup-node` from 4 to 5 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v5) Updates `coverallsapp/github-action` from 2.3.0 to 2.3.6 - [Release notes](https://github.com/coverallsapp/github-action/releases) - [Commits](coverallsapp/github-action@643bc37...648a8eb) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-node dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: coverallsapp/github-action dependency-version: 2.3.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 66e0e1d commit 5503059

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/ci-cd.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131

3232
steps:
3333
- name: Checkout source
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535

3636
- name: Install Node.js ${{ matrix.node-version }}
37-
uses: actions/setup-node@v4
37+
uses: actions/setup-node@v5
3838
with:
3939
node-version: ${{ matrix.node-version }}
4040
cache: npm
@@ -46,7 +46,7 @@ jobs:
4646
run: npm run coverage
4747

4848
- name: Send code coverage results to Coveralls
49-
uses: coverallsapp/github-action@643bc377ffa44ace6394b2b5d0d3950076de9f63
49+
uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b
5050
with:
5151
parallel: true
5252
flag-name: Node.js ${{ matrix.node-version }} / ${{ matrix.os }}
@@ -58,7 +58,7 @@ jobs:
5858
needs: test
5959
steps:
6060
- name: Let Coveralls know that all tests have finished
61-
uses: coverallsapp/github-action@643bc377ffa44ace6394b2b5d0d3950076de9f63
61+
uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b
6262
with:
6363
parallel-finished: true
6464

@@ -69,10 +69,10 @@ jobs:
6969

7070
steps:
7171
- name: Checkout source
72-
uses: actions/checkout@v4
72+
uses: actions/checkout@v5
7373

7474
- name: Install Node.js
75-
uses: actions/setup-node@v4
75+
uses: actions/setup-node@v5
7676
with:
7777
node-version: "20"
7878
cache: npm
@@ -119,18 +119,18 @@ jobs:
119119

120120
steps:
121121
- name: Checkout source
122-
uses: actions/checkout@v4
122+
uses: actions/checkout@v5
123123

124124
- name: Install Node.js ${{ matrix.node-version }}
125-
uses: actions/setup-node@v4
125+
uses: actions/setup-node@v5
126126
with:
127127
node-version: ${{ matrix.node-version }}
128128

129129
- name: Install production dependencies
130130
run: npm install --production
131131

132132
- name: Download publish artifact
133-
uses: actions/download-artifact@v4
133+
uses: actions/download-artifact@v5
134134
with:
135135
name: publish-artifact
136136
path: lib
@@ -219,15 +219,15 @@ jobs:
219219

220220
steps:
221221
- name: Checkout source
222-
uses: actions/checkout@v4
222+
uses: actions/checkout@v5
223223

224224
- name: Install Node.js
225-
uses: actions/setup-node@v4
225+
uses: actions/setup-node@v5
226226
with:
227227
node-version: "20"
228228

229229
- name: Download publish artifact
230-
uses: actions/download-artifact@v4
230+
uses: actions/download-artifact@v5
231231
with:
232232
name: publish-artifact
233233
path: lib

0 commit comments

Comments
 (0)