Commit graph

2483 commits

Author SHA1 Message Date
dependabot[bot]
af35b089f7
Bump rubocop-github from 0.16.1 to 0.16.2 in /dependencies (#1711)
Bumps [rubocop-github](https://github.com/github/rubocop-github) from 0.16.1 to 0.16.2.
- [Release notes](https://github.com/github/rubocop-github/releases)
- [Commits](https://github.com/github/rubocop-github/compare/0.16.1...v0.16.2)

---
updated-dependencies:
- dependency-name: rubocop-github
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-28 13:52:43 -05:00
dependabot[bot]
d78ba3ed02
Bump alpine/terragrunt from 1.0.0 to 1.0.1 (#1713)
Bumps alpine/terragrunt from 1.0.0 to 1.0.1.

---
updated-dependencies:
- dependency-name: alpine/terragrunt
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-28 13:51:09 -05:00
dependabot[bot]
1c49ffc5e8
Bump prettier from 2.3.1 to 2.3.2 in /dependencies (#1714)
Bumps [prettier](https://github.com/prettier/prettier) from 2.3.1 to 2.3.2.
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](https://github.com/prettier/prettier/compare/2.3.1...2.3.2)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-28 13:51:02 -05:00
dependabot[bot]
4ac1c78421
Bump @typescript-eslint/eslint-plugin in /dependencies (#1715)
Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 4.27.0 to 4.28.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v4.28.0/packages/eslint-plugin)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-28 13:50:54 -05:00
Ayodeji Osagie
f187b0b3ab
Fix terragrunt file picker from selecting packer files (#1707)
Co-authored-by: Lukas Gravley <admiralawkbar@github.com>
2021-06-28 08:40:31 -05:00
Stepan Koltsov
e059100991
Ignore files marked with @generated marker (#1689)
* Ignore files marked with @generated marker

`@generated` marker is used by certain tools to understand that the
file is generated, so it should be treated differently than a file
written by a human:
* these files do not need to be reformatted,
* diffs in these files are less important,
* and linters should not be invoked on these files.

This PR proposes builtin support for `@generated` marker (and
`@not-generated` marker to mark file as not generated when it
contains `@generated` marker, like `README.md`).

I have not found a standard for a generated file marker, but:
* Facebook [uses `@generated` marker](https://tinyurl.com/fb-generated)
* Phabricator tool which was spawned from Facebook internal tool
  [also understands `@generated` marker](https://git.io/JnVHa)
* Cargo inserts `@generated` marker into [generated Cargo.lock files](https://git.io/JnVHP)

Super-linter supports regex includes and excludes, but they are
harder to maintain (each repository needs to be configured) than
patching the tools which generate the files.

My personal story is that I maintain rust-protobuf crate, which
started emitting `@generated` markers [six years ago](https://git.io/JnV5h)
after a request of a Phabricator user.

Test Plan:

Create a test file `test.sh`:

```
echo $a
```

Run:

```
docker run -e RUN_LOCAL=true -v $HOME/tmp/g:/tmp/lint super-linter-test
```

Result is:

```
In /tmp/lint/test.sh line 1:
echo $a
^-- SC2148: Tips depend on target shell and yours is unknown. Add a shebang or a 'shell' directive.
     ^-- SC2154: a is referenced but not assigned.
     ^-- SC2086: Double quote to prevent globbing and word splitting.
...
2021-06-22 23:46:16 [ERROR]   ERRORS FOUND in BASH:[1]
```

Now add `@generated` to the file and run again:

```
2021-06-22 23:47:13 [NOTICE]   All file(s) linted successfully with no errors detected
```

Additionally, add `@not-generated` in addition to `@generated`, and
linter error pops up again.

* cleanup

* remove space

* fix non utf return

* fix non utf return

Co-authored-by: Lukas Gravley <admiralawkbar@github.com>
2021-06-28 07:59:11 -05:00
Admiral Awkbar
de0700eb5f remove load from push 2021-06-24 12:35:48 -05:00
dependabot[bot]
2b6a17c3f8
Bump golangci/golangci-lint from v1.40.1 to v1.41.1 (#1679)
Bumps golangci/golangci-lint from v1.40.1 to v1.41.1.

---
updated-dependencies:
- dependency-name: golangci/golangci-lint
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-24 10:55:54 -05:00
dependabot[bot]
a0cae29041
Bump @typescript-eslint/eslint-plugin in /dependencies (#1681)
Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 4.26.1 to 4.27.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v4.27.0/packages/eslint-plugin)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Lukas Gravley <admiralawkbar@github.com>
2021-06-24 10:55:40 -05:00
dependabot[bot]
710dde0a9e
Bump @typescript-eslint/parser from 4.26.1 to 4.27.0 in /dependencies (#1682)
Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 4.26.1 to 4.27.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v4.27.0/packages/parser)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Lukas Gravley <admiralawkbar@github.com>
2021-06-24 10:54:38 -05:00
dependabot[bot]
a1c31d5975
Bump typescript from 4.3.2 to 4.3.4 in /dependencies (#1683)
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.3.2 to 4.3.4.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](https://github.com/Microsoft/TypeScript/compare/v4.3.2...v4.3.4)

---
updated-dependencies:
- dependency-name: typescript
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Lukas Gravley <admiralawkbar@github.com>
2021-06-24 10:54:29 -05:00
dependabot[bot]
ce39a68e67
Bump eslint from 7.28.0 to 7.29.0 in /dependencies (#1684)
Bumps [eslint](https://github.com/eslint/eslint) from 7.28.0 to 7.29.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v7.28.0...v7.29.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Lukas Gravley <admiralawkbar@github.com>
2021-06-24 10:54:20 -05:00
Ali mazloum
3f20ea4966
Bump cljkondo/clj-kondo from 2021.06.01-alpine to 2021.06.18-alpine (#1688)
Bumps cljkondo/clj-kondo from 2021.06.01-alpine to 2021.06.18-alpine.

---
updated-dependencies:
- dependency-name: cljkondo/clj-kondo
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Lukas Gravley <admiralawkbar@github.com>
2021-06-24 10:54:11 -05:00
Lukas Gravley
46f72b56e8
Use GitHub Action cache (#1687)
* maybe

* buildx

* fix order

* make phar happy

* have to use run

* slashes

* commands are hard

* adding info

* try load and push

* only push

* only load

* better way

* cleanup
2021-06-24 10:19:42 -05:00
dependabot[bot]
9d4e23b7db
Bump alpine from 3.13.5 to 3.14.0 (#1678)
Bumps alpine from 3.13.5 to 3.14.0.

---
updated-dependencies:
- dependency-name: alpine
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-21 13:19:12 -05:00
Marco Ferrari
d5b94b9108
Fix README issues (#1666) 2021-06-15 19:11:45 +02:00
dependabot[bot]
16e0800480
Bump dotenvlinter/dotenv-linter from 3.0.0 to 3.1.0 (#1653)
Bumps dotenvlinter/dotenv-linter from 3.0.0 to 3.1.0.

---
updated-dependencies:
- dependency-name: dotenvlinter/dotenv-linter
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-14 09:34:53 -05:00
dependabot[bot]
8ebd1e21af
Bump accurics/terrascan from 1.6.0 to 1.7.0 (#1654)
Bumps accurics/terrascan from 1.6.0 to 1.7.0.

---
updated-dependencies:
- dependency-name: accurics/terrascan
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-14 09:34:43 -05:00
dependabot[bot]
428867f7a7
Bump bobheadxi/deployments from 0.5.2 to 0.6.0 (#1655)
Bumps [bobheadxi/deployments](https://github.com/bobheadxi/deployments) from 0.5.2 to 0.6.0.
- [Release notes](https://github.com/bobheadxi/deployments/releases)
- [Commits](https://github.com/bobheadxi/deployments/compare/v0.5.2...v0.6.0)

---
updated-dependencies:
- dependency-name: bobheadxi/deployments
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-14 09:34:35 -05:00
dependabot[bot]
2a9dbbedcb
Bump alpine/terragrunt from 0.15.5 to 1.0.0 (#1656)
Bumps alpine/terragrunt from 0.15.5 to 1.0.0.

---
updated-dependencies:
- dependency-name: alpine/terragrunt
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-14 09:34:24 -05:00
dependabot[bot]
7f73181e4c
Bump wata727/tflint from 0.29.0 to 0.29.1 (#1657)
Bumps wata727/tflint from 0.29.0 to 0.29.1.

---
updated-dependencies:
- dependency-name: wata727/tflint
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-14 09:26:54 -05:00
dependabot[bot]
d80f01b9df
Bump npm-groovy-lint from 8.1.0 to 8.2.0 in /dependencies (#1658)
Bumps [npm-groovy-lint](https://github.com/nvuillam/npm-groovy-lint) from 8.1.0 to 8.2.0.
- [Release notes](https://github.com/nvuillam/npm-groovy-lint/releases)
- [Changelog](https://github.com/nvuillam/npm-groovy-lint/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nvuillam/npm-groovy-lint/compare/v8.1.0...v8.2.0)

---
updated-dependencies:
- dependency-name: npm-groovy-lint
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-14 09:26:45 -05:00
dependabot[bot]
a458ef7d32
Bump htmlhint from 0.14.2 to 0.15.1 in /dependencies (#1659)
Bumps [htmlhint](https://github.com/htmlhint/HTMLHint) from 0.14.2 to 0.15.1.
- [Release notes](https://github.com/htmlhint/HTMLHint/releases)
- [Changelog](https://github.com/htmlhint/HTMLHint/blob/master/CHANGELOG.md)
- [Commits](https://github.com/htmlhint/HTMLHint/compare/v0.14.2...v0.15.1)

---
updated-dependencies:
- dependency-name: htmlhint
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-14 09:26:37 -05:00
dependabot[bot]
7f7e6ebe7f
Bump eslint-plugin-jsonc from 1.2.1 to 1.3.1 in /dependencies (#1660)
Bumps [eslint-plugin-jsonc](https://github.com/ota-meshi/eslint-plugin-jsonc) from 1.2.1 to 1.3.1.
- [Release notes](https://github.com/ota-meshi/eslint-plugin-jsonc/releases)
- [Commits](https://github.com/ota-meshi/eslint-plugin-jsonc/compare/v1.2.1...v1.3.1)

---
updated-dependencies:
- dependency-name: eslint-plugin-jsonc
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-14 09:25:40 -05:00
dependabot[bot]
85c7877fdb
Bump immer from 9.0.2 to 9.0.3 in /dependencies (#1661)
Bumps [immer](https://github.com/immerjs/immer) from 9.0.2 to 9.0.3.
- [Release notes](https://github.com/immerjs/immer/releases)
- [Commits](https://github.com/immerjs/immer/compare/v9.0.2...v9.0.3)

---
updated-dependencies:
- dependency-name: immer
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-14 09:25:31 -05:00
dependabot[bot]
1cce4849f6
Bump rubocop-rspec from 2.3.0 to 2.4.0 in /dependencies (#1662)
Bumps [rubocop-rspec](https://github.com/rubocop/rubocop-rspec) from 2.3.0 to 2.4.0.
- [Release notes](https://github.com/rubocop/rubocop-rspec/releases)
- [Changelog](https://github.com/rubocop/rubocop-rspec/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rubocop/rubocop-rspec/compare/v2.3.0...v2.4.0)

---
updated-dependencies:
- dependency-name: rubocop-rspec
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-14 09:25:16 -05:00
github-actions[bot]
985ef38d20
Updating action.yml with new release version (#1651)
Co-authored-by: SuperLinter Automation <super_linter_automation@github.com>
2021-06-10 18:28:37 +00:00
Lukas Gravley
c4280ea4e1
LINTER_RULE_PATH fix (#1649)
* adding root code

* removbe a typio
2021-06-10 13:09:24 -05:00
github-actions[bot]
20eb231611
Updating action.yml with new release version (#1646)
Co-authored-by: SuperLinter Automation <super_linter_automation@github.com>
2021-06-09 17:24:35 +00:00
Lukas Gravley
2c135d4a17
adding rules file (#1644)
* adding rules file

* fix naming

* cleanup

* make smart

* fixing the make

* adding template

* white space

* not sure how i got windows

* found the space
2021-06-09 11:53:11 -05:00
github-actions[bot]
35653520cd
Updating action.yml with new release version (#1642)
Co-authored-by: SuperLinter Automation <super_linter_automation@github.com>
2021-06-08 15:24:27 -05:00
Lukas Gravley
4faa6433ab
adding find algorithm (#1640)
* adding find

* add default value
2021-06-08 10:40:59 -05:00
Lukas Gravley
7fe0d997fb
adding stale config (#1639) 2021-06-08 09:24:04 -05:00
dependabot[bot]
8b38155f31
Bump sql-lint from 0.0.17 to 0.0.18 in /dependencies (#1627)
Bumps [sql-lint](https://github.com/joereynolds/sql-lint) from 0.0.17 to 0.0.18.
- [Release notes](https://github.com/joereynolds/sql-lint/releases)
- [Commits](https://github.com/joereynolds/sql-lint/compare/v0.0.17...v0.0.18)

---
updated-dependencies:
- dependency-name: sql-lint
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-07 17:16:27 -05:00
dependabot[bot]
854192844d
Bump cljkondo/clj-kondo from 2021.04.23-alpine to 2021.06.01-alpine (#1622)
Bumps cljkondo/clj-kondo from 2021.04.23-alpine to 2021.06.01-alpine.

---
updated-dependencies:
- dependency-name: cljkondo/clj-kondo
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-07 17:16:16 -05:00
dependabot[bot]
52e54edaa9
Bump wata727/tflint from 0.28.1 to 0.29.0 (#1623)
Bumps wata727/tflint from 0.28.1 to 0.29.0.

---
updated-dependencies:
- dependency-name: wata727/tflint
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-07 13:58:28 -05:00
dependabot[bot]
782a606d4c
Bump yoheimuta/protolint from v0.31.0 to v0.32.0 (#1625)
Bumps yoheimuta/protolint from v0.31.0 to v0.32.0.

---
updated-dependencies:
- dependency-name: yoheimuta/protolint
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-07 13:57:34 -05:00
dependabot[bot]
8e88de7ed8
Bump alpine/terragrunt from 0.15.4 to 0.15.5 (#1626)
Bumps alpine/terragrunt from 0.15.4 to 0.15.5.

---
updated-dependencies:
- dependency-name: alpine/terragrunt
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-07 13:57:23 -05:00
dependabot[bot]
793bf74e8e
Bump eslint from 7.27.0 to 7.28.0 in /dependencies (#1628)
Bumps [eslint](https://github.com/eslint/eslint) from 7.27.0 to 7.28.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v7.27.0...v7.28.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-07 13:57:15 -05:00
dependabot[bot]
28373b0ae2
Bump prettier from 2.3.0 to 2.3.1 in /dependencies (#1629)
Bumps [prettier](https://github.com/prettier/prettier) from 2.3.0 to 2.3.1.
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](https://github.com/prettier/prettier/compare/2.3.0...2.3.1)

---
updated-dependencies:
- dependency-name: prettier
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-07 13:57:04 -05:00
dependabot[bot]
d679f18ee1
Bump @typescript-eslint/parser from 4.25.0 to 4.26.1 in /dependencies (#1636)
Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 4.25.0 to 4.26.1.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v4.26.1/packages/parser)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Lukas Gravley <admiralawkbar@github.com>
2021-06-07 13:56:53 -05:00
dependabot[bot]
5534c7c426
Bump @typescript-eslint/eslint-plugin in /dependencies (#1637)
Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 4.25.0 to 4.26.1.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v4.26.1/packages/eslint-plugin)

---
updated-dependencies:
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-07 13:56:08 -05:00
dependabot[bot]
d990822383
Bump asl-validator from 1.9.8 to 1.10.0 in /dependencies (#1621)
Bumps [asl-validator](https://github.com/ChristopheBougere/asl-validator) from 1.9.8 to 1.10.0.
- [Release notes](https://github.com/ChristopheBougere/asl-validator/releases)
- [Commits](https://github.com/ChristopheBougere/asl-validator/compare/1.9.8...1.10.0)

---
updated-dependencies:
- dependency-name: asl-validator
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-07 13:02:27 -05:00
github-actions[bot]
84a60bbc41
Updating action.yml with new release version (#1615)
Co-authored-by: SuperLinter Automation <super_linter_automation@github.com>
2021-06-03 14:42:48 -05:00
Lukas Gravley
30812b0716
Update deploy-RELEASE-slim.yml (#1613)
* Update deploy-RELEASE-slim.yml

* spacing
2021-06-03 09:45:15 -05:00
Lukas Gravley
6ce478c991
Kube (#1609)
* adding var

* adding var

* bug

* spacing

* better name
2021-06-01 15:04:25 -05:00
Lukas Gravley
ebf6194d0e
wildcard search (#1608) 2021-06-01 12:17:13 -05:00
dependabot[bot]
cc1f9932f2
Bump docker/build-push-action from 2.4.0 to 2.5.0 (#1603)
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 2.4.0 to 2.5.0.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](https://github.com/docker/build-push-action/compare/v2.4.0...v2.5.0)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Lukas Gravley <admiralawkbar@github.com>
2021-06-01 11:10:05 -05:00
dependabot[bot]
5c21223e25
Bump typescript from 4.2.4 to 4.3.2 in /dependencies (#1604)
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.2.4 to 4.3.2.
- [Release notes](https://github.com/Microsoft/TypeScript/releases)
- [Commits](https://github.com/Microsoft/TypeScript/compare/v4.2.4...v4.3.2)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Lukas Gravley <admiralawkbar@github.com>
2021-06-01 11:09:55 -05:00
dependabot[bot]
af81af0c7d
Bump gherkin-lint from 4.2.1 to 4.2.2 in /dependencies (#1605)
Bumps [gherkin-lint](https://github.com/vsiakka/gherkin-lint) from 4.2.1 to 4.2.2.
- [Release notes](https://github.com/vsiakka/gherkin-lint/releases)
- [Commits](https://github.com/vsiakka/gherkin-lint/compare/v4.2.1...v4.2.2)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Lukas Gravley <admiralawkbar@github.com>
2021-06-01 11:09:44 -05:00