chore(deps): update golang:1.24 docker digest to 764d7e0 #32102
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: shellcheck | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
permissions: {} | |
jobs: | |
shellcheck: | |
name: shellcheck | |
runs-on: ubuntu-24.04 | |
env: | |
VERSION: v0.10.0 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: shellcheck workflow-scripts | |
uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38 # 2.0.0 | |
env: | |
SHELLCHECK_OPTS: -x -e SC2059 -e SC2086 | |
with: | |
scandir: ".github/workflows/scripts" | |
severity: warning | |
version: ${{ env.VERSION }} | |
- name: shellcheck buildscripts | |
uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38 # 2.0.0 | |
env: | |
SHELLCHECK_OPTS: -x -e SC2059 -e SC2086 | |
with: | |
scandir: "internal/buildscripts" | |
severity: warning | |
version: ${{ env.VERSION }} |