Update dev tools (major) #253
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: Build | |
| "on": | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - "*" | |
| workflow_dispatch: {} | |
| jobs: | |
| plugin_test: | |
| name: asdf plugin test | |
| strategy: | |
| matrix: | |
| os: | |
| # renovate datasource: github-runners, depName: ubuntu | |
| - ubuntu-24.04 | |
| # renovate datasource: github-runners, depName: macos | |
| - macos-14 | |
| runs-on: ${{matrix.os}} | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: nodejs | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
| with: | |
| node-version-file: .nvmrc | |
| - name: plugin-test | |
| uses: asdf-vm/actions/plugin-test@1902764435ca0dd2f3388eea723a4f92a4eb8302 # v4.0.0 | |
| continue-on-error: true | |
| with: | |
| command: markdownlint-cli2 _version | |
| # same as above, but works around an asdf-vm/actions/plugin-test issue where the ref is Nok | |
| - name: plugin-test | |
| uses: asdf-vm/actions/plugin-test@1902764435ca0dd2f3388eea723a4f92a4eb8302 # v4.0.0 | |
| if: failure() | |
| with: | |
| command: awslocal --version | |
| # renovate datasource: pypi, depName: awscli-local | |
| version: 0.22.0 | |
| giturl: ${{ github.event.pull_request.head.repo.full_name }} | |
| gitref: ${{ github.head_ref }} |