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
7 changes: 0 additions & 7 deletions .github/dependabot.yml

This file was deleted.

21 changes: 21 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"extends": [
"github>rancher/renovate-config#release"
],
"baseBranches": [
"main"
],
"prHourlyLimit": 2,
"vulnerabilityAlerts": {
"enabled": true
},
"osvVulnerabilityAlerts": true,
"packageRules": [
{
"enabled": false,
"matchPackageNames": [
"*"
]
}
]
}
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build and Release Extension Charts

on:
release:
types: [prereleased, released]

defaults:
run:
shell: bash
working-directory: ./

jobs:
build-extension-charts:
uses: rancher/dashboard/.github/workflows/build-extension-charts.yml@master
permissions:
actions: write
contents: write
deployments: write
pages: write
with:
target_branch: gh-pages
tagged_release: ${{ github.ref_name }}
29 changes: 29 additions & 0 deletions .github/workflows/renovate-vault.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Renovate
on:
workflow_dispatch:
inputs:
logLevel:
description: "Override default log level"
required: false
default: "info"
type: string
overrideSchedule:
description: "Override all schedules"
required: false
default: "false"
type: string
# Run twice in the early morning (UTC) for initial and follow up steps (create pull request and merge)
schedule:
- cron: '30 4,6 * * *'

permissions:
contents: read
id-token: write

jobs:
call-workflow:
uses: rancher/renovate-config/.github/workflows/renovate-vault.yml@release
with:
logLevel: ${{ inputs.logLevel || 'info' }}
overrideSchedule: ${{ github.event.inputs.overrideSchedule == 'true' && '{''schedule'':null}' || '' }}
secrets: inherit
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI
name: Unit test
on: [push, pull_request]
jobs:
test:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function init($plugin: IPlugin, store: any) {
});

virtualType({
label: store.getters["i18n/t"]("image_scanner.vulnerabilities.title"),
labelKey: "imageScanner.vulnerabilities.title",
name: PAGE.VULNERABILITY_OVERVIEW,
namespaced: false,
route: {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import RegistryDetails from "@sbombastic-image-vulnerability-scanner/components/RegistryDetails.vue";
import ComponentDemo from "@sbombastic-image-vulnerability-scanner/pages/c/_cluster/sbombastic-image-vulnerability-scanner/ComponentDemo.vue";
import ImageOverview from "@sbombastic-image-vulnerability-scanner/pages/c/_cluster/sbombastic-image-vulnerability-scanner/ImageOverview.vue";
import Registries from "@sbombastic-image-vulnerability-scanner/pages/c/_cluster/sbombastic-image-vulnerability-scanner/registries.vue";
import Vulnerabilities from "@sbombastic-image-vulnerability-scanner/pages/c/_cluster/sbombastic-image-vulnerability-scanner/vulnerabilities.vue";
import Registries from "@sbombastic-image-vulnerability-scanner/pages/c/_cluster/sbombastic-image-vulnerability-scanner/Registries.vue";
import Vulnerabilities from "@sbombastic-image-vulnerability-scanner/pages/c/_cluster/sbombastic-image-vulnerability-scanner/Vulnerabilities.vue";

import {
PRODUCT_NAME,
Expand Down