Skip to content

Commit 1bf3652

Browse files
committed
fix(action-versions): bumped the actions used in the release workflow to their current versions
1 parent 1371116 commit 1bf3652

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/semantic-release/ci-providers/github-workflows/scaffolder-test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ suite('github release workflow scaffolder', () => {
3232
release: {
3333
'runs-on': 'ubuntu-latest',
3434
steps: [
35-
{uses: 'actions/checkout@v2'},
35+
{uses: 'actions/checkout@v3'},
3636
{
3737
name: 'Setup node',
38-
uses: 'actions/setup-node@v2',
38+
uses: 'actions/setup-node@v3',
3939
with: {'node-version-file': '.nvmrc', cache: 'npm'}
4040
},
4141
{run: 'npm clean-install'},

src/semantic-release/ci-providers/github-workflows/scaffolder.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ export default async function ({projectRoot}) {
1212
release: {
1313
'runs-on': 'ubuntu-latest',
1414
steps: [
15-
{uses: 'actions/checkout@v2'},
15+
{uses: 'actions/checkout@v3'},
1616
{
1717
name: 'Setup node',
18-
uses: 'actions/setup-node@v2',
18+
uses: 'actions/setup-node@v3',
1919
with: {'node-version-file': '.nvmrc', cache: 'npm'}
2020
},
2121
{run: 'npm clean-install'},

0 commit comments

Comments
 (0)