[GH-ISSUE #1812] Act stopped working when I moved to a Apple Silicon Mac #885

Closed
opened 2026-03-01 21:47:09 +03:00 by kerem · 6 comments
Owner

Originally created by @LucaMarconato on GitHub (May 18, 2023).
Original GitHub issue: https://github.com/nektos/act/issues/1812

Bug report info

act version:            0.2.45
GOOS:                   darwin
GOARCH:                 amd64
NumCPU:                 10
Docker host:            DOCKER_HOST environment variable is not set
Sockets found:
	/var/run/docker.sock
	$HOME/.docker/run/docker.sock
Config files:           
	/Users/macbook/.actrc:
		-P ubuntu-latest=catthehacker/ubuntu:act-latest
		-P ubuntu-22.04=catthehacker/ubuntu:act-22.04
		-P ubuntu-20.04=catthehacker/ubuntu:act-20.04
		-P ubuntu-18.04=catthehacker/ubuntu:act-18.04
Build info:
	Go version:            go1.20.3
	Module path:           command-line-arguments
	Main version:          
	Main path:             
	Main checksum:         
	Build settings:
		-buildmode:           exe
		-compiler:            gc
		-ldflags:             -X main.version=0.2.45
		CGO_ENABLED:          1
		CGO_CFLAGS:           
		CGO_CPPFLAGS:         
		CGO_CXXFLAGS:         
		CGO_LDFLAGS:          
		GOARCH:               amd64
		GOOS:                 darwin
		GOAMD64:              v1
Docker Engine:
	Engine version:        20.10.22
	Engine runtime:        runc
	Cgroup version:        2
	Cgroup driver:         cgroupfs
	Storage driver:        overlay2
	Registry URI:          https://index.docker.io/v1/
	OS:                    Docker Desktop
	OS type:               linux
	OS version:            
	OS arch:               aarch64
	OS kernel:             5.15.49-linuxkit
	OS CPU:                4
	OS memory:             7951 MB
	Security options:
		name=seccomp,profile=default
		name=cgroupns

Command used with act

act

Describe issue

Act was working on my old intel Mac. I moved to a new Apple Silicon Mac (using time machine), and it stopped working. I tried upgrading act (from brew), removing ~/.actrc, removing all the docker volumes, images and containers. Still the same error:

[Test/test-1        ]   ❗  ::error::Version 3.9 with arch arm64 not found%0AThe list of all available versions can be found here: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
[Test/test-1        ]   ❌  Failure - Main Set up Python 3.9

https://github.com/scverse/spatialdata/

Workflow content

name: Test

on:
    push:
        branches: [main]
        tags:
            - "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
    pull_request:
        branches: [main]

jobs:
    test:
        runs-on: ${{ matrix.os }}
        defaults:
            run:
                shell: bash -e {0} # -e to fail on error

        strategy:
            fail-fast: false
            matrix:
                python: ["3.9", "3.10"]
                os: [ubuntu-latest]

        env:
            OS: ${{ matrix.os }}
            PYTHON: ${{ matrix.python }}

        steps:
            - uses: actions/checkout@v2
            - name: Set up Python ${{ matrix.python }}
              uses: actions/setup-python@v2
              with:
                  python-version: ${{ matrix.python }}

            - name: Get pip cache dir
              id: pip-cache-dir
              run: |
                  echo "::set-output name=dir::$(pip cache dir)"
            - name: Restore pip cache
              uses: actions/cache@v2
              with:
                  path: ${{ steps.pip-cache-dir.outputs.dir }}
                  key: pip-${{ runner.os }}-${{ env.pythonLocation }}-${{ hashFiles('**/pyproject.toml') }}
                  restore-keys: |
                      pip-${{ runner.os }}-${{ env.pythonLocation }}-
            - name: Install test dependencies
              run: |
                  python -m pip install --upgrade pip wheel
                  pip install pytest-cov
            - name: Install dependencies
              run: |
                  pip install -e ".[dev,test,extra]"
            - name: Test
              env:
                  MPLBACKEND: agg
                  PLATFORM: ${{ matrix.os }}
                  DISPLAY: :42
              run: |
                  pytest -v --cov --color=yes --cov-report=xml
            - name: Upload coverage to Codecov
              uses: codecov/codecov-action@v3.1.1
              with:
                  name: coverage
                  verbose: true
    deploy:
        # this will run when you have tagged a commit, starting with "v*"
        # and requires that you have put your twine API key in your
        # github secrets (see readme for details)
        needs: [test]
        runs-on: ubuntu-latest
        if: contains(github.ref, 'tags')
        steps:
            - name: Checkout code
              uses: actions/checkout@v3

            - name: Set up Python 3.10
              uses: actions/setup-python@v4
              with:
                  python-version: "3.10"

            - name: Install hatch
              run: pip install hatch

            - name: Build project for distribution
              run: hatch build

            - name: Publish a Python distribution to PyPI
              uses: pypa/gh-action-pypi-publish@release/v1
              with:
                  password: ${{ secrets.PYPI_API_TOKEN }}

Relevant log output

DEBU[0000] Loading environment from /Users/macbook/embl/projects/basel/spatialdata/.env 
DEBU[0000] Loading action inputs from /Users/macbook/embl/projects/basel/spatialdata/.input 
DEBU[0000] Loading secrets from /Users/macbook/embl/projects/basel/spatialdata/.secrets 
DEBU[0000] Evaluated matrix inclusions: map[]           
DEBU[0000] Loading workflows from '/Users/macbook/embl/projects/basel/spatialdata/.github/workflows' 
DEBU[0000] Loading workflows recursively                
DEBU[0000] Found workflow 'build.yaml' in '/Users/macbook/embl/projects/basel/spatialdata/.github/workflows/build.yaml' 
DEBU[0000] Found workflow 'test_and_deploy.yaml' in '/Users/macbook/embl/projects/basel/spatialdata/.github/workflows/test_and_deploy.yaml' 
DEBU[0000] Reading workflow '/Users/macbook/embl/projects/basel/spatialdata/.github/workflows/build.yaml' 
DEBU[0000] Conditional GET for notices etag=fc8511bc-bc6c-4a01-8f78-dce22344cab8 
DEBU[0000] Reading workflow '/Users/macbook/embl/projects/basel/spatialdata/.github/workflows/test_and_deploy.yaml' 
DEBU[0000] Preparing plan with all jobs                 
DEBU[0000] Using default workflow event: push           
DEBU[0000] Planning jobs for event: push                
DEBU[0000] gc: 2023-05-18 18:59:49.35537 +0200 CEST m=+0.018317584  module=artifactcache
DEBU[0000] Final matrix after applying user inclusions '[map[]]' 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 
DEBU[0000] HEAD points to '6047d1b503c900c19394a0c2adbbb9c36bd2abe4' 
DEBU[0000] using github ref: refs/heads/tiles/fix       
DEBU[0000] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 
DEBU[0000] HEAD points to '6047d1b503c900c19394a0c2adbbb9c36bd2abe4' 
DEBU[0000] using github ref: refs/heads/tiles/fix       
DEBU[0000] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 
DEBU[0000] HEAD points to '6047d1b503c900c19394a0c2adbbb9c36bd2abe4' 
DEBU[0000] using github ref: refs/heads/tiles/fix       
DEBU[0000] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 
DEBU[0000] false                                        
DEBU[0000] Final matrix after applying user inclusions '[map[os:ubuntu-latest python:3.9] map[os:ubuntu-latest python:3.10]]' 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 
DEBU[0000] HEAD points to '6047d1b503c900c19394a0c2adbbb9c36bd2abe4' 
DEBU[0000] using github ref: refs/heads/tiles/fix       
DEBU[0000] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 
DEBU[0000] HEAD points to '6047d1b503c900c19394a0c2adbbb9c36bd2abe4' 
DEBU[0000] using github ref: refs/heads/tiles/fix       
DEBU[0000] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 
[Test/test-1        ] [DEBUG] evaluating expression 'success()'
[Check Build/package] [DEBUG] evaluating expression 'success()'
[Test/test-2        ] [DEBUG] evaluating expression 'success()'
[Check Build/package] [DEBUG] expression 'success()' evaluated to 'true'
[Test/test-2        ] [DEBUG] expression 'success()' evaluated to 'true'
[Test/test-1        ] [DEBUG] expression 'success()' evaluated to 'true'
[Check Build/package] 🚀  Start image=catthehacker/ubuntu:act-latest
[Test/test-1        ] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
[Test/test-1        ] [DEBUG] evaluating expression 'format('{0}', matrix.os)'
[Test/test-1        ] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)'
[Test/test-2        ] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
[Test/test-2        ] [DEBUG] evaluating expression 'format('{0}', matrix.os)'
[Test/test-1        ] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
[Test/test-1        ] [DEBUG] evaluating expression 'format('{0}', matrix.os)'
[Test/test-1        ] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)'
[Test/test-1        ] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
[Test/test-1        ] [DEBUG] evaluating expression 'format('{0}', matrix.os)'
[Test/test-1        ] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)'
[Test/test-1        ] 🚀  Start image=catthehacker/ubuntu:act-latest
[Test/test-2        ] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)'
[Test/test-2        ] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
[Test/test-2        ] [DEBUG] evaluating expression 'format('{0}', matrix.os)'
[Test/test-2        ] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)'
[Test/test-2        ] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)'
[Test/test-2        ] [DEBUG] evaluating expression 'format('{0}', matrix.os)'
[Test/test-2        ] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)'
[Test/test-2        ] 🚀  Start image=catthehacker/ubuntu:act-latest
[Test/test-2        ]   🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
[Test/test-2        ] [DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
[Check Build/package]   🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
[Check Build/package] [DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
[Test/test-1        ]   🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
[Test/test-1        ] [DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
[Test/test-1        ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
[Check Build/package] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
[Test/test-2        ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
DEBU[0001] Saving notices etag=fc8511bc-bc6c-4a01-8f78-dce22344cab8 
DEBU[0001] No new notices                               
[Test/test-2        ] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest
[Test/test-1        ] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest
[Test/test-2        ] [DEBUG] Digest: sha256:9037eaa16260abfacf34b77f4e205a998758572a1374102d428dbc0e0606925c :: 
[Test/test-2        ] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
[Test/test-1        ] [DEBUG] Digest: sha256:9037eaa16260abfacf34b77f4e205a998758572a1374102d428dbc0e0606925c :: 
[Test/test-1        ] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
[Check Build/package] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest
[Check Build/package] [DEBUG] Digest: sha256:9037eaa16260abfacf34b77f4e205a998758572a1374102d428dbc0e0606925c :: 
[Check Build/package] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
[Test/test-2        ]   🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[]
[Test/test-1        ]   🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[]

... TRIMMING NOT RELEVANT THINGS BECAUSE THE OUTPUT IS TOO LONG ...

[Check Build/package] ⭐ Run Main Set up Python 3.10
[Check Build/package] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0
[Check Build/package] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0
[Check Build/package] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0
[Check Build/package] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[Check Build/package] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0
[Check Build/package] [DEBUG] Extracting content to '/var/run/act'
[Check Build/package] [DEBUG] Loading revision from git directory
[Check Build/package] [DEBUG] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4
[Check Build/package] [DEBUG] HEAD points to '6047d1b503c900c19394a0c2adbbb9c36bd2abe4'
[Check Build/package] [DEBUG] using github ref: refs/heads/tiles/fix
[Check Build/package] [DEBUG] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4
[Check Build/package] [DEBUG] About to run action &{Setup Python GitHub Set up a specific version of Python and add the command-line tools to the PATH. map[architecture:{The target architecture (x86, x64) of the Python interpreter. false } cache:{Used to specify a package manager for caching in the default directory. Supported values: pip, pipenv. false } cache-dependency-path:{Used to specify the path to dependency files. Supports wildcards or a list of file names for caching multiple dependencies. false } python-version:{Version range or exact version of a Python version to use, using SemVer's version range syntax. false 3.x} token:{Used to pull python distributions from actions/python-versions. Since there's a default, this is typically not supplied by the user. false ${{ github.token }}}] map[python-version:{The installed python version. Useful when given a version range as input. }] {node12 map[] dist/setup/index.js  always() dist/cache-save/index.js success()   [] []} {yellow code}}
[Check Build/package] [DEBUG] Loading revision from git directory
[Check Build/package] [DEBUG] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4
[Check Build/package] [DEBUG] HEAD points to '6047d1b503c900c19394a0c2adbbb9c36bd2abe4'
[Check Build/package] [DEBUG] using github ref: refs/heads/tiles/fix
[Check Build/package] [DEBUG] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4
[Check Build/package] [DEBUG] Loading revision from git directory
[Check Build/package] [DEBUG] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4
[Check Build/package] [DEBUG] HEAD points to '6047d1b503c900c19394a0c2adbbb9c36bd2abe4'
[Check Build/package] [DEBUG] using github ref: refs/heads/tiles/fix
[Check Build/package] [DEBUG] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4
[Check Build/package] [DEBUG] expression '${{ github.token }}' rewritten to 'format('{0}', github.token)'
[Check Build/package] [DEBUG] evaluating expression 'format('{0}', github.token)'
[Check Build/package] [DEBUG] expression 'format('{0}', github.token)' evaluated to '%!t(string=)'
[Check Build/package] [DEBUG] type=remote-action actionDir=/Users/macbook/.cache/act/actions-setup-python@v2 actionPath= workdir=/Users/macbook/embl/projects/basel/spatialdata actionCacheDir=/Users/macbook/.cache/act actionName=actions-setup-python@v2 containerActionDir=/var/run/act/actions/actions-setup-python@v2
[Check Build/package] [DEBUG] Removing /Users/macbook/.cache/act/actions-setup-python@v2/.gitignore before docker cp
[Check Build/package] [DEBUG] /var/run/act/actions/actions-setup-python@v2
[Check Build/package]   🐳  docker cp src=/Users/macbook/.cache/act/actions-setup-python@v2/ dst=/var/run/act/actions/actions-setup-python@v2/
[Check Build/package] [DEBUG] Writing tarball /tmp/act3692998464 from /Users/macbook/.cache/act/actions-setup-python@v2/
[Check Build/package] [DEBUG] Stripping prefix:/Users/macbook/.cache/act/actions-setup-python@v2/ src:/Users/macbook/.cache/act/actions-setup-python@v2/
[Check Build/package] [DEBUG] Extracting content from '/tmp/act3692998464' to '/var/run/act/actions/actions-setup-python@v2/'
[Check Build/package] [DEBUG] executing remote job container: [node /var/run/act/actions/actions-setup-python@v2/dist/setup/index.js]
[Check Build/package]   🐳  docker exec cmd=[node /var/run/act/actions/actions-setup-python@v2/dist/setup/index.js] user= workdir=
[Check Build/package] [DEBUG] Exec command '[node /var/run/act/actions/actions-setup-python@v2/dist/setup/index.js]'
[Check Build/package] [DEBUG] Working directory '/Users/macbook/embl/projects/basel/spatialdata'
[Check Build/package]   💬  ::debug::Semantic version spec of 3.10 is 3.10
[Check Build/package]   💬  ::debug::isExplicit: 
[Check Build/package]   💬  ::debug::explicit? false
[Check Build/package]   💬  ::debug::evaluating 0 versions
[Check Build/package]   💬  ::debug::match not found
| Version 3.10 was not found in the local cache
[Check Build/package]   💬  ::debug::check 3.12.0-alpha.7 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.12.0-alpha.6 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.12.0-alpha.5 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.12.0-alpha.4 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.12.0-alpha.3 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.12.0-alpha.2 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.12.0-alpha.1 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.11.3 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.11.2 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.11.1 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.11.0 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.11.0-rc.2 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.11.0-rc.1 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.11.0-beta.5 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.11.0-beta.4 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.11.0-beta.3 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.11.0-beta.2 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.11.0-beta.1 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.11.0-alpha.7 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.11.0-alpha.6 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.11.0-alpha.5 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.11.0-alpha.4 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.11.0-alpha.3 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.11.0-alpha.2 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.11.0-alpha.1 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.10.11 satisfies 3.10
[Check Build/package]   💬  ::debug::x64===arm64 && darwin===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && win32===linux
[Check Build/package]   💬  ::debug::x86===arm64 && win32===linux
[Check Build/package]   💬  ::debug::check 3.10.10 satisfies 3.10
[Check Build/package]   💬  ::debug::x64===arm64 && darwin===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && win32===linux
[Check Build/package]   💬  ::debug::x86===arm64 && win32===linux
[Check Build/package]   💬  ::debug::check 3.10.9 satisfies 3.10
[Check Build/package]   💬  ::debug::x64===arm64 && darwin===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && win32===linux
[Check Build/package]   💬  ::debug::x86===arm64 && win32===linux
[Check Build/package]   💬  ::debug::check 3.10.8 satisfies 3.10
[Check Build/package]   💬  ::debug::x64===arm64 && darwin===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && win32===linux
[Check Build/package]   💬  ::debug::x86===arm64 && win32===linux
[Check Build/package]   💬  ::debug::check 3.10.7 satisfies 3.10
[Check Build/package]   💬  ::debug::x64===arm64 && darwin===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && win32===linux
[Check Build/package]   💬  ::debug::x86===arm64 && win32===linux
[Check Build/package]   💬  ::debug::check 3.10.6 satisfies 3.10
[Check Build/package]   💬  ::debug::x64===arm64 && darwin===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && win32===linux
[Check Build/package]   💬  ::debug::x86===arm64 && win32===linux
[Check Build/package]   💬  ::debug::check 3.10.5 satisfies 3.10
[Check Build/package]   💬  ::debug::x64===arm64 && darwin===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && win32===linux
[Check Build/package]   💬  ::debug::x86===arm64 && win32===linux
[Check Build/package]   💬  ::debug::check 3.10.4 satisfies 3.10
[Check Build/package]   💬  ::debug::x64===arm64 && darwin===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && win32===linux
[Check Build/package]   💬  ::debug::x86===arm64 && win32===linux
[Check Build/package]   💬  ::debug::check 3.10.3 satisfies 3.10
[Check Build/package]   💬  ::debug::x64===arm64 && darwin===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && win32===linux
[Check Build/package]   💬  ::debug::x86===arm64 && win32===linux
[Check Build/package]   💬  ::debug::check 3.10.2 satisfies 3.10
[Check Build/package]   💬  ::debug::x64===arm64 && darwin===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && win32===linux
[Check Build/package]   💬  ::debug::x86===arm64 && win32===linux
[Check Build/package]   💬  ::debug::check 3.10.1 satisfies 3.10
[Check Build/package]   💬  ::debug::x64===arm64 && darwin===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && win32===linux
[Check Build/package]   💬  ::debug::x86===arm64 && win32===linux
[Check Build/package]   💬  ::debug::check 3.10.0 satisfies 3.10
[Check Build/package]   💬  ::debug::x64===arm64 && darwin===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && linux===linux
[Check Build/package]   💬  ::debug::x64===arm64 && win32===linux
[Check Build/package]   💬  ::debug::x86===arm64 && win32===linux
[Check Build/package]   💬  ::debug::check 3.10.0-rc.2 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.10.0-rc.1 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.10.0-beta.4 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.10.0-beta.3 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.10.0-beta.2 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.10.0-beta.1 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.10.0-alpha.7 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.10.0-alpha.6 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.10.0-alpha.5 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.10.0-alpha.4 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.10.0-alpha.3 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.10.0-alpha.2 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.10.0-alpha.1 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.9.16 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.9.15 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.9.14 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.9.13 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.9.12 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.9.11 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.9.10 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.9.9 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.9.8 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.9.7 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.9.6 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.9.5 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.9.4 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.9.3 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.9.2 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.9.2-rc.1 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.9.1 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.9.1-rc.1 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.9.0 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.9.0-rc.2 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.9.0-rc.1 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.9.0-beta.5 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.9.0-beta.4 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.8.16 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.8.15 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.8.14 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.8.13 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.8.12 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.8.11 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.8.10 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.8.9 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.8.8 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.8.7 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.8.6 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.8.5 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.8.4 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.8.3 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.8.2 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.8.1 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.8.0 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.7.16 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.7.15 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.7.14 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.7.13 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.7.12 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.7.11 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.7.10 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.7.9 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.7.8 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.7.7 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.7.6 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.7.5 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.7.4 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.7.3 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.7.2 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.7.1 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.6.15 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.6.14 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.6.13 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.6.12 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.6.11 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.6.10 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.6.9 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.6.8 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.6.7 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.5.10 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.5.9 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.5.4 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.4.10 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.4.4 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.3.7 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.3.5 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.2.5 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.1.4 satisfies 3.10
[Check Build/package]   💬  ::debug::check 3.0.1 satisfies 3.10
[Check Build/package]   💬  ::debug::check 2.7.18 satisfies 3.10
[Check Build/package]   💬  ::debug::check 2.7.17 satisfies 3.10
[Check Build/package]   ❗  ::error::Version 3.10 with arch arm64 not found%0AThe list of all available versions can be found here: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json
[Check Build/package]   ❌  Failure - Main Set up Python 3.10
[Check Build/package] exitcode '1': failure

... TRIMMING NOT RELEVANT THINGS BECAUSE THE OUTPUT IS TOO LONG ...

Error: Job 'package' failed

Additional information

No response

Originally created by @LucaMarconato on GitHub (May 18, 2023). Original GitHub issue: https://github.com/nektos/act/issues/1812 ### Bug report info ```plain text act version: 0.2.45 GOOS: darwin GOARCH: amd64 NumCPU: 10 Docker host: DOCKER_HOST environment variable is not set Sockets found: /var/run/docker.sock $HOME/.docker/run/docker.sock Config files: /Users/macbook/.actrc: -P ubuntu-latest=catthehacker/ubuntu:act-latest -P ubuntu-22.04=catthehacker/ubuntu:act-22.04 -P ubuntu-20.04=catthehacker/ubuntu:act-20.04 -P ubuntu-18.04=catthehacker/ubuntu:act-18.04 Build info: Go version: go1.20.3 Module path: command-line-arguments Main version: Main path: Main checksum: Build settings: -buildmode: exe -compiler: gc -ldflags: -X main.version=0.2.45 CGO_ENABLED: 1 CGO_CFLAGS: CGO_CPPFLAGS: CGO_CXXFLAGS: CGO_LDFLAGS: GOARCH: amd64 GOOS: darwin GOAMD64: v1 Docker Engine: Engine version: 20.10.22 Engine runtime: runc Cgroup version: 2 Cgroup driver: cgroupfs Storage driver: overlay2 Registry URI: https://index.docker.io/v1/ OS: Docker Desktop OS type: linux OS version: OS arch: aarch64 OS kernel: 5.15.49-linuxkit OS CPU: 4 OS memory: 7951 MB Security options: name=seccomp,profile=default name=cgroupns ``` ### Command used with act ```sh act ``` ### Describe issue Act was working on my old intel Mac. I moved to a new Apple Silicon Mac (using time machine), and it stopped working. I tried upgrading act (from brew), removing `~/.actrc`, removing all the docker volumes, images and containers. Still the same error: ``` [Test/test-1 ] ❗ ::error::Version 3.9 with arch arm64 not found%0AThe list of all available versions can be found here: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json [Test/test-1 ] ❌ Failure - Main Set up Python 3.9 ``` ### Link to GitHub repository https://github.com/scverse/spatialdata/ ### Workflow content ```yml name: Test on: push: branches: [main] tags: - "v*" # Push events to matching v*, i.e. v1.0, v20.15.10 pull_request: branches: [main] jobs: test: runs-on: ${{ matrix.os }} defaults: run: shell: bash -e {0} # -e to fail on error strategy: fail-fast: false matrix: python: ["3.9", "3.10"] os: [ubuntu-latest] env: OS: ${{ matrix.os }} PYTHON: ${{ matrix.python }} steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python }} - name: Get pip cache dir id: pip-cache-dir run: | echo "::set-output name=dir::$(pip cache dir)" - name: Restore pip cache uses: actions/cache@v2 with: path: ${{ steps.pip-cache-dir.outputs.dir }} key: pip-${{ runner.os }}-${{ env.pythonLocation }}-${{ hashFiles('**/pyproject.toml') }} restore-keys: | pip-${{ runner.os }}-${{ env.pythonLocation }}- - name: Install test dependencies run: | python -m pip install --upgrade pip wheel pip install pytest-cov - name: Install dependencies run: | pip install -e ".[dev,test,extra]" - name: Test env: MPLBACKEND: agg PLATFORM: ${{ matrix.os }} DISPLAY: :42 run: | pytest -v --cov --color=yes --cov-report=xml - name: Upload coverage to Codecov uses: codecov/codecov-action@v3.1.1 with: name: coverage verbose: true deploy: # this will run when you have tagged a commit, starting with "v*" # and requires that you have put your twine API key in your # github secrets (see readme for details) needs: [test] runs-on: ubuntu-latest if: contains(github.ref, 'tags') steps: - name: Checkout code uses: actions/checkout@v3 - name: Set up Python 3.10 uses: actions/setup-python@v4 with: python-version: "3.10" - name: Install hatch run: pip install hatch - name: Build project for distribution run: hatch build - name: Publish a Python distribution to PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: password: ${{ secrets.PYPI_API_TOKEN }} ``` ### Relevant log output ```sh DEBU[0000] Loading environment from /Users/macbook/embl/projects/basel/spatialdata/.env DEBU[0000] Loading action inputs from /Users/macbook/embl/projects/basel/spatialdata/.input DEBU[0000] Loading secrets from /Users/macbook/embl/projects/basel/spatialdata/.secrets DEBU[0000] Evaluated matrix inclusions: map[] DEBU[0000] Loading workflows from '/Users/macbook/embl/projects/basel/spatialdata/.github/workflows' DEBU[0000] Loading workflows recursively DEBU[0000] Found workflow 'build.yaml' in '/Users/macbook/embl/projects/basel/spatialdata/.github/workflows/build.yaml' DEBU[0000] Found workflow 'test_and_deploy.yaml' in '/Users/macbook/embl/projects/basel/spatialdata/.github/workflows/test_and_deploy.yaml' DEBU[0000] Reading workflow '/Users/macbook/embl/projects/basel/spatialdata/.github/workflows/build.yaml' DEBU[0000] Conditional GET for notices etag=fc8511bc-bc6c-4a01-8f78-dce22344cab8 DEBU[0000] Reading workflow '/Users/macbook/embl/projects/basel/spatialdata/.github/workflows/test_and_deploy.yaml' DEBU[0000] Preparing plan with all jobs DEBU[0000] Using default workflow event: push DEBU[0000] Planning jobs for event: push DEBU[0000] gc: 2023-05-18 18:59:49.35537 +0200 CEST m=+0.018317584 module=artifactcache DEBU[0000] Final matrix after applying user inclusions '[map[]]' DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 DEBU[0000] HEAD points to '6047d1b503c900c19394a0c2adbbb9c36bd2abe4' DEBU[0000] using github ref: refs/heads/tiles/fix DEBU[0000] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 DEBU[0000] HEAD points to '6047d1b503c900c19394a0c2adbbb9c36bd2abe4' DEBU[0000] using github ref: refs/heads/tiles/fix DEBU[0000] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 DEBU[0000] HEAD points to '6047d1b503c900c19394a0c2adbbb9c36bd2abe4' DEBU[0000] using github ref: refs/heads/tiles/fix DEBU[0000] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 DEBU[0000] false DEBU[0000] Final matrix after applying user inclusions '[map[os:ubuntu-latest python:3.9] map[os:ubuntu-latest python:3.10]]' DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 DEBU[0000] HEAD points to '6047d1b503c900c19394a0c2adbbb9c36bd2abe4' DEBU[0000] using github ref: refs/heads/tiles/fix DEBU[0000] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 DEBU[0000] HEAD points to '6047d1b503c900c19394a0c2adbbb9c36bd2abe4' DEBU[0000] using github ref: refs/heads/tiles/fix DEBU[0000] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 [Test/test-1 ] [DEBUG] evaluating expression 'success()' [Check Build/package] [DEBUG] evaluating expression 'success()' [Test/test-2 ] [DEBUG] evaluating expression 'success()' [Check Build/package] [DEBUG] expression 'success()' evaluated to 'true' [Test/test-2 ] [DEBUG] expression 'success()' evaluated to 'true' [Test/test-1 ] [DEBUG] expression 'success()' evaluated to 'true' [Check Build/package] 🚀 Start image=catthehacker/ubuntu:act-latest [Test/test-1 ] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)' [Test/test-1 ] [DEBUG] evaluating expression 'format('{0}', matrix.os)' [Test/test-1 ] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)' [Test/test-2 ] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)' [Test/test-2 ] [DEBUG] evaluating expression 'format('{0}', matrix.os)' [Test/test-1 ] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)' [Test/test-1 ] [DEBUG] evaluating expression 'format('{0}', matrix.os)' [Test/test-1 ] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)' [Test/test-1 ] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)' [Test/test-1 ] [DEBUG] evaluating expression 'format('{0}', matrix.os)' [Test/test-1 ] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)' [Test/test-1 ] 🚀 Start image=catthehacker/ubuntu:act-latest [Test/test-2 ] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)' [Test/test-2 ] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)' [Test/test-2 ] [DEBUG] evaluating expression 'format('{0}', matrix.os)' [Test/test-2 ] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)' [Test/test-2 ] [DEBUG] expression '${{ matrix.os }}' rewritten to 'format('{0}', matrix.os)' [Test/test-2 ] [DEBUG] evaluating expression 'format('{0}', matrix.os)' [Test/test-2 ] [DEBUG] expression 'format('{0}', matrix.os)' evaluated to '%!t(string=ubuntu-latest)' [Test/test-2 ] 🚀 Start image=catthehacker/ubuntu:act-latest [Test/test-2 ] 🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true [Test/test-2 ] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest [Check Build/package] 🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true [Check Build/package] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest [Test/test-1 ] 🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true [Test/test-1 ] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest [Test/test-1 ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' () [Check Build/package] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' () [Test/test-2 ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' () DEBU[0001] Saving notices etag=fc8511bc-bc6c-4a01-8f78-dce22344cab8 DEBU[0001] No new notices [Test/test-2 ] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest [Test/test-1 ] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest [Test/test-2 ] [DEBUG] Digest: sha256:9037eaa16260abfacf34b77f4e205a998758572a1374102d428dbc0e0606925c :: [Test/test-2 ] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: [Test/test-1 ] [DEBUG] Digest: sha256:9037eaa16260abfacf34b77f4e205a998758572a1374102d428dbc0e0606925c :: [Test/test-1 ] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: [Check Build/package] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest [Check Build/package] [DEBUG] Digest: sha256:9037eaa16260abfacf34b77f4e205a998758572a1374102d428dbc0e0606925c :: [Check Build/package] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: [Test/test-2 ] 🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] [Test/test-1 ] 🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] ... TRIMMING NOT RELEVANT THINGS BECAUSE THE OUTPUT IS TOO LONG ... [Check Build/package] ⭐ Run Main Set up Python 3.10 [Check Build/package] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0 [Check Build/package] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0 [Check Build/package] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0 [Check Build/package] [DEBUG] Writing entry to tarball workflow/envs.txt len:0 [Check Build/package] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0 [Check Build/package] [DEBUG] Extracting content to '/var/run/act' [Check Build/package] [DEBUG] Loading revision from git directory [Check Build/package] [DEBUG] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 [Check Build/package] [DEBUG] HEAD points to '6047d1b503c900c19394a0c2adbbb9c36bd2abe4' [Check Build/package] [DEBUG] using github ref: refs/heads/tiles/fix [Check Build/package] [DEBUG] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 [Check Build/package] [DEBUG] About to run action &{Setup Python GitHub Set up a specific version of Python and add the command-line tools to the PATH. map[architecture:{The target architecture (x86, x64) of the Python interpreter. false } cache:{Used to specify a package manager for caching in the default directory. Supported values: pip, pipenv. false } cache-dependency-path:{Used to specify the path to dependency files. Supports wildcards or a list of file names for caching multiple dependencies. false } python-version:{Version range or exact version of a Python version to use, using SemVer's version range syntax. false 3.x} token:{Used to pull python distributions from actions/python-versions. Since there's a default, this is typically not supplied by the user. false ${{ github.token }}}] map[python-version:{The installed python version. Useful when given a version range as input. }] {node12 map[] dist/setup/index.js always() dist/cache-save/index.js success() [] []} {yellow code}} [Check Build/package] [DEBUG] Loading revision from git directory [Check Build/package] [DEBUG] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 [Check Build/package] [DEBUG] HEAD points to '6047d1b503c900c19394a0c2adbbb9c36bd2abe4' [Check Build/package] [DEBUG] using github ref: refs/heads/tiles/fix [Check Build/package] [DEBUG] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 [Check Build/package] [DEBUG] Loading revision from git directory [Check Build/package] [DEBUG] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 [Check Build/package] [DEBUG] HEAD points to '6047d1b503c900c19394a0c2adbbb9c36bd2abe4' [Check Build/package] [DEBUG] using github ref: refs/heads/tiles/fix [Check Build/package] [DEBUG] Found revision: 6047d1b503c900c19394a0c2adbbb9c36bd2abe4 [Check Build/package] [DEBUG] expression '${{ github.token }}' rewritten to 'format('{0}', github.token)' [Check Build/package] [DEBUG] evaluating expression 'format('{0}', github.token)' [Check Build/package] [DEBUG] expression 'format('{0}', github.token)' evaluated to '%!t(string=)' [Check Build/package] [DEBUG] type=remote-action actionDir=/Users/macbook/.cache/act/actions-setup-python@v2 actionPath= workdir=/Users/macbook/embl/projects/basel/spatialdata actionCacheDir=/Users/macbook/.cache/act actionName=actions-setup-python@v2 containerActionDir=/var/run/act/actions/actions-setup-python@v2 [Check Build/package] [DEBUG] Removing /Users/macbook/.cache/act/actions-setup-python@v2/.gitignore before docker cp [Check Build/package] [DEBUG] /var/run/act/actions/actions-setup-python@v2 [Check Build/package] 🐳 docker cp src=/Users/macbook/.cache/act/actions-setup-python@v2/ dst=/var/run/act/actions/actions-setup-python@v2/ [Check Build/package] [DEBUG] Writing tarball /tmp/act3692998464 from /Users/macbook/.cache/act/actions-setup-python@v2/ [Check Build/package] [DEBUG] Stripping prefix:/Users/macbook/.cache/act/actions-setup-python@v2/ src:/Users/macbook/.cache/act/actions-setup-python@v2/ [Check Build/package] [DEBUG] Extracting content from '/tmp/act3692998464' to '/var/run/act/actions/actions-setup-python@v2/' [Check Build/package] [DEBUG] executing remote job container: [node /var/run/act/actions/actions-setup-python@v2/dist/setup/index.js] [Check Build/package] 🐳 docker exec cmd=[node /var/run/act/actions/actions-setup-python@v2/dist/setup/index.js] user= workdir= [Check Build/package] [DEBUG] Exec command '[node /var/run/act/actions/actions-setup-python@v2/dist/setup/index.js]' [Check Build/package] [DEBUG] Working directory '/Users/macbook/embl/projects/basel/spatialdata' [Check Build/package] 💬 ::debug::Semantic version spec of 3.10 is 3.10 [Check Build/package] 💬 ::debug::isExplicit: [Check Build/package] 💬 ::debug::explicit? false [Check Build/package] 💬 ::debug::evaluating 0 versions [Check Build/package] 💬 ::debug::match not found | Version 3.10 was not found in the local cache [Check Build/package] 💬 ::debug::check 3.12.0-alpha.7 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.12.0-alpha.6 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.12.0-alpha.5 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.12.0-alpha.4 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.12.0-alpha.3 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.12.0-alpha.2 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.12.0-alpha.1 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.11.3 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.11.2 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.11.1 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.11.0 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.11.0-rc.2 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.11.0-rc.1 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.11.0-beta.5 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.11.0-beta.4 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.11.0-beta.3 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.11.0-beta.2 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.11.0-beta.1 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.11.0-alpha.7 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.11.0-alpha.6 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.11.0-alpha.5 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.11.0-alpha.4 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.11.0-alpha.3 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.11.0-alpha.2 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.11.0-alpha.1 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.10.11 satisfies 3.10 [Check Build/package] 💬 ::debug::x64===arm64 && darwin===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && win32===linux [Check Build/package] 💬 ::debug::x86===arm64 && win32===linux [Check Build/package] 💬 ::debug::check 3.10.10 satisfies 3.10 [Check Build/package] 💬 ::debug::x64===arm64 && darwin===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && win32===linux [Check Build/package] 💬 ::debug::x86===arm64 && win32===linux [Check Build/package] 💬 ::debug::check 3.10.9 satisfies 3.10 [Check Build/package] 💬 ::debug::x64===arm64 && darwin===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && win32===linux [Check Build/package] 💬 ::debug::x86===arm64 && win32===linux [Check Build/package] 💬 ::debug::check 3.10.8 satisfies 3.10 [Check Build/package] 💬 ::debug::x64===arm64 && darwin===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && win32===linux [Check Build/package] 💬 ::debug::x86===arm64 && win32===linux [Check Build/package] 💬 ::debug::check 3.10.7 satisfies 3.10 [Check Build/package] 💬 ::debug::x64===arm64 && darwin===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && win32===linux [Check Build/package] 💬 ::debug::x86===arm64 && win32===linux [Check Build/package] 💬 ::debug::check 3.10.6 satisfies 3.10 [Check Build/package] 💬 ::debug::x64===arm64 && darwin===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && win32===linux [Check Build/package] 💬 ::debug::x86===arm64 && win32===linux [Check Build/package] 💬 ::debug::check 3.10.5 satisfies 3.10 [Check Build/package] 💬 ::debug::x64===arm64 && darwin===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && win32===linux [Check Build/package] 💬 ::debug::x86===arm64 && win32===linux [Check Build/package] 💬 ::debug::check 3.10.4 satisfies 3.10 [Check Build/package] 💬 ::debug::x64===arm64 && darwin===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && win32===linux [Check Build/package] 💬 ::debug::x86===arm64 && win32===linux [Check Build/package] 💬 ::debug::check 3.10.3 satisfies 3.10 [Check Build/package] 💬 ::debug::x64===arm64 && darwin===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && win32===linux [Check Build/package] 💬 ::debug::x86===arm64 && win32===linux [Check Build/package] 💬 ::debug::check 3.10.2 satisfies 3.10 [Check Build/package] 💬 ::debug::x64===arm64 && darwin===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && win32===linux [Check Build/package] 💬 ::debug::x86===arm64 && win32===linux [Check Build/package] 💬 ::debug::check 3.10.1 satisfies 3.10 [Check Build/package] 💬 ::debug::x64===arm64 && darwin===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && win32===linux [Check Build/package] 💬 ::debug::x86===arm64 && win32===linux [Check Build/package] 💬 ::debug::check 3.10.0 satisfies 3.10 [Check Build/package] 💬 ::debug::x64===arm64 && darwin===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && linux===linux [Check Build/package] 💬 ::debug::x64===arm64 && win32===linux [Check Build/package] 💬 ::debug::x86===arm64 && win32===linux [Check Build/package] 💬 ::debug::check 3.10.0-rc.2 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.10.0-rc.1 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.10.0-beta.4 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.10.0-beta.3 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.10.0-beta.2 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.10.0-beta.1 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.10.0-alpha.7 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.10.0-alpha.6 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.10.0-alpha.5 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.10.0-alpha.4 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.10.0-alpha.3 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.10.0-alpha.2 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.10.0-alpha.1 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.9.16 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.9.15 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.9.14 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.9.13 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.9.12 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.9.11 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.9.10 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.9.9 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.9.8 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.9.7 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.9.6 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.9.5 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.9.4 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.9.3 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.9.2 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.9.2-rc.1 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.9.1 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.9.1-rc.1 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.9.0 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.9.0-rc.2 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.9.0-rc.1 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.9.0-beta.5 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.9.0-beta.4 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.8.16 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.8.15 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.8.14 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.8.13 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.8.12 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.8.11 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.8.10 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.8.9 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.8.8 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.8.7 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.8.6 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.8.5 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.8.4 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.8.3 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.8.2 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.8.1 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.8.0 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.7.16 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.7.15 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.7.14 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.7.13 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.7.12 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.7.11 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.7.10 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.7.9 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.7.8 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.7.7 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.7.6 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.7.5 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.7.4 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.7.3 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.7.2 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.7.1 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.6.15 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.6.14 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.6.13 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.6.12 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.6.11 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.6.10 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.6.9 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.6.8 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.6.7 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.5.10 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.5.9 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.5.4 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.4.10 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.4.4 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.3.7 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.3.5 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.2.5 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.1.4 satisfies 3.10 [Check Build/package] 💬 ::debug::check 3.0.1 satisfies 3.10 [Check Build/package] 💬 ::debug::check 2.7.18 satisfies 3.10 [Check Build/package] 💬 ::debug::check 2.7.17 satisfies 3.10 [Check Build/package] ❗ ::error::Version 3.10 with arch arm64 not found%0AThe list of all available versions can be found here: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json [Check Build/package] ❌ Failure - Main Set up Python 3.10 [Check Build/package] exitcode '1': failure ... TRIMMING NOT RELEVANT THINGS BECAUSE THE OUTPUT IS TOO LONG ... Error: Job 'package' failed ``` ### Additional information _No response_
kerem 2026-03-01 21:47:09 +03:00
  • closed this issue
  • added the
    kind/bug
    label
Author
Owner

@catthehacker commented on GitHub (May 18, 2023):

You are using AMD64 act on ARM64 Mac through Rosetta2, so you didn't get warning about default architecture used for docker containers. Please install ARM64 version of act, afterwards you should see warning You are using Apple M-series chip and you have not specified container architecture, you might encounter issues while running act. If so, try running it with '--container-architecture linux/amd64'..

<!-- gh-comment-id:1553527846 --> @catthehacker commented on GitHub (May 18, 2023): You are using AMD64 `act` on ARM64 Mac through Rosetta2, so you didn't get warning about default architecture used for docker containers. Please install ARM64 version of `act`, afterwards you should see warning `You are using Apple M-series chip and you have not specified container architecture, you might encounter issues while running act. If so, try running it with '--container-architecture linux/amd64'.`.
Author
Owner

@LucaMarconato commented on GitHub (May 18, 2023):

Thank you for the information. How do I install the ARM64 version of act?

<!-- gh-comment-id:1553673304 --> @LucaMarconato commented on GitHub (May 18, 2023): Thank you for the information. How do I install the ARM64 version of `act`?
Author
Owner

@ChristopherHX commented on GitHub (May 18, 2023):

How do I install the ARM64 version of act?

For example by downloading it here
https://github.com/nektos/act/releases/latest

The file named like act_Darwin_arm64.tar.gz is the native arm64 version of act for macOS.

<!-- gh-comment-id:1553685534 --> @ChristopherHX commented on GitHub (May 18, 2023): > How do I install the ARM64 version of `act`? For example by downloading it here https://github.com/nektos/act/releases/latest The file named like `act_Darwin_arm64.tar.gz` is the native arm64 version of act for macOS.
Author
Owner

@RockChinQ commented on GitHub (Nov 12, 2023):

You are using AMD64 act on ARM64 Mac through Rosetta2, so you didn't get warning about default architecture used for docker containers. Please install ARM64 version of act, afterwards you should see warning You are using Apple M-series chip and you have not specified container architecture, you might encounter issues while running act. If so, try running it with '--container-architecture linux/amd64'..

Thank you for your reply. I have the same issue, may I ask how can I check if I'm using the x64 act or arm64 version one? I installed it via homebrew.

<!-- gh-comment-id:1806992061 --> @RockChinQ commented on GitHub (Nov 12, 2023): > You are using AMD64 `act` on ARM64 Mac through Rosetta2, so you didn't get warning about default architecture used for docker containers. Please install ARM64 version of `act`, afterwards you should see warning `You are using Apple M-series chip and you have not specified container architecture, you might encounter issues while running act. If so, try running it with '--container-architecture linux/amd64'.`. Thank you for your reply. I have the same issue, may I ask how can I check if I'm using the x64 act or arm64 version one? I installed it via homebrew.
Author
Owner

@shindi-renuo commented on GitHub (May 21, 2025):

Encountering the same issue, and it doesn't seem like this is fixed yet?

<!-- gh-comment-id:2897053253 --> @shindi-renuo commented on GitHub (May 21, 2025): Encountering the same issue, and it doesn't seem like this is fixed yet?
Author
Owner

@panekj commented on GitHub (May 23, 2025):

It is fixed since the flag --container-architecture was introduced and act for arm64 from Homebrew has been available for few years now (github.com/Homebrew/homebrew-core@9b2acacde7). Please open new issue with details if there is something not working.

<!-- gh-comment-id:2902991671 --> @panekj commented on GitHub (May 23, 2025): It is fixed since the flag `--container-architecture` was introduced and `act` for arm64 from Homebrew has been available for few years now (https://github.com/Homebrew/homebrew-core/commit/9b2acacde714f25253c0dbebf16392d11d0eb554). Please open new issue with details if there is something not working.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/act#885
No description provided.