Skip to content

chore(deps): update module go:github.com/go-delve/delve/cmd/dlv to v1.26.3 #7092

chore(deps): update module go:github.com/go-delve/delve/cmd/dlv to v1.26.3

chore(deps): update module go:github.com/go-delve/delve/cmd/dlv to v1.26.3 #7092

Workflow file for this run

name: lint
on:
push:
branches:
- main
paths:
- "**.yaml"
- "**.yml"
- "**.toml"
- "**.json"
pull_request:
branches:
- main
paths:
- "**.yaml"
- "**.yml"
- "**.toml"
- "**.json"
permissions: {}
concurrency:
group: lint-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
if: ${{ ! endsWith(github.actor, '[bot]')}}
runs-on: ubuntu-slim
permissions:
contents: read
pull-requests: read
timeout-minutes: 1
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@9426d40962ed5378910ee2e21d5f8c6fcbf2dd96 # v47.0.6
with:
files_yaml: |
json:
- "**/*.json"
yaml:
- "**/*.yaml"
- "**/*.yml"
toml:
- "**/*.toml"
- uses: jdx/mise-action@1648a7812b9aeae629881980618f079932869151 # v4.0.1
with:
install_args: "npm:prettier npm:@taplo/cli"
env:
MISE_FETCH_REMOTE_VERSIONS_TIMEOUT: 30s
- name: prettier (json)
if: steps.changed-files.outputs.json_any_changed == 'true'
env:
CHANGED_FILES: ${{ steps.changed-files.outputs.json_all_changed_files }}
run: npx prettier --check "$CHANGED_FILES"
- name: prettier (yaml)
if: always() && steps.changed-files.outputs.yaml_any_changed == 'true'
env:
CHANGED_FILES: ${{ steps.changed-files.outputs.yaml_all_changed_files }}
run: npx prettier --check "$CHANGED_FILES"
- name: taplo (toml)
if: always() && steps.changed-files.outputs.toml_any_changed == 'true'
env:
CHANGED_FILES: ${{ steps.changed-files.outputs.toml_all_changed_files }}
run: npx @taplo/cli format --check "$CHANGED_FILES"