You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Action fails to run on arm64 because it tries to run amd64 code:
To Reproduce
Steps to reproduce the behavior:
Run the following workflow on a arm64 machine:
name: Check Markdown linkson:
workflow_call:
inputs:
runsOn:
description: Define on which runner this workflow should rundefault: "ubuntu-latest"required: falsetype: stringworkingDirectory:
description: The directory to run this workflow indefault: ""required: falsetype: string#defaults:# run:# working-directory: ${{ inputs.workingDirectory }}jobs:
markdown-link-check:
name: Check Markdown linksruns-on: ${{ inputs.runsOn }}steps:
- name: Checkoutuses: actions/checkout@v4with:
sparse-checkout-cone-mode: falsesparse-checkout: | !${{ inputs.workingDirectory }}/* ${{ inputs.workingDirectory }}/**/*.md
- name: Check Markdown linksuses: umbrelladocs/action-linkspector@v1with:
reporter: github-pr-reviewfail_on_error: true# config_file: etc/ci/markdown-link-checker.json
Expected behavior
Action successfully runs on arm64, this is from another project about 6 to 7 hours ago:
Additional context
Running this actions on GitHub shared runners for my public repos, and on Raspberry Pi's on my home cluster for private repositories
The text was updated successfully, but these errors were encountered:
Describe the bug
Action fails to run on
arm64
because it tries to runamd64
code:To Reproduce
Steps to reproduce the behavior:
Run the following workflow on a
arm64
machine:Expected behavior
Action successfully runs on
arm64
, this is from another project about 6 to 7 hours ago:Additional context
Running this actions on GitHub shared runners for my public repos, and on Raspberry Pi's on my home cluster for private repositories
The text was updated successfully, but these errors were encountered: