Setup node workflows
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index e78980c..ef6465a 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -16,7 +16,7 @@
       - name: Checkout
         uses: actions/checkout@v1
 
-      - uses: actions/setup-node@v1
+      - uses: actions/setup-node@v1.4.4
         with:
           node-version: '10.15.1'
           registry-url: 'https://registry.npmjs.org'
diff --git a/.github/workflows/integration-beta.yml b/.github/workflows/integration-beta.yml
index c91f35f..27192c9 100644
--- a/.github/workflows/integration-beta.yml
+++ b/.github/workflows/integration-beta.yml
@@ -104,7 +104,7 @@
           persist-credentials: false
 
       - name: Install SSH Client
-        uses: webfactory/ssh-agent@v0.4.1
+        uses: webfactory/ssh-agent@v0.2.0
         with:
           ssh-private-key: ${{ secrets.DEPLOY_KEY }}
 
@@ -129,7 +129,7 @@
     needs: integration-ssh
     runs-on: ubuntu-latest
     steps:
-      - uses: actions/setup-node@v1
+      - uses: actions/setup-node@v1.4.4
         with:
           node-version: '10.x'
 
@@ -139,7 +139,7 @@
           persist-credentials: false
 
       - name: Install SSH Client
-        uses: webfactory/ssh-agent@v0.4.1
+        uses: webfactory/ssh-agent@v0.2.0
         with:
           ssh-private-key: ${{ secrets.DEPLOY_KEY }}
 
diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml
index 665396c..fdf6b07 100644
--- a/.github/workflows/integration.yml
+++ b/.github/workflows/integration.yml
@@ -104,7 +104,7 @@
           persist-credentials: false
 
       - name: Install SSH Client
-        uses: webfactory/ssh-agent@v0.4.1
+        uses: webfactory/ssh-agent@v0.2.0
         with:
           ssh-private-key: ${{ secrets.DEPLOY_KEY }}
 
@@ -128,7 +128,7 @@
     needs: integration-ssh
     runs-on: ubuntu-latest
     steps:
-      - uses: actions/setup-node@v1
+      - uses: actions/setup-node@v1.4.4
         with:
           node-version: '10.x'
 
@@ -138,7 +138,7 @@
           persist-credentials: false
 
       - name: Install SSH Client
-        uses: webfactory/ssh-agent@v0.4.1
+        uses: webfactory/ssh-agent@v0.2.0
         with:
           ssh-private-key: ${{ secrets.DEPLOY_KEY }}
 
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index 3a5946b..1cc0590 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -12,7 +12,7 @@
         ref: dev
 
     # Setup .npmrc file to publish to npm
-    - uses: actions/setup-node@v1.4.2
+    - uses: actions/setup-node@v1.4.4
       with:
         node-version: '10.15.1'
         registry-url: 'https://registry.npmjs.org'
@@ -37,7 +37,7 @@
         NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
 
     # Setup .npmrc file to publish to GitHub Packages
-    - uses: actions/setup-node@v1.4.2
+    - uses: actions/setup-node@v1.4.4
       with:
         node-version: 12
         registry-url: 'https://npm.pkg.github.com'