Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

runs-on with matrix.os always use one OS version to generate container #2376

Open
demin-han opened this issue Jun 24, 2024 · 0 comments
Open
Labels
kind/bug Something isn't working

Comments

@demin-han
Copy link

Bug report info

act version:            0.2.63
GOOS:                   linux
GOARCH:                 amd64
NumCPU:                 16
Docker host:            DOCKER_HOST environment variable is not set
Sockets found:
	/var/run/docker.sock
Config files:           
	/home/xxxxx/.config/act/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.22.3
	Module path:           github.com/nektos/act
	Main version:          (devel)
	Main path:             github.com/nektos/act
	Main checksum:         
	Build settings:
		-buildmode:           pie
		-compiler:            gc
		-trimpath:            true
		DefaultGODEBUG:       httplaxcontentlength=1,httpmuxgo121=1,tls10server=1,tlsrsakex=1,tlsunsafeekm=1
		CGO_ENABLED:          1
		GOARCH:               amd64
		GOOS:                 linux
		GOAMD64:              v1
Docker Engine:
	Engine version:        26.1.3
	Engine runtime:        runc
	Cgroup version:        2
	Cgroup driver:         systemd
	Storage driver:        overlay2
	Registry URI:          https://index.docker.io/v1/
	OS:                    Manjaro Linux
	OS type:               linux
	OS version:            
	OS arch:               x86_64
	OS kernel:             6.9.3-3-MANJARO
	OS CPU:                16
	OS memory:             19965 MB
	Security options:
		name=seccomp,profile=builtin
		name=cgroupns

Command used with act

act -j build --action-offline-mode --artifact-server-path /tmp/act

Describe issue

I reproduce this issue with "pkg/runner/testdata/matrix/push.yml" with a small change.

[matrix/PHP ubuntu-20.04 4-1 ] 🚀 Start image=catthehacker/ubuntu:act-20.04
[matrix/PHP ubuntu-22.04 4-2 ] 🚀 Start image=catthehacker/ubuntu:act-20.04
[matrix/PHP ubuntu-20.04 6-3 ] 🚀 Start image=catthehacker/ubuntu:act-20.04
[matrix/PHP ubuntu-22.04 6-4 ] 🚀 Start image=catthehacker/ubuntu:act-20.04

expect:

[matrix/PHP ubuntu-20.04 4-1 ] 🚀 Start image=catthehacker/ubuntu:act-20.04
[matrix/PHP ubuntu-22.04 4-2 ] 🚀 Start image=catthehacker/ubuntu:act-22.04
[matrix/PHP ubuntu-20.04 6-3 ] 🚀 Start image=catthehacker/ubuntu:act-20.04
[matrix/PHP ubuntu-22.04 6-4 ] 🚀 Start image=catthehacker/ubuntu:act-22.04

There is a small probability that the expected result generated.

Link to GitHub repository

No response

Workflow content

name: matrix
on: push

jobs:
  build:
    name: PHP ${{ matrix.os }} ${{ matrix.node}}
    runs-on: ${{ matrix.os }}
    steps:
      - run: echo ${NODE_VERSION} | grep ${{ matrix.node }}
        env:
          NODE_VERSION: ${{ matrix.node }}
    strategy:
      matrix:
        os: [ubuntu-20.04, ubuntu-22.04]
        node: [4, 6, 8, 10]

  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        node: [8.x, 10.x, 12.x, 13.x]
    steps:
      - run: echo ${NODE_VERSION} | grep ${{ matrix.node }}
        env:
          NODE_VERSION: ${{ matrix.node }}

Relevant log output

[matrix/PHP ubuntu-20.04 4-1 ] 🚀  Start image=catthehacker/ubuntu:act-20.04
[matrix/PHP ubuntu-22.04 4-2 ] 🚀  Start image=catthehacker/ubuntu:act-20.04
[matrix/PHP ubuntu-20.04 6-3 ] 🚀  Start image=catthehacker/ubuntu:act-20.04
[matrix/PHP ubuntu-22.04 6-4 ] 🚀  Start image=catthehacker/ubuntu:act-20.04
[matrix/PHP ubuntu-22.04 6-4 ]   🐳  docker pull image=catthehacker/ubuntu:act-20.04 platform= username= forcePull=false
[matrix/PHP ubuntu-22.04 4-2 ]   🐳  docker pull image=catthehacker/ubuntu:act-20.04 platform= username= forcePull=false
[matrix/PHP ubuntu-20.04 6-3 ]   🐳  docker pull image=catthehacker/ubuntu:act-20.04 platform= username= forcePull=false
[matrix/PHP ubuntu-20.04 4-1 ]   🐳  docker pull image=catthehacker/ubuntu:act-20.04 platform= username= forcePull=false
[matrix/PHP ubuntu-22.04 4-2 ]   🐳  docker create image=catthehacker/ubuntu:act-20.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[matrix/PHP ubuntu-20.04 6-3 ]   🐳  docker create image=catthehacker/ubuntu:act-20.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[matrix/PHP ubuntu-22.04 6-4 ]   🐳  docker create image=catthehacker/ubuntu:act-20.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[matrix/PHP ubuntu-20.04 4-1 ]   🐳  docker create image=catthehacker/ubuntu:act-20.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[matrix/PHP ubuntu-22.04 6-4 ]   🐳  docker run image=catthehacker/ubuntu:act-20.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[matrix/PHP ubuntu-22.04 4-2 ]   🐳  docker run image=catthehacker/ubuntu:act-20.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[matrix/PHP ubuntu-20.04 4-1 ]   🐳  docker run image=catthehacker/ubuntu:act-20.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[matrix/PHP ubuntu-20.04 6-3 ]   🐳  docker run image=catthehacker/ubuntu:act-20.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[matrix/PHP ubuntu-22.04 6-4 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 4-1 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 6-3 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 6-4 ] 🧪  Matrix: map[node:6 os:ubuntu-22.04]
[matrix/PHP ubuntu-20.04 4-1 ] 🧪  Matrix: map[node:4 os:ubuntu-20.04]
[matrix/PHP ubuntu-22.04 6-4 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 6-3 ] 🧪  Matrix: map[node:6 os:ubuntu-20.04]
[matrix/PHP ubuntu-20.04 4-1 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 6-3 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 6-4 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 6-3 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 4-1 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 6-4 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 6-3 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 4-1 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 6-4 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 6-4 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 6-4 ] ⭐ Run Main echo ${NODE_VERSION} | grep 6
[matrix/PHP ubuntu-20.04 6-3 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 4-1 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 6-3 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 4-1 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 4-2 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 6-4 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 4-1 ] ⭐ Run Main echo ${NODE_VERSION} | grep 4
[matrix/PHP ubuntu-22.04 4-2 ] 🧪  Matrix: map[node:4 os:ubuntu-22.04]
[matrix/PHP ubuntu-20.04 6-3 ] ⭐ Run Main echo ${NODE_VERSION} | grep 6
[matrix/PHP ubuntu-22.04 4-2 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 6-4 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 4-2 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 4-1 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 6-3 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 4-2 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 6-4 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 4-1 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 6-4 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 6-3 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 4-2 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 6-3 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 4-1 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 6-3 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 4-2 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 4-1 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 6-4 ]   🐳  docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=
[matrix/PHP ubuntu-22.04 4-2 ] ⭐ Run Main echo ${NODE_VERSION} | grep 4
[matrix/PHP ubuntu-22.04 4-2 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 4-1 ]   🐳  docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=
[matrix/PHP ubuntu-20.04 6-3 ]   🐳  docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=
[matrix/PHP ubuntu-22.04 4-2 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 4-2 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 4-2 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 4-2 ]   🐳  docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=
[matrix/PHP ubuntu-20.04 4-1 ]   | 4
[matrix/PHP ubuntu-22.04 6-4 ]   | 6
[matrix/PHP ubuntu-22.04 6-4 ]   ✅  Success - Main echo ${NODE_VERSION} | grep 6
[matrix/PHP ubuntu-20.04 4-1 ]   ✅  Success - Main echo ${NODE_VERSION} | grep 4
[matrix/PHP ubuntu-20.04 6-3 ]   | 6
[matrix/PHP ubuntu-20.04 6-3 ]   ✅  Success - Main echo ${NODE_VERSION} | grep 6
[matrix/PHP ubuntu-22.04 6-4 ] Cleaning up container for job PHP ubuntu-22.04 6
[matrix/PHP ubuntu-20.04 4-1 ] Cleaning up container for job PHP ubuntu-20.04 4
[matrix/PHP ubuntu-20.04 6-3 ] Cleaning up container for job PHP ubuntu-20.04 6
[matrix/PHP ubuntu-22.04 4-2 ]   | 4
[matrix/PHP ubuntu-22.04 4-2 ]   ✅  Success - Main echo ${NODE_VERSION} | grep 4
[matrix/PHP ubuntu-22.04 4-2 ] Cleaning up container for job PHP ubuntu-22.04 4
[matrix/PHP ubuntu-20.04 6-3 ] 🏁  Job succeeded
[matrix/PHP ubuntu-20.04 6-3 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 4-1 ] 🏁  Job succeeded
[matrix/PHP ubuntu-20.04 4-1 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 8-5 ] 🚀  Start image=catthehacker/ubuntu:act-20.04
[matrix/PHP ubuntu-22.04 8-6 ] 🚀  Start image=catthehacker/ubuntu:act-20.04
[matrix/PHP ubuntu-22.04 6-4 ] 🏁  Job succeeded
[matrix/PHP ubuntu-22.04 6-4 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 8-6 ]   🐳  docker pull image=catthehacker/ubuntu:act-20.04 platform= username= forcePull=false
[matrix/PHP ubuntu-20.04 8-5 ]   🐳  docker pull image=catthehacker/ubuntu:act-20.04 platform= username= forcePull=false
[matrix/PHP ubuntu-22.04 8-6 ]   🐳  docker create image=catthehacker/ubuntu:act-20.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[matrix/PHP ubuntu-20.04 8-5 ]   🐳  docker create image=catthehacker/ubuntu:act-20.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[matrix/PHP ubuntu-20.04 10-7] 🚀  Start image=catthehacker/ubuntu:act-20.04
[matrix/PHP ubuntu-22.04 4-2 ] 🏁  Job succeeded
[matrix/PHP ubuntu-22.04 4-2 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 10-7]   🐳  docker pull image=catthehacker/ubuntu:act-20.04 platform= username= forcePull=false
[matrix/PHP ubuntu-22.04 10-8] 🚀  Start image=catthehacker/ubuntu:act-20.04
[matrix/PHP ubuntu-20.04 10-7]   🐳  docker create image=catthehacker/ubuntu:act-20.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[matrix/PHP ubuntu-22.04 10-8]   🐳  docker pull image=catthehacker/ubuntu:act-20.04 platform= username= forcePull=false
[matrix/PHP ubuntu-22.04 10-8]   🐳  docker create image=catthehacker/ubuntu:act-20.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[matrix/PHP ubuntu-20.04 8-5 ]   🐳  docker run image=catthehacker/ubuntu:act-20.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[matrix/PHP ubuntu-22.04 10-8]   🐳  docker run image=catthehacker/ubuntu:act-20.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[matrix/PHP ubuntu-22.04 8-6 ]   🐳  docker run image=catthehacker/ubuntu:act-20.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[matrix/PHP ubuntu-20.04 10-7]   🐳  docker run image=catthehacker/ubuntu:act-20.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[matrix/PHP ubuntu-22.04 8-6 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 10-8] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 10-8] 🧪  Matrix: map[node:10 os:ubuntu-22.04]
[matrix/PHP ubuntu-22.04 10-8] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 8-6 ] 🧪  Matrix: map[node:8 os:ubuntu-22.04]
[matrix/PHP ubuntu-22.04 8-6 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 10-8] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 8-6 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 10-7] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 8-5 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 10-7] 🧪  Matrix: map[node:10 os:ubuntu-20.04]
[matrix/PHP ubuntu-22.04 10-8] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 10-7] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 8-5 ] 🧪  Matrix: map[node:8 os:ubuntu-20.04]
[matrix/PHP ubuntu-22.04 8-6 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 10-7] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 8-5 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 8-5 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 10-8] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 8-6 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 8-5 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 10-8] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 8-6 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 10-7] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 10-8] ⭐ Run Main echo ${NODE_VERSION} | grep 10
[matrix/PHP ubuntu-20.04 10-7] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 8-5 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 8-5 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 10-7] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 8-6 ] ⭐ Run Main echo ${NODE_VERSION} | grep 8
[matrix/PHP ubuntu-22.04 10-8] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 8-6 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 8-5 ] ⭐ Run Main echo ${NODE_VERSION} | grep 8
[matrix/PHP ubuntu-22.04 8-6 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 10-8] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 10-7] ⭐ Run Main echo ${NODE_VERSION} | grep 10
[matrix/PHP ubuntu-20.04 10-7] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 8-5 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 10-8] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 10-7] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 10-8] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 8-6 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 8-6 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 8-5 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 10-7] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 8-5 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 8-5 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 10-7] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 10-8]   🐳  docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=
[matrix/PHP ubuntu-22.04 8-6 ]   🐳  docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=
[matrix/PHP ubuntu-20.04 8-5 ]   🐳  docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=
[matrix/PHP ubuntu-20.04 10-7]   🐳  docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=
[matrix/PHP ubuntu-22.04 10-8]   | 10
[matrix/PHP ubuntu-22.04 8-6 ]   | 8
[matrix/PHP ubuntu-20.04 10-7]   | 10
[matrix/PHP ubuntu-20.04 8-5 ]   | 8
[matrix/PHP ubuntu-20.04 8-5 ]   ✅  Success - Main echo ${NODE_VERSION} | grep 8
[matrix/PHP ubuntu-22.04 8-6 ]   ✅  Success - Main echo ${NODE_VERSION} | grep 8
[matrix/PHP ubuntu-22.04 10-8]   ✅  Success - Main echo ${NODE_VERSION} | grep 10
[matrix/PHP ubuntu-20.04 10-7]   ✅  Success - Main echo ${NODE_VERSION} | grep 10
[matrix/PHP ubuntu-22.04 8-6 ] Cleaning up container for job PHP ubuntu-22.04 8
[matrix/PHP ubuntu-22.04 10-8] Cleaning up container for job PHP ubuntu-22.04 10
[matrix/PHP ubuntu-20.04 8-5 ] Cleaning up container for job PHP ubuntu-20.04 8
[matrix/PHP ubuntu-20.04 10-7] Cleaning up container for job PHP ubuntu-20.04 10
[matrix/PHP ubuntu-22.04 10-8] 🏁  Job succeeded
[matrix/PHP ubuntu-22.04 10-8] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 10-7] 🏁  Job succeeded
[matrix/PHP ubuntu-20.04 10-7] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-22.04 8-6 ] 🏁  Job succeeded
[matrix/PHP ubuntu-22.04 8-6 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found
[matrix/PHP ubuntu-20.04 8-5 ] 🏁  Job succeeded
[matrix/PHP ubuntu-20.04 8-5 ] unable to get git repo (githubInstance: github.com; remoteName: origin, repoPath: /home/xxxxx/Data/work/testworkflow): remote not found

Additional information

No response

@demin-han demin-han added the kind/bug Something isn't working label Jun 24, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant