Skip to content

Commit ab33a13

Browse files
author
Aleksandar Stojanov
authored
Merge pull request #176 from ignite-analytics/chore/bump-version
2 parents cf919ed + 4ced7f8 commit ab33a13

File tree

10 files changed

+572
-116
lines changed

10 files changed

+572
-116
lines changed

.github/dependabot.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,21 @@ updates:
66
- dependabot
77
- actions
88
schedule:
9-
interval: daily
9+
interval: weekly
1010

1111
- package-ecosystem: gomod
1212
directory: /
1313
labels:
1414
- dependabot
1515
- go
1616
schedule:
17-
interval: daily
17+
interval: weekly
1818

1919
- package-ecosystem: npm
2020
directory: /infrastructure/pulumi
2121
labels:
2222
- dependabot
2323
- npm
2424
schedule:
25-
interval: daily
25+
interval: weekly
2626
versioning-strategy: increase

infrastructure/helm/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ version: 0.1.1
2121
# incremented each time you make changes to the application. Versions are not expected to
2222
# follow Semantic Versioning. They should reflect the version the application is using.
2323
# It is recommended to use it with quotes.
24-
appVersion: "0.2.8"
24+
appVersion: "0.2.9"

infrastructure/helm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
ClamAV Scanner Helm Chart
44

5-
![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.2.8](https://img.shields.io/badge/AppVersion-0.2.8-informational?style=flat-square)
5+
![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.2.9](https://img.shields.io/badge/AppVersion-0.2.9-informational?style=flat-square)
66

77
A Helm chart for deploying ClamAV Scanner to GKE cluster.
88

infrastructure/pulumi/.eslintignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

infrastructure/pulumi/__tests__/cloudRunService.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { cloudRunService } from '../cloudRunService'
33
import { name } from '../globalConf'
44

55
describe('createCloudRunService', () => {
6-
let serviceName = name
6+
const serviceName = name
77
it('should have the correct name', (done: () => void) => {
88
cloudRunService.name.apply(name => {
99
expect(name).to.equal(serviceName)

infrastructure/pulumi/__tests__/cloudScheduler.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { cloudScheduler } from '../cloudScheduler'
33
import { name } from '../globalConf'
44

55
describe('createCloudRunScheduler', () => {
6-
let scheduleName = `${name}-update`
6+
const scheduleName = `${name}-update`
77

88
it('should have the correct name', done => {
99
cloudScheduler.name.apply(name => {
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import eslint from '@eslint/js'
2+
// import globals from 'globals'
3+
import tseslint from 'typescript-eslint'
4+
5+
export default tseslint.config({
6+
extends: [eslint.configs.recommended, ...tseslint.configs.recommended],
7+
files: ['**/*.ts'],
8+
ignores: ['dist', 'node_modules'],
9+
languageOptions: {
10+
ecmaVersion: 'latest'
11+
},
12+
plugins: {
13+
// Add any plugins here
14+
},
15+
rules: {
16+
'@typescript-eslint/no-unused-vars': 'off',
17+
'@typescript-eslint/no-unused-expressions': 'off'
18+
}
19+
})

infrastructure/pulumi/globalConf.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ export const project = 'my-project' // GCP project ID
33
export const region = 'europe-west1' // service location
44
export const image = {
55
repository: 'ghcr.io/ignite-analytics/clamav-scanner',
6-
tag: '0.2.8'
6+
tag: '0.2.9'
77
}
88
export const schedule = {
99
cron: '37 */2 * * *',

0 commit comments

Comments
 (0)