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
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '2.4', '2.5', '2.6']
ruby: [ '2.4', '2.5', '2.6', '3.1']
name: Test Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rvm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ 'jruby-9.2.9.0', 'jruby-head' ]
ruby: [ 'jruby' ]
name: Test Ruby ${{ matrix.ruby }}
steps:
- name: Install libraries
Expand All @@ -23,7 +23,7 @@ jobs:
- name: Set up Ruby
run: |
source $HOME/.rvm/scripts/rvm
rvm install ${{ matrix.ruby }} --binary
rvm install ${{ matrix.ruby }}
rvm --default use ${{ matrix.ruby }}
- name: Install dependencies
run: |
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/security.code-scanning.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: CodeQL

on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
workflow_dispatch:

jobs:
codeql-ruby:
uses: chargehound/security-workflows-public/.github/workflows/codeql-ruby.yml@main
10 changes: 10 additions & 0 deletions .github/workflows/security.dependency-review.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Dependency Review

on:
pull_request:
branches: [ main ]
workflow_dispatch:

jobs:
dependency-review:
uses: chargehound/security-workflows-public/.github/workflows/dependency-review.yml@main
Loading