Skip to content

Commit 7a15bed

Browse files
authored
Backport ci: apply bundle-audit (#838) (#839)
Not to let vulnerability alone, use bundle-audit Signed-off-by: Kentaro Hayashi <[email protected]>
1 parent 40d19a2 commit 7a15bed

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/bundle-audit.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Bundle audit
2+
on:
3+
push:
4+
pull_request:
5+
workflow_dispatch:
6+
concurrency:
7+
group: ${{ github.head_ref || github.sha }}-${{ github.workflow }}
8+
cancel-in-progress: true
9+
jobs:
10+
build:
11+
name: Audit
12+
timeout-minutes: 90
13+
strategy:
14+
fail-fast: false
15+
runs-on: windows-2019
16+
steps:
17+
- name: Set up Ruby
18+
uses: ruby/setup-ruby@v1
19+
with:
20+
ruby-version: 3.2
21+
- uses: actions/checkout@v4
22+
- name: Build
23+
run: |
24+
gem install bundle-audit
25+
cd fluent-package
26+
bundle-audit check --update

0 commit comments

Comments
 (0)