chore(deps): update dependency aquaproj/aqua to v2.43.1 #126
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: autofix.ci | |
on: pull_request | |
permissions: {} | |
jobs: | |
autofix-status-check: | |
# This job is used for main branch's branch protection rule's status check. | |
# If all dependent jobs succeed or are skipped this job succeeds. | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
permissions: {} | |
if: failure() | |
steps: | |
- run: exit 1 | |
needs: | |
- fix | |
fix: | |
runs-on: ubuntu-24.04 | |
permissions: {} | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
persist-credentials: false | |
- run: echo "AQUA_GLOBAL_CONFIG=${AQUA_GLOBAL_CONFIG:-}:${PWD}/aqua-all.yaml" >> "$GITHUB_ENV" | |
- uses: aquaproj/aqua-installer@e2d0136abcf70b7a2f6f505720640750557c4b33 # v3.1.1 | |
with: | |
aqua_version: v2.43.1 | |
aqua_opts: -l -a | |
policy_allow: "true" | |
- name: Fix newlines | |
run: git ls-files | xargs nllint -f -s | |
- name: Configure NPM_CONFIG_PREFIX | |
run: echo NPM_CONFIG_PREFIX="$HOME/npm-global" >> "$GITHUB_ENV" | |
- run: echo "$NPM_CONFIG_PREFIX/bin" >> "$GITHUB_PATH" | |
- name: Install prettier | |
run: npm i -g prettier | |
- name: Format code by prettier | |
run: prettier -w . | |
- name: Fix registry.yaml | |
run: cmdx gr | |
- uses: autofix-ci/action@2891949f3779a1cafafae1523058501de3d4e944 # v1.3.1 |