Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix workflow code scanning results #291

Merged
merged 1 commit into from
Dec 3, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/licensed-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
node-version: 18

- uses: ruby/setup-ruby@v1
- uses: ruby/setup-ruby@a2bbe5b1b236842c1cb7dd11e8e3b51e0a616acc
with:
ruby-version: ruby

Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/test-action-run.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
name: Test running setup-licensed
permissions:
contents: read

on:
pull_request:
Expand All @@ -17,9 +19,9 @@ jobs:
steps:
# checkout the repo
- uses: actions/checkout@v4

# install ruby
- uses: ruby/setup-ruby@v1
- uses: ruby/setup-ruby@a2bbe5b1b236842c1cb7dd11e8e3b51e0a616acc
with:
bundler-cache: 'true'
ruby-version: "3.0"
Expand All @@ -41,7 +43,7 @@ jobs:
steps:
# checkout the repo
- uses: actions/checkout@v4

# do not install ruby

# install node
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
name: "Test"
on: push
permissions:
contents: read

jobs:
test:
Expand Down