Skip to content
This repository has been archived by the owner on Feb 7, 2024. It is now read-only.

feat(container): update image docker.io/library/golang ( 1.21 → 1.22 ) #108

feat(container): update image docker.io/library/golang ( 1.21 → 1.22 )

feat(container): update image docker.io/library/golang ( 1.21 → 1.22 ) #108

Workflow file for this run

---
name: Lint
on: # yamllint disable-line rule:truthy
workflow_dispatch:
pull_request:
branches:
- main
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
build:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with:
fetch-depth: 0
- name: Generate Token
uses: tibdex/github-app-token@v2
id: generate-token
with:
app_id: ${{ secrets.BJWS_APP_ID }}
private_key: ${{ secrets.BJWS_APP_PRIVATE_KEY }}
- name: MegaLinter
uses: oxsecurity/megalinter@v7.8.0
env:
GITHUB_TOKEN: "${{ steps.generate-token.outputs.token }}"
PRINT_ALPACA: false
VALIDATE_ALL_CODEBASE: ${{ github.event_name == 'workflow_dispatch' }}
ENABLE_LINTERS: |-
${{
join(
fromJSON('
[
"ACTION_ACTIONLINT",
"COPYPASTE_JSCPD",
"COPYPASTE_JSCPD",
"GO_REVIVE",
"REPOSITORY_GIT_DIFF",
"REPOSITORY_SECRETLINT",
]
'),
','
)
}}