We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 320fe7d commit c36116cCopy full SHA for c36116c
.github/workflows/licensed.yml
@@ -21,9 +21,19 @@ jobs:
21
- name: Install dependencies
22
run: npm ci --ignore-scripts
23
24
+ - name: Set up Ruby
25
+ uses: ruby/setup-ruby@v1
26
+ with:
27
+ ruby-version: '3.1.7'
28
+
29
- name: Install licensed tool
30
run: |
- brew install [email protected]
31
+ cd "$RUNNER_TEMP"
32
+ curl -Lfs -o licensed.tar.gz https://github.com/licensee/licensed/archive/refs/tags/v5.0.4.tar.gz
33
+ tar -xzf licensed.tar.gz
34
+ cd licensed-5.0.4
35
+ bundle install
36
37
- name: Check cached dependency records
- run: licensed status
38
+ working-directory: ${{ github.workspace }}
39
+ run: $RUNNER_TEMP/licensed-5.0.4/exe/licensed status
0 commit comments