Skip to content

Commit

Permalink
ci: Run Workflows on node16
Browse files Browse the repository at this point in the history
  • Loading branch information
shrink committed Aug 18, 2023
1 parent 2f70938 commit a00e08b
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/directory.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ jobs:
name: Extract Contents of Directory from Example Image
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Load action build from cache
uses: actions/cache@v3
with:
Expand All @@ -36,6 +39,9 @@ jobs:
name: Extract Nested Directory from Example Image
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Load action build from cache
uses: actions/cache@v3
with:
Expand All @@ -56,6 +62,9 @@ jobs:
name: Extract Nested Contents of Directory from Example Image
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Load action build from cache
uses: actions/cache@v3
with:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/file.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ jobs:
name: Extract Example File From Root of Built Image
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Load action build from cache
uses: actions/cache@v3
with:
Expand All @@ -31,6 +34,9 @@ jobs:
name: Extract Nexted Example File From Built Image
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Load action build from cache
uses: actions/cache@v3
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/package-action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ jobs:
ref: "${{ env.release }}"
fetch-depth: 0
ssh-key: "${{ secrets.COMMIT_KEY }}"
- uses: actions/setup-node@v3
with:
node-version: 16
- uses: pr-mpt/actions-merge-branch@v2
with:
from: "origin/${{ env.source }}"
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/platforms.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ jobs:
name: Extract Example File on Ubuntu
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Load action build from cache
uses: actions/cache@v3
with:
Expand All @@ -31,6 +34,9 @@ jobs:
name: Extract Example File on macOS
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Load action build from cache
uses: actions/cache@v3
with:
Expand Down

0 comments on commit a00e08b

Please sign in to comment.