Add initial_version
to launcher info table, update a log line
#4003
Workflow file for this run
This file contains 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: actionlint | |
# See https://github.com/rhysd/actionlint | |
on: | |
pull_request: | |
branches: | |
- main | |
- master | |
merge_group: | |
types: [checks_requested] | |
jobs: | |
actionlint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v3 | |
with: | |
go-version-file: './go.mod' | |
check-latest: true | |
- name: install actionlint | |
run: go install github.com/rhysd/actionlint/cmd/actionlint@latest | |
- name: actionlint | |
run: | | |
echo "::add-matcher::.github/actionlint-matcher.json" | |
actionlint -color |