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
8 changes: 4 additions & 4 deletions .github/actions/setup-node/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ runs:
using: 'composite'
steps:
- name: Setup Node
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: 18
- name: Detect Yarn cache dir
id: yarn-cache-dir-path
shell: bash
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
- name: Restore Yarn packages
Comment thread
dividedmind marked this conversation as resolved.
uses: actions/cache/restore@v3
uses: actions/cache/restore@v5
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ github.job }}-yarn-${{ hashFiles('yarn.lock') }}
- name: Restore node_modules
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: ./node_modules
key: ${{ github.job }}-node-modules-${{ hashFiles('yarn.lock') }}
Expand Down
332 changes: 0 additions & 332 deletions .github/workflows/build-native-scanner.yml

This file was deleted.

Loading
Loading