Skip to content

Commit fad20fd

Browse files
authored
Merge pull request #303 from jiaqiluo/patch-109
2 parents 11ea4b3 + fc775cb commit fad20fd

13 files changed

Lines changed: 319 additions & 225 deletions

File tree

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ bin
44
./bin
55
./.dapper
66
./dist
7+
./.github

.drone.yml

Lines changed: 0 additions & 209 deletions
This file was deleted.

.github/renovate.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"extends": [
3+
"github>rancher/renovate-config#release"
4+
],
5+
"baseBranches": [
6+
"master"
7+
],
8+
"prHourlyLimit": 2
9+
}

.github/workflows/fossa.yaml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Run Fossa Scan
2+
3+
on:
4+
push:
5+
branches:
6+
- v0.15.0-rancher109-patch
7+
# For manual scans.
8+
workflow_dispatch:
9+
10+
jobs:
11+
fossa:
12+
runs-on: ubuntu-latest
13+
permissions:
14+
contents: read
15+
id-token: write # needed for the Vault authentication
16+
steps:
17+
- name: Checkout
18+
uses: actions/checkout@v4
19+
20+
- name: Read FOSSA token
21+
uses: rancher-eio/read-vault-secrets@main
22+
with:
23+
secrets: |
24+
secret/data/github/org/rancher/fossa/push token | FOSSA_API_KEY_PUSH_ONLY
25+
26+
- name: FOSSA scan
27+
uses: fossas/fossa-action@main
28+
with:
29+
api-key: ${{ env.FOSSA_API_KEY_PUSH_ONLY }}
30+
run-tests: false

0 commit comments

Comments
 (0)