Skip to content

Commit ce17a21

Browse files
committed
Setup node workflows
1 parent e774cc5 commit ce17a21

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Checkout
1717
uses: actions/checkout@v1
1818

19-
- uses: actions/setup-node@v1
19+
- uses: actions/setup-node@v1.4.4
2020
with:
2121
node-version: '10.15.1'
2222
registry-url: 'https://registry.npmjs.org'

.github/workflows/integration-beta.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
persist-credentials: false
105105

106106
- name: Install SSH Client
107-
uses: webfactory/ssh-agent@v0.4.1
107+
uses: webfactory/ssh-agent@v0.2.0
108108
with:
109109
ssh-private-key: ${{ secrets.DEPLOY_KEY }}
110110

@@ -129,7 +129,7 @@ jobs:
129129
needs: integration-ssh
130130
runs-on: ubuntu-latest
131131
steps:
132-
- uses: actions/setup-node@v1
132+
- uses: actions/setup-node@v1.4.4
133133
with:
134134
node-version: '10.x'
135135

@@ -139,7 +139,7 @@ jobs:
139139
persist-credentials: false
140140

141141
- name: Install SSH Client
142-
uses: webfactory/ssh-agent@v0.4.1
142+
uses: webfactory/ssh-agent@v0.2.0
143143
with:
144144
ssh-private-key: ${{ secrets.DEPLOY_KEY }}
145145

.github/workflows/integration.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
persist-credentials: false
105105

106106
- name: Install SSH Client
107-
uses: webfactory/ssh-agent@v0.4.1
107+
uses: webfactory/ssh-agent@v0.2.0
108108
with:
109109
ssh-private-key: ${{ secrets.DEPLOY_KEY }}
110110

@@ -128,7 +128,7 @@ jobs:
128128
needs: integration-ssh
129129
runs-on: ubuntu-latest
130130
steps:
131-
- uses: actions/setup-node@v1
131+
- uses: actions/setup-node@v1.4.4
132132
with:
133133
node-version: '10.x'
134134

@@ -138,7 +138,7 @@ jobs:
138138
persist-credentials: false
139139

140140
- name: Install SSH Client
141-
uses: webfactory/ssh-agent@v0.4.1
141+
uses: webfactory/ssh-agent@v0.2.0
142142
with:
143143
ssh-private-key: ${{ secrets.DEPLOY_KEY }}
144144

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
ref: dev
1313

1414
# Setup .npmrc file to publish to npm
15-
- uses: actions/setup-node@v1.4.2
15+
- uses: actions/setup-node@v1.4.4
1616
with:
1717
node-version: '10.15.1'
1818
registry-url: 'https://registry.npmjs.org'
@@ -37,7 +37,7 @@ jobs:
3737
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
3838

3939
# Setup .npmrc file to publish to GitHub Packages
40-
- uses: actions/setup-node@v1.4.2
40+
- uses: actions/setup-node@v1.4.4
4141
with:
4242
node-version: 12
4343
registry-url: 'https://npm.pkg.github.com'

0 commit comments

Comments
 (0)