Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ When you're combining your sourcecode with runtime binaries to be later executed

```yaml
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: download node to "runtime" directory
uses: allegro-actions/add-runtime/node@v1
Expand All @@ -62,4 +62,4 @@ steps:
version: 2.0.0
```

Then the application can be run started using your own runtime: `./runtime/node index.js`
Then the application can be run started using your own runtime: `./runtime/node index.js`
6 changes: 3 additions & 3 deletions node/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ runs:
using: composite
steps:
- id: cache-node
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: node.tar.xz
key: node-${{ inputs.os }}-${{ inputs.version }}

- name: download node ${{ inputs.os }}
if: ${{ steps.cache-node.outputs.cache-hit != 'true' }}
shell: bash
Expand All @@ -31,7 +31,7 @@ runs:
env:
VERSION: ${{ inputs.version }}
OS: ${{ inputs.os }}

- name: unzip
shell: bash
run: |
Expand Down