Skip to content

Commit e680f02

Browse files
chore(deps): update dependency actions/checkout to v4.2.2
1 parent d76cd83 commit e680f02

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/node-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- 20.6.1
2323
- 21
2424
steps:
25-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
25+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2626
- name: Setup node
2727
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
2828
with:
@@ -33,7 +33,7 @@ jobs:
3333
verify:
3434
runs-on: ubuntu-latest
3535
steps:
36-
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
36+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3737
- name: Setup node
3838
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
3939
with:

src/steps/scaffolders.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ export function installDependencies() {
2323
}
2424

2525
export function checkout() {
26-
return {uses: 'actions/[email protected].1'};
26+
return {uses: 'actions/[email protected].2'};
2727
}

src/steps/scaffolders.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {checkout, executeVerification, installDependencies, setupNode} from './s
44

55
describe('step scaffolders', () => {
66
it('should scaffold the details of the checkout step', () => {
7-
expect(checkout()).toEqual({uses: 'actions/[email protected].1'});
7+
expect(checkout()).toEqual({uses: 'actions/[email protected].2'});
88
});
99

1010
it('should set up node correctly when the version is determined from the `.nvmrc`', () => {

0 commit comments

Comments
 (0)