We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40d19a2 commit 7a15bedCopy full SHA for 7a15bed
.github/workflows/bundle-audit.yml
@@ -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