actions icon indicating copy to clipboard operation
actions copied to clipboard

[asdf-vm/actions/[email protected]]: `FAILED: missing callback download` during `plugin test`

Open vic1707 opened this issue 1 month ago • 0 comments

Image

Downgrading to asdf-vm/actions/[email protected] fixes the issue.

jobs:
    install:
        name: Test install latest
        strategy:
            fail-fast: false
            matrix:
                include:
                    - os: ubuntu-latest
                    - os: ubuntu-latest
                      container: alpine:latest
                    - os: macos-latest
        runs-on: ${{ matrix.os }}
        container: ${{ matrix.container }}
        steps:
            - uses: actions/[email protected]
            - if: ${{ matrix.container == 'alpine:latest' }}
              run: apk add --no-cache bash
            - if: ${{ matrix.os == 'ubuntu-latest' && !matrix.container }}
              run: sudo apt install --update -y git curl
            - name: extract tool-name
              id: tool-name
              run: |
                  source lib/utils
                  echo "tool_name=$TOOL_NAME" >> $GITHUB_OUTPUT
            - name: Test install
              uses: asdf-vm/actions/[email protected]
              with:
                  command: ${{ steps.tool-name.outputs.tool_name }} --version

vic1707 avatar Nov 23 '25 18:11 vic1707