Skip to content

build: bump golang version to 1.22 #30

build: bump golang version to 1.22

build: bump golang version to 1.22 #30

Workflow file for this run

name: Container
on:
pull_request:
paths:
- Dockerfile
permissions:
pull-requests: read
contents: read
jobs:
hadolint:
name: Dockerfile Linting
runs-on: ubuntu-22.04
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Run hadolint
id: hadolint
uses: hadolint/[email protected]
- name: Update Pull Request
uses: actions/github-script@v7
if: ${{ github.event_name == 'pull_request' && !success() }}
with:
script: |
const output = `
#### Hadolint: \`${{ steps.hadolint.outcome }}\`
\`\`\`
${process.env.HADOLINT_RESULTS}
\`\`\`
`;
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: output
})