Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

Commit

Permalink
feat(node): update action to use node@16 (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
happypoulp authored Oct 25, 2022
1 parent 65b480a commit 231b524
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
image: jobteaser/node:2.0.0
steps:
- name: "Checkout"
uses: actions/checkout@v2
uses: actions/checkout@v3.1.0
with:
path: workspace
- name: "Install NPM dependencies"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,10 +177,10 @@ jobs:
container: node:10.13-jessie
steps:
- name: "Checkout"
uses: actions/checkout@v2
uses: actions/checkout@v3.1.0
# If using private repositories in your package.json file
- name: "Setup SSH key for private repos"
uses: webfactory/ssh-agent@v0.5.0
uses: webfactory/ssh-agent@v0.7.0
with:
ssh-private-key: ${{ secrets.GH_USER_PRIVATE_SSH_KEY }}
# If using private NPM packages in your package.json file
Expand All @@ -204,7 +204,7 @@ jobs:
# This upload step allows to share coverage metrics between our 2 jobs
- name: Upload coverage artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3.1.0
with:
name: coverage-artifacts
path: coverage-artifacts.tar.gz
Expand All @@ -217,7 +217,7 @@ jobs:
steps:
# Download coverage metrics previously uploaded
- name: Download coverage artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3.0.0
with:
name: coverage-artifacts
Expand Down

0 comments on commit 231b524

Please sign in to comment.