Bump yoheimuta/protolint from v0.28.0 to v0.28.1 (#1169)

* Bump yoheimuta/protolint from v0.28.0 to v0.28.1

Bumps yoheimuta/protolint from v0.28.0 to v0.28.1.

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

* maybe

* maybe

* use better docker

* use better docker

* use better docker

* use better docker

* use better docker

* use better docker

* fixed it

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Admiral Awkbar <admiralawkbar@github.com>
This commit is contained in:
dependabot[bot] 2021-02-03 09:08:08 -06:00 committed by GitHub
parent f7482feec2
commit 1df69f651f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 18 additions and 13 deletions

View file

@ -2,6 +2,6 @@ TAP version 13
1..2 1..2
not ok 1 - arm_bad_1.json not ok 1 - arm_bad_1.json
--- ---
message: \nValidating arm\arm_bad_1.json\n deploymentTemplate\n [+] adminUsername Should Not Be A Literal\n [+] apiVersions Should Be Recent\n [+] artifacts parameter\n [+] DependsOn Best Practices\n [+] Deployment Resources Must Not Be Debug\n [+] DeploymentTemplate Must Not Contain Hardcoded Uri\n [+] DeploymentTemplate Schema Is Correct\n [+] Dynamic Variable References Should Not Use Concat\n [+] IDs Should Be Derived From ResourceIDs\n [+] Location Should Not Be Hardcoded\n [+] ManagedIdentityExtension must not be used\n [+] Min And Max Value Are Numbers\n [+] Outputs Must Not Contain Secrets\n [+] Parameters Must Be Referenced\n [+] Parameters Property Must Exist\n [+] providers apiVersions Is Not Permitted\n [+] ResourceIds should not contain\n [+] Resources Should Have Location\n [+] Secure String Parameters Cannot Have Default\n [-] Template Should Not Contain Blanks\n Empty property [] found on line 28 Index 1331\n Empty property "" found on line 3 Index 121\n\n [-] Variables Must Be Referenced\n Unreferenced variable Network.Location\n Unreferenced variable Test.Blank.Variable\n\n [+] Virtual Machines Should Not Be Preview\n [+] VM Images Should Use Latest Version\n [+] VM Size Should Be A Parameter\n \n message: \nValidating arm\arm_bad_1.json\n deploymentTemplate\n [+] adminUsername Should Not Be A Literal\n [+] apiVersions Should Be Recent\n [+] artifacts parameter\n [+] CommandToExecute Must Use ProtectedSettings For Secrets\n [+] DependsOn Best Practices\n [+] Deployment Resources Must Not Be Debug\n [+] DeploymentTemplate Must Not Contain Hardcoded Uri\n [+] DeploymentTemplate Schema Is Correct\n [+] Dynamic Variable References Should Not Use Concat\n [+] IDs Should Be Derived From ResourceIDs\n [+] Location Should Not Be Hardcoded\n [+] ManagedIdentityExtension must not be used\n [+] Min And Max Value Are Numbers\n [+] Outputs Must Not Contain Secrets\n [+] Parameters Must Be Referenced\n [+] Parameters Property Must Exist\n [+] providers apiVersions Is Not Permitted\n [+] ResourceIds should not contain\n [+] Resources Should Have Location\n [+] Secure String Parameters Cannot Have Default\n [-] Template Should Not Contain Blanks\n Empty property [] found on line 28 Index 1331\n Empty property "" found on line 3 Index 121\n\n [-] Variables Must Be Referenced\n Unreferenced variable Network.Location\n Unreferenced variable Test.Blank.Variable\n\n [+] Virtual Machines Should Not Be Preview\n [+] VM Images Should Use Latest Version\n [+] VM Size Should Be A Parameter\n \n
... ...
ok 2 - arm_good_1.json ok 2 - arm_good_1.json

View file

@ -52,17 +52,22 @@ jobs:
################################### ###################################
# Build image locally for testing # # Build image locally for testing #
################################### ###################################
- name: Build image ###########################################
uses: whoan/docker-build-with-cache-action@v5 # Build and Push containers to registries #
with: ###########################################
username: ${{ secrets.GCR_USERNAME }} - name: Build Docker image
password: ${{ secrets.GCR_TOKEN }} run: |
registry: ghcr.io docker build \
image_name: github/super-linter --build-arg BUILD_DATE=${{ env.BUILD_DATE }} \
image_tag: ${{ github.sha }} --build-arg BUILD_REVISION=${{ github.sha }} \
dockerfile: Dockerfile --build-arg BUILD_VERSION=${{ github.sha }} \
build_extra_args: "--build-arg=BUILD_DATE=${{ env.BUILD_DATE }} --build-arg=BUILD_REVISION=${{ github.sha }} --build-arg=BUILD_VERSION=${{ github.sha }}" -t ghcr.io/github/super-linter:${{ github.sha }} -f Dockerfile .
push_image_and_stages: false
##############
# Print info #
##############
- name: Get Docker info
run: docker images
######################################## ########################################
# Validates the metadata docker labels # # Validates the metadata docker labels #

View file

@ -10,7 +10,7 @@
FROM cljkondo/clj-kondo:2021.01.20-alpine as clj-kondo FROM cljkondo/clj-kondo:2021.01.20-alpine as clj-kondo
FROM dotenvlinter/dotenv-linter:3.0.0 as dotenv-linter FROM dotenvlinter/dotenv-linter:3.0.0 as dotenv-linter
FROM mstruebing/editorconfig-checker:2.3.1 as editorconfig-checker FROM mstruebing/editorconfig-checker:2.3.1 as editorconfig-checker
FROM yoheimuta/protolint:v0.28.0 as protolint FROM yoheimuta/protolint:v0.28.1 as protolint
FROM golangci/golangci-lint:v1.36.0 as golangci-lint FROM golangci/golangci-lint:v1.36.0 as golangci-lint
FROM koalaman/shellcheck:v0.7.1 as shellcheck FROM koalaman/shellcheck:v0.7.1 as shellcheck
FROM wata727/tflint:0.23.1 as tflint FROM wata727/tflint:0.23.1 as tflint