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

GitHub.com/u-root/gobusy test fails #2598

Open
rminnich opened this issue Dec 31, 2024 · 1 comment
Open

GitHub.com/u-root/gobusy test fails #2598

rminnich opened this issue Dec 31, 2024 · 1 comment
Labels
kind/bug Something isn't working

Comments

@rminnich
Copy link

Bug report info

act version:            0.2.70
GOOS:                   linux
GOARCH:                 amd64
NumCPU:                 12
Docker host:            DOCKER_HOST environment variable is not set
Sockets found:
	/var/run/docker.sock
	$XDG_RUNTIME_DIR/podman/podman.sock
Config files:
	/home/rminnich/.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.23.2
	Module path:           github.com/nektos/act
	Main version:          (devel)
	Main path:             github.com/nektos/act
	Main checksum:
	Build settings:
		-buildmode:           exe
		-compiler:            gc
		CGO_ENABLED:          1
		CGO_CFLAGS:
		CGO_CPPFLAGS:
		CGO_CXXFLAGS:
		CGO_LDFLAGS:
		GOARCH:               amd64
		GOOS:                 linux
		GOAMD64:              v1
		vcs:                  git
		vcs.revision:         0ca1e1833458f9491b882b72c883b25d6cb8b806
		vcs.time:             2024-12-31T03:12:35Z
		vcs.modified:         false
Docker Engine:
	Engine version:        24.0.7
	Engine runtime:        runc
	Cgroup version:        2
	Cgroup driver:         systemd
	Storage driver:        overlay2
	Registry URI:          https://index.docker.io/v1/
	OS:                    Pop!_OS 22.04 LTS
	OS type:               linux
	OS version:            22.04
	OS arch:               x86_64
	OS kernel:             6.9.3-76060903-generic
	OS CPU:                12
	OS memory:             39956 MB
	Security options:
		name=apparmor
		name=seccomp,profile=builtin
		name=cgroupns

Command used with act

Note that the suggested command in here is wrong:
act -P ubuntu:latest -v -d
Error: unknown shorthand flag: 'd' in -d
but I ran
act -P ubuntu:latest -v

Describe issue

checkout GitHub.com/u-root/gobusybox
run act
act -P ubuntu:latest -v
there are multiple failures that do not occur at GitHub.com

Link to GitHub repository

https://github.com/u-root/gobusybox

Workflow content

name: Go

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]
  schedule:
    # Every day at 8am.
    - cron: "0 8 * * *"

# Cancel running workflows on new push to a PR.
concurrency:
  group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
  cancel-in-progress: true

jobs:
  tidy:
    name: Tidy
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Setup Go
        uses: actions/setup-go@v4
        with:
          go-version: '1.22.x'

      - name: gofmt
        run: cd src && test -z "$(gofmt -s -l $(find -name '*.go'))"

      - name: go mod tidy
        run: |
          cd src
          go mod tidy
          git status
          if [[ -n "$(git status --porcelain .)" ]]; then
            echo 'go.mod/go.sum is out-of-date: run `go mod tidy` and then check in the changes'
            echo 'If `go mod tidy` results in no changes, make sure you are using the latest relase of Go'
            git status --porcelain .
            exit 1
          fi

  unit-test:
    name: Unit Test
    runs-on: ubuntu-latest
    strategy:
      matrix:
        goversion: ['1.20', '1.21.x', '1.22.x']
    steps:
      - uses: actions/checkout@v4
        with:
          path: go/src/github.com/u-root/gobusybox

      - name: Setup Go
        uses: actions/setup-go@v4
        with:
          go-version: ${{ matrix.goversion }}

      - name: Test
        run: |
          cd go/src/github.com/u-root/gobusybox/src

          # Make sure GO111MODULE=off cases work.
          go mod vendor

          # Unit tests cover both GO111MODULE=on and off cases.
          GOPATH=$GITHUB_WORKSPACE/go go test -covermode=atomic -coverprofile cover.out ./...

      - uses: codecov/codecov-action@036b81c4b4e8314b391265bc226440f9e2117e2a
        env:
          CODECOV_TOKEN: 'bf25d8b2-b4f9-43f4-b578-64eefbe31e61'
        with:
          working-directory: go/src/github.com/u-root/gobusybox
          flags: ${{ matrix.goversion }}
          fail_ci_if_error: true
          verbose: true

  test-gopath:
    name: gobuilds-gopath
    runs-on: ubuntu-latest
    strategy:
      matrix:
        goversion: ['1.20', '1.21.x', '1.22.x']
    steps:
      - uses: actions/checkout@v4
        with:
          path: go/src/github.com/u-root/gobusybox

      - name: Setup Go
        uses: actions/setup-go@v4
        with:
          go-version: ${{ matrix.goversion }}

      - name: Test
        run: |
          cd go/src/github.com/u-root/gobusybox
          mkdir cover
          GOPATH=$GITHUB_WORKSPACE/go GOCOVERDIR=$(pwd)/cover ./gobuilds-gopath.sh
          go tool covdata textfmt -i=cover -o cover.out

      - uses: codecov/codecov-action@036b81c4b4e8314b391265bc226440f9e2117e2a
        env:
          CODECOV_TOKEN: 'bf25d8b2-b4f9-43f4-b578-64eefbe31e61'
        with:
          working-directory: go/src/github.com/u-root/gobusybox
          flags: ${{ matrix.goversion }}
          fail_ci_if_error: true
          verbose: true

  test-gomodule:
    name: gobuilds
    runs-on: ubuntu-latest
    strategy:
      matrix:
        goversion: ['1.20', '1.21.x', '1.22.x']
    steps:
      - uses: actions/checkout@v4

      - name: Setup Go
        uses: actions/setup-go@v4
        with:
          go-version: ${{ matrix.goversion }}

      - name: Test
        run: |
          mkdir cover
          GOCOVERDIR=$(pwd)/cover ./gobuilds.sh
          go tool covdata textfmt -i=cover -o cover.out

      - uses: codecov/codecov-action@036b81c4b4e8314b391265bc226440f9e2117e2a
        env:
          CODECOV_TOKEN: 'bf25d8b2-b4f9-43f4-b578-64eefbe31e61'
        with:
          flags: ${{ matrix.goversion }}
          fail_ci_if_error: true
          verbose: true

  test-external-workspaces:
    name: test-external-workspaces
    runs-on: ubuntu-latest
    strategy:
      matrix:
        goversion: ['1.20', '1.21.x', '1.22.x']
    steps:
      - uses: actions/checkout@v4

      - name: Setup Go
        uses: actions/setup-go@v4
        with:
          go-version: ${{ matrix.goversion }}

      - name: Test
        run: |
          mkdir cover
          GOCOVERDIR=$(pwd)/cover ./test-external-workspaces.sh
          go tool covdata textfmt -i=cover -o cover.out

      - uses: codecov/codecov-action@036b81c4b4e8314b391265bc226440f9e2117e2a
        env:
          CODECOV_TOKEN: 'bf25d8b2-b4f9-43f4-b578-64eefbe31e61'
        with:
          flags: ${{ matrix.goversion }}
          fail_ci_if_error: true
          verbose: true

  test-external-gopath:
    name: test-external-gopath
    runs-on: ubuntu-latest
    strategy:
      matrix:
        goversion: ['1.20', '1.21.x', '1.22.x']
    steps:
      - uses: actions/checkout@v4

      - name: Setup Go
        uses: actions/setup-go@v4
        with:
          go-version: ${{ matrix.goversion }}

      - name: Test
        run: |
          mkdir cover
          GOCOVERDIR=$(pwd)/cover ./test-external-gopath.sh
          go tool covdata textfmt -i=cover -o cover.out

      - uses: codecov/codecov-action@036b81c4b4e8314b391265bc226440f9e2117e2a
        env:
          CODECOV_TOKEN: 'bf25d8b2-b4f9-43f4-b578-64eefbe31e61'
        with:
          flags: ${{ matrix.goversion }}
          fail_ci_if_error: true
          verbose: true

Relevant log output

Output is too long.

Additional information

No response

@rminnich rminnich added the kind/bug Something isn't working label Dec 31, 2024
@rminnich
Copy link
Author

 act -P ubuntu:latest -v�������������������������[C�[C�[C�[1P
�[?2004l
�[37mDEBU�[0m[0000] Handling container host and socket           
�[37mDEBU�[0m[0000] Defaulting container socket to DOCKER_HOST   
�[36mINFO�[0m[0000] Using docker host 'unix:///var/run/docker.sock', and daemon socket 'unix:///var/run/docker.sock' 
�[37mDEBU�[0m[0000] Loading environment from /home/rminnich/go/src/github.com/u-root/gobusybox/.env 
�[37mDEBU�[0m[0000] Loading action inputs from /home/rminnich/go/src/github.com/u-root/gobusybox/.input 
�[37mDEBU�[0m[0000] Loading secrets from /home/rminnich/go/src/github.com/u-root/gobusybox/.secrets 
�[37mDEBU�[0m[0000] Loading vars from /home/rminnich/go/src/github.com/u-root/gobusybox/.vars 
�[37mDEBU�[0m[0000] Evaluated matrix inclusions: map[]           
�[37mDEBU�[0m[0000] Conditional GET for notices etag=d5d06b1e-995c-4313-9d71-8f192b18c27b 
�[37mDEBU�[0m[0000] Loading workflows from '/home/rminnich/go/src/github.com/u-root/gobusybox/.github/workflows' 
�[37mDEBU�[0m[0000] Loading workflows recursively                
�[37mDEBU�[0m[0000] Found workflow 'go.yml' in '/home/rminnich/go/src/github.com/u-root/gobusybox/.github/workflows/go.yml' 
�[37mDEBU�[0m[0000] Reading workflow '/home/rminnich/go/src/github.com/u-root/gobusybox/.github/workflows/go.yml' 
�[37mDEBU�[0m[0000] Preparing plan with all jobs                 
�[37mDEBU�[0m[0000] Using default workflow event: push           
�[37mDEBU�[0m[0000] Planning jobs for event: push                
�[37mDEBU�[0m[0000] gc: 2024-12-31 10:21:02.518666005 -0800 PST m=+0.009084961  �[37mmodule�[0m=artifactcache
�[37mDEBU�[0m[0000] Plan Stages: [0xc0004abc20]                  
�[37mDEBU�[0m[0000] Stages Runs: [test-external-gopath Tidy Unit Test gobuilds-gopath gobuilds test-external-workspaces] 
�[37mDEBU�[0m[0000] Job.Name: test-external-gopath               
�[37mDEBU�[0m[0000] Job.RawNeeds: {0 0    <nil> []    0 0}       
�[37mDEBU�[0m[0000] Job.RawRunsOn: {8 0 !!str ubuntu-latest  <nil> []    168 14} 
�[37mDEBU�[0m[0000] Job.Env: {0 0    <nil> []    0 0}            
�[37mDEBU�[0m[0000] Job.If: {0 0  success()  <nil> []    0 0}    
�[37mDEBU�[0m[0000] Job.Steps: actions/checkout@v4               
�[37mDEBU�[0m[0000] Job.Steps: Setup Go                          
�[37mDEBU�[0m[0000] Job.Steps: Test                              
�[37mDEBU�[0m[0000] Job.Steps: codecov/codecov-action@036b81c4b4e8314b391265bc226440f9e2117e2a 
�[37mDEBU�[0m[0000] Job.TimeoutMinutes:                          
�[37mDEBU�[0m[0000] Job.Services: map[]                          
�[37mDEBU�[0m[0000] Job.Strategy: &{false 0   {4 0 !!map   <nil> [0xc000352d20 0xc000352dc0]    171 9}} 
�[37mDEBU�[0m[0000] Job.RawContainer: {0 0    <nil> []    0 0}   
�[37mDEBU�[0m[0000] Job.Defaults.Run.Shell:                      
�[37mDEBU�[0m[0000] Job.Defaults.Run.WorkingDirectory:           
�[37mDEBU�[0m[0000] Job.Outputs: map[]                           
�[37mDEBU�[0m[0000] Job.Uses:                                    
�[37mDEBU�[0m[0000] Job.With: map[]                              
�[37mDEBU�[0m[0000] Job.Result:                                  
�[37mDEBU�[0m[0000] Job.Strategy.FailFast: false                 
�[37mDEBU�[0m[0000] Job.Strategy.MaxParallel: 0                  
�[37mDEBU�[0m[0000] Job.Strategy.FailFastString:                 
�[37mDEBU�[0m[0000] Job.Strategy.MaxParallelString:              
�[37mDEBU�[0m[0000] Job.Strategy.RawMatrix: {4 0 !!map   <nil> [0xc000352d20 0xc000352dc0]    171 9} 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000]                                              
�[37mDEBU�[0m[0000] Job Matrices: [map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]] 
�[37mDEBU�[0m[0000] Runner Matrices: map[]                       
�[37mDEBU�[0m[0000] Final matrix after applying user inclusions '[map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]]' 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] Stages Runs: [test-external-gopath Tidy Unit Test gobuilds-gopath gobuilds test-external-workspaces] 
�[37mDEBU�[0m[0000] Job.Name: Tidy                               
�[37mDEBU�[0m[0000] Job.RawNeeds: {0 0    <nil> []    0 0}       
�[37mDEBU�[0m[0000] Job.RawRunsOn: {8 0 !!str ubuntu-latest  <nil> []    20 14} 
�[37mDEBU�[0m[0000] Job.Env: {0 0    <nil> []    0 0}            
�[37mDEBU�[0m[0000] Job.If: {0 0  success()  <nil> []    0 0}    
�[37mDEBU�[0m[0000] Job.Steps: actions/checkout@v4               
�[37mDEBU�[0m[0000] Job.Steps: Setup Go                          
�[37mDEBU�[0m[0000] Job.Steps: gofmt                             
�[37mDEBU�[0m[0000] Job.Steps: go mod tidy                       
�[37mDEBU�[0m[0000] Job.TimeoutMinutes:                          
�[37mDEBU�[0m[0000] Job.Services: map[]                          
�[37mDEBU�[0m[0000] Job.Strategy: <nil>                          
�[37mDEBU�[0m[0000] Job.RawContainer: {0 0    <nil> []    0 0}   
�[37mDEBU�[0m[0000] Job.Defaults.Run.Shell:                      
�[37mDEBU�[0m[0000] Job.Defaults.Run.WorkingDirectory:           
�[37mDEBU�[0m[0000] Job.Outputs: map[]                           
�[37mDEBU�[0m[0000] Job.Uses:                                    
�[37mDEBU�[0m[0000] Job.With: map[]                              
�[37mDEBU�[0m[0000] Job.Result:                                  
�[37mDEBU�[0m[0000] Empty Strategy, matrixes=[map[]]             
�[37mDEBU�[0m[0000] Job Matrices: [map[]]                        
�[37mDEBU�[0m[0000] Runner Matrices: map[]                       
�[37mDEBU�[0m[0000] Final matrix after applying user inclusions '[map[]]' 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] Stages Runs: [test-external-gopath Tidy Unit Test gobuilds-gopath gobuilds test-external-workspaces] 
�[37mDEBU�[0m[0000] Job.Name: Unit Test                          
�[37mDEBU�[0m[0000] Job.RawNeeds: {0 0    <nil> []    0 0}       
�[37mDEBU�[0m[0000] Job.RawRunsOn: {8 0 !!str ubuntu-latest  <nil> []    45 14} 
�[37mDEBU�[0m[0000] Job.Env: {0 0    <nil> []    0 0}            
�[37mDEBU�[0m[0000] Job.If: {0 0  success()  <nil> []    0 0}    
�[37mDEBU�[0m[0000] Job.Steps: actions/checkout@v4               
�[37mDEBU�[0m[0000] Job.Steps: Setup Go                          
�[37mDEBU�[0m[0000] Job.Steps: Test                              
�[37mDEBU�[0m[0000] Job.Steps: codecov/codecov-action@036b81c4b4e8314b391265bc226440f9e2117e2a 
�[37mDEBU�[0m[0000] Job.TimeoutMinutes:                          
�[37mDEBU�[0m[0000] Job.Services: map[]                          
�[37mDEBU�[0m[0000] Job.Strategy: &{false 0   {4 0 !!map   <nil> [0xc000340820 0xc0003408c0]    48 9}} 
�[37mDEBU�[0m[0000] Job.RawContainer: {0 0    <nil> []    0 0}   
�[37mDEBU�[0m[0000] Job.Defaults.Run.Shell:                      
�[37mDEBU�[0m[0000] Job.Defaults.Run.WorkingDirectory:           
�[37mDEBU�[0m[0000] Job.Outputs: map[]                           
�[37mDEBU�[0m[0000] Job.Uses:                                    
�[37mDEBU�[0m[0000] Job.With: map[]                              
�[37mDEBU�[0m[0000] Job.Result:                                  
�[37mDEBU�[0m[0000] Job.Strategy.FailFast: false                 
�[37mDEBU�[0m[0000] Job.Strategy.MaxParallel: 0                  
�[37mDEBU�[0m[0000] Job.Strategy.FailFastString:                 
�[37mDEBU�[0m[0000] Job.Strategy.MaxParallelString:              
�[37mDEBU�[0m[0000] Job.Strategy.RawMatrix: {4 0 !!map   <nil> [0xc000340820 0xc0003408c0]    48 9} 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000]                                              
�[37mDEBU�[0m[0000] Job Matrices: [map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]] 
�[37mDEBU�[0m[0000] Runner Matrices: map[]                       
�[37mDEBU�[0m[0000] Final matrix after applying user inclusions '[map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]]' 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] Stages Runs: [test-external-gopath Tidy Unit Test gobuilds-gopath gobuilds test-external-workspaces] 
�[37mDEBU�[0m[0000] Job.Name: gobuilds-gopath                    
�[37mDEBU�[0m[0000] Job.RawNeeds: {0 0    <nil> []    0 0}       
�[37mDEBU�[0m[0000] Job.RawRunsOn: {8 0 !!str ubuntu-latest  <nil> []    80 14} 
�[37mDEBU�[0m[0000] Job.Env: {0 0    <nil> []    0 0}            
�[37mDEBU�[0m[0000] Job.If: {0 0  success()  <nil> []    0 0}    
�[37mDEBU�[0m[0000] Job.Steps: actions/checkout@v4               
�[37mDEBU�[0m[0000] Job.Steps: Setup Go                          
�[37mDEBU�[0m[0000] Job.Steps: Test                              
�[37mDEBU�[0m[0000] Job.Steps: codecov/codecov-action@036b81c4b4e8314b391265bc226440f9e2117e2a 
�[37mDEBU�[0m[0000] Job.TimeoutMinutes:                          
�[37mDEBU�[0m[0000] Job.Services: map[]                          
�[37mDEBU�[0m[0000] Job.Strategy: &{false 0   {4 0 !!map   <nil> [0xc000346b40 0xc000346be0]    83 9}} 
�[37mDEBU�[0m[0000] Job.RawContainer: {0 0    <nil> []    0 0}   
�[37mDEBU�[0m[0000] Job.Defaults.Run.Shell:                      
�[37mDEBU�[0m[0000] Job.Defaults.Run.WorkingDirectory:           
�[37mDEBU�[0m[0000] Job.Outputs: map[]                           
�[37mDEBU�[0m[0000] Job.Uses:                                    
�[37mDEBU�[0m[0000] Job.With: map[]                              
�[37mDEBU�[0m[0000] Job.Result:                                  
�[37mDEBU�[0m[0000] Job.Strategy.FailFast: false                 
�[37mDEBU�[0m[0000] Job.Strategy.MaxParallel: 0                  
�[37mDEBU�[0m[0000] Job.Strategy.FailFastString:                 
�[37mDEBU�[0m[0000] Job.Strategy.MaxParallelString:              
�[37mDEBU�[0m[0000] Job.Strategy.RawMatrix: {4 0 !!map   <nil> [0xc000346b40 0xc000346be0]    83 9} 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000]                                              
�[37mDEBU�[0m[0000] Job Matrices: [map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]] 
�[37mDEBU�[0m[0000] Runner Matrices: map[]                       
�[37mDEBU�[0m[0000] Final matrix after applying user inclusions '[map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]]' 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] Stages Runs: [test-external-gopath Tidy Unit Test gobuilds-gopath gobuilds test-external-workspaces] 
�[37mDEBU�[0m[0000] Job.Name: gobuilds                           
�[37mDEBU�[0m[0000] Job.RawNeeds: {0 0    <nil> []    0 0}       
�[37mDEBU�[0m[0000] Job.RawRunsOn: {8 0 !!str ubuntu-latest  <nil> []    112 14} 
�[37mDEBU�[0m[0000] Job.Env: {0 0    <nil> []    0 0}            
�[37mDEBU�[0m[0000] Job.If: {0 0  success()  <nil> []    0 0}    
�[37mDEBU�[0m[0000] Job.Steps: actions/checkout@v4               
�[37mDEBU�[0m[0000] Job.Steps: Setup Go                          
�[37mDEBU�[0m[0000] Job.Steps: Test                              
�[37mDEBU�[0m[0000] Job.Steps: codecov/codecov-action@036b81c4b4e8314b391265bc226440f9e2117e2a 
�[37mDEBU�[0m[0000] Job.TimeoutMinutes:                          
�[37mDEBU�[0m[0000] Job.Services: map[]                          
�[37mDEBU�[0m[0000] Job.Strategy: &{false 0   {4 0 !!map   <nil> [0xc000348e60 0xc000348f00]    115 9}} 
�[37mDEBU�[0m[0000] Job.RawContainer: {0 0    <nil> []    0 0}   
�[37mDEBU�[0m[0000] Job.Defaults.Run.Shell:                      
�[37mDEBU�[0m[0000] Job.Defaults.Run.WorkingDirectory:           
�[37mDEBU�[0m[0000] Job.Outputs: map[]                           
�[37mDEBU�[0m[0000] Job.Uses:                                    
�[37mDEBU�[0m[0000] Job.With: map[]                              
�[37mDEBU�[0m[0000] Job.Result:                                  
�[37mDEBU�[0m[0000] Job.Strategy.FailFast: false                 
�[37mDEBU�[0m[0000] Job.Strategy.MaxParallel: 0                  
�[37mDEBU�[0m[0000] Job.Strategy.FailFastString:                 
�[37mDEBU�[0m[0000] Job.Strategy.MaxParallelString:              
�[37mDEBU�[0m[0000] Job.Strategy.RawMatrix: {4 0 !!map   <nil> [0xc000348e60 0xc000348f00]    115 9} 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000]                                              
�[37mDEBU�[0m[0000] Job Matrices: [map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]] 
�[37mDEBU�[0m[0000] Runner Matrices: map[]                       
�[37mDEBU�[0m[0000] Final matrix after applying user inclusions '[map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]]' 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] Stages Runs: [test-external-gopath Tidy Unit Test gobuilds-gopath gobuilds test-external-workspaces] 
�[37mDEBU�[0m[0000] Job.Name: test-external-workspaces           
�[37mDEBU�[0m[0000] Job.RawNeeds: {0 0    <nil> []    0 0}       
�[37mDEBU�[0m[0000] Job.RawRunsOn: {8 0 !!str ubuntu-latest  <nil> []    140 14} 
�[37mDEBU�[0m[0000] Job.Env: {0 0    <nil> []    0 0}            
�[37mDEBU�[0m[0000] Job.If: {0 0  success()  <nil> []    0 0}    
�[37mDEBU�[0m[0000] Job.Steps: actions/checkout@v4               
�[37mDEBU�[0m[0000] Job.Steps: Setup Go                          
�[37mDEBU�[0m[0000] Job.Steps: Test                              
�[37mDEBU�[0m[0000] Job.Steps: codecov/codecov-action@036b81c4b4e8314b391265bc226440f9e2117e2a 
�[37mDEBU�[0m[0000] Job.TimeoutMinutes:                          
�[37mDEBU�[0m[0000] Job.Services: map[]                          
�[37mDEBU�[0m[0000] Job.Strategy: &{false 0   {4 0 !!map   <nil> [0xc00034edc0 0xc00034ee60]    143 9}} 
�[37mDEBU�[0m[0000] Job.RawContainer: {0 0    <nil> []    0 0}   
�[37mDEBU�[0m[0000] Job.Defaults.Run.Shell:                      
�[37mDEBU�[0m[0000] Job.Defaults.Run.WorkingDirectory:           
�[37mDEBU�[0m[0000] Job.Outputs: map[]                           
�[37mDEBU�[0m[0000] Job.Uses:                                    
�[37mDEBU�[0m[0000] Job.With: map[]                              
�[37mDEBU�[0m[0000] Job.Result:                                  
�[37mDEBU�[0m[0000] Job.Strategy.FailFast: false                 
�[37mDEBU�[0m[0000] Job.Strategy.MaxParallel: 0                  
�[37mDEBU�[0m[0000] Job.Strategy.FailFastString:                 
�[37mDEBU�[0m[0000] Job.Strategy.MaxParallelString:              
�[37mDEBU�[0m[0000] Job.Strategy.RawMatrix: {4 0 !!map   <nil> [0xc00034edc0 0xc00034ee60]    143 9} 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000]                                              
�[37mDEBU�[0m[0000] Job Matrices: [map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]] 
�[37mDEBU�[0m[0000] Runner Matrices: map[]                       
�[37mDEBU�[0m[0000] Final matrix after applying user inclusions '[map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]]' 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] Loading revision from git directory          
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
�[37mDEBU�[0m[0000] using github ref: refs/heads/main            
�[37mDEBU�[0m[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
�[37mDEBU�[0m[0000] Detected CPUs: 12                            
�[33m[Go/test-external-gopath-1    ] �[0m[DEBUG] evaluating expression 'success()'
�[33m[Go/test-external-gopath-1    ] �[0m[DEBUG] expression 'success()' evaluated to 'true'
�[33m[Go/test-external-gopath-1    ] �[0m🚀  Start image=catthehacker/ubuntu:act-latest
�[32m[Go/Tidy                      ] �[0m[DEBUG] evaluating expression 'success()'
�[35m[Go/gobuilds-gopath-1         ] �[0m[DEBUG] evaluating expression 'success()'
�[32m[Go/Tidy                      ] �[0m[DEBUG] expression 'success()' evaluated to 'true'
�[35m[Go/gobuilds-gopath-1         ] �[0m[DEBUG] expression 'success()' evaluated to 'true'
�[32m[Go/Tidy                      ] �[0m🚀  Start image=catthehacker/ubuntu:act-latest
�[35m[Go/gobuilds-gopath-1         ] �[0m🚀  Start image=catthehacker/ubuntu:act-latest
�[31m[Go/test-external-workspaces-1] �[0m[DEBUG] evaluating expression 'success()'
�[31m[Go/test-external-workspaces-1] �[0m[DEBUG] expression 'success()' evaluated to 'true'
�[37m[Go/gobuilds-1                ] �[0m[DEBUG] evaluating expression 'success()'
�[31m[Go/test-external-workspaces-1] �[0m🚀  Start image=catthehacker/ubuntu:act-latest
�[37m[Go/gobuilds-1                ] �[0m[DEBUG] expression 'success()' evaluated to 'true'
�[37m[Go/gobuilds-1                ] �[0m🚀  Start image=catthehacker/ubuntu:act-latest
�[36m[Go/test-external-gopath-2    ] �[0m[DEBUG] evaluating expression 'success()'
�[34m[Go/Unit Test-1               ] �[0m[DEBUG] evaluating expression 'success()'
�[34m[Go/Unit Test-1               ] �[0m[DEBUG] expression 'success()' evaluated to 'true'
�[34m[Go/Unit Test-1               ] �[0m🚀  Start image=catthehacker/ubuntu:act-latest
�[36m[Go/test-external-gopath-2    ] �[0m[DEBUG] expression 'success()' evaluated to 'true'
�[33m[Go/gobuilds-gopath-2         ] �[0m[DEBUG] evaluating expression 'success()'
�[36m[Go/test-external-gopath-2    ] �[0m🚀  Start image=catthehacker/ubuntu:act-latest
�[32m[Go/gobuilds-2                ] �[0m[DEBUG] evaluating expression 'success()'
�[33m[Go/gobuilds-gopath-2         ] �[0m[DEBUG] expression 'success()' evaluated to 'true'
�[32m[Go/gobuilds-2                ] �[0m[DEBUG] expression 'success()' evaluated to 'true'
�[32m[Go/gobuilds-2                ] �[0m🚀  Start image=catthehacker/ubuntu:act-latest
�[33m[Go/gobuilds-gopath-2         ] �[0m🚀  Start image=catthehacker/ubuntu:act-latest
�[35m[Go/test-external-workspaces-2] �[0m[DEBUG] evaluating expression 'success()'
�[35m[Go/test-external-workspaces-2] �[0m[DEBUG] expression 'success()' evaluated to 'true'
�[35m[Go/test-external-workspaces-2] �[0m🚀  Start image=catthehacker/ubuntu:act-latest
�[31m[Go/test-external-gopath-3    ] �[0m[DEBUG] evaluating expression 'success()'
�[31m[Go/test-external-gopath-3    ] �[0m[DEBUG] expression 'success()' evaluated to 'true'
�[31m[Go/test-external-gopath-3    ] �[0m🚀  Start image=catthehacker/ubuntu:act-latest
�[37m[Go/Unit Test-2               ] �[0m[DEBUG] evaluating expression 'success()'
�[37m[Go/Unit Test-2               ] �[0m[DEBUG] expression 'success()' evaluated to 'true'
�[36m[Go/Unit Test-3               ] �[0m[DEBUG] evaluating expression 'success()'
�[37m[Go/Unit Test-2               ] �[0m🚀  Start image=catthehacker/ubuntu:act-latest
�[36m[Go/Unit Test-3               ] �[0m[DEBUG] expression 'success()' evaluated to 'true'
�[36m[Go/Unit Test-3               ] �[0m🚀  Start image=catthehacker/ubuntu:act-latest
�[34m[Go/gobuilds-gopath-3         ] �[0m[DEBUG] evaluating expression 'success()'
�[34m[Go/gobuilds-gopath-3         ] �[0m[DEBUG] expression 'success()' evaluated to 'true'
�[33m[Go/test-external-workspaces-3] �[0m[DEBUG] evaluating expression 'success()'
�[34m[Go/gobuilds-gopath-3         ] �[0m🚀  Start image=catthehacker/ubuntu:act-latest
�[33m[Go/test-external-workspaces-3] �[0m[DEBUG] expression 'success()' evaluated to 'true'
�[32m[Go/gobuilds-3                ] �[0m[DEBUG] evaluating expression 'success()'
�[33m[Go/test-external-workspaces-3] �[0m🚀  Start image=catthehacker/ubuntu:act-latest
�[32m[Go/gobuilds-3                ] �[0m[DEBUG] expression 'success()' evaluated to 'true'
�[32m[Go/gobuilds-3                ] �[0m🚀  Start image=catthehacker/ubuntu:act-latest
�[37mDEBU�[0m[0000] Parallel tasks (0) below minimum, setting to 1 
�[32m[Go/gobuilds-2                ] �[0m  🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
�[32m[Go/gobuilds-2                ] �[0m[DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
�[32m[Go/gobuilds-2                ] �[0m[DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
�[37mDEBU�[0m[0000] Parallel tasks (0) below minimum, setting to 1 
�[31m[Go/test-external-workspaces-1] �[0m  🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
�[31m[Go/test-external-workspaces-1] �[0m[DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
�[37mDEBU�[0m[0000] Parallel tasks (0) below minimum, setting to 1 
�[31m[Go/test-external-workspaces-1] �[0m[DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
�[37mDEBU�[0m[0000] Parallel tasks (0) below minimum, setting to 1 
�[35m[Go/test-external-workspaces-2] �[0m  🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
�[35m[Go/test-external-workspaces-2] �[0m[DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
�[33m[Go/gobuilds-gopath-2         ] �[0m  🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
�[37mDEBU�[0m[0000] Parallel tasks (0) below minimum, setting to 1 
�[37mDEBU�[0m[0000] Parallel tasks (0) below minimum, setting to 1 
�[37mDEBU�[0m[0000] Parallel tasks (0) below minimum, setting to 1 
�[37m[Go/gobuilds-1                ] �[0m  🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
�[32m[Go/Tidy                      ] �[0m  🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
�[37m[Go/gobuilds-1                ] �[0m[DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
�[32m[Go/Tidy                      ] �[0m[DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
�[31m[Go/test-external-gopath-3    ] �[0m  🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
�[37m[Go/gobuilds-1                ] �[0m[DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
�[37mDEBU�[0m[0000] Parallel tasks (0) below minimum, setting to 1 
�[31m[Go/test-external-gopath-3    ] �[0m[DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
�[37mDEBU�[0m[0000] Parallel tasks (0) below minimum, setting to 1 
�[34m[Go/Unit Test-1               ] �[0m  🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
�[34m[Go/Unit Test-1               ] �[0m[DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
�[34m[Go/Unit Test-1               ] �[0m[DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
�[37m[Go/Unit Test-2               ] �[0m  🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
�[37m[Go/Unit Test-2               ] �[0m[DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
�[37mDEBU�[0m[0000] Parallel tasks (0) below minimum, setting to 1 
�[37m[Go/Unit Test-2               ] �[0m[DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
�[36m[Go/test-external-gopath-2    ] �[0m  🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
�[36m[Go/test-external-gopath-2    ] �[0m[DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
�[33m[Go/gobuilds-gopath-2         ] �[0m[DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
�[33m[Go/gobuilds-gopath-2         ] �[0m[DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
�[37mDEBU�[0m[0000] Parallel tasks (0) below minimum, setting to 1 
�[35m[Go/gobuilds-gopath-1         ] �[0m  🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
�[35m[Go/gobuilds-gopath-1         ] �[0m[DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
�[32m[Go/Tidy                      ] �[0m[DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
�[35m[Go/gobuilds-gopath-1         ] �[0m[DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
�[32m[Go/gobuilds-2                ] �[0musing DockerAuthConfig authentication for docker pull
�[37mDEBU�[0m[0000] Parallel tasks (0) below minimum, setting to 1 
�[33m[Go/test-external-workspaces-3] �[0m  🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
�[34m[Go/Unit Test-1               ] �[0musing DockerAuthConfig authentication for docker pull
�[33m[Go/test-external-workspaces-3] �[0m[DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
�[37mDEBU�[0m[0000] Parallel tasks (0) below minimum, setting to 1 
�[33m[Go/test-external-workspaces-3] �[0m[DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
�[33m[Go/test-external-gopath-1    ] �[0m  🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
�[33m[Go/test-external-gopath-1    ] �[0m[DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
�[31m[Go/test-external-gopath-3    ] �[0m[DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
�[33m[Go/test-external-gopath-1    ] �[0m[DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
�[31m[Go/test-external-workspaces-1] �[0musing DockerAuthConfig authentication for docker pull
�[36m[Go/test-external-gopath-2    ] �[0m[DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
�[31m[Go/test-external-gopath-3    ] �[0musing DockerAuthConfig authentication for docker pull
�[37m[Go/Unit Test-2               ] �[0musing DockerAuthConfig authentication for docker pull
�[33m[Go/gobuilds-gopath-2         ] �[0musing DockerAuthConfig authentication for docker pull
�[33m[Go/test-external-workspaces-3] �[0musing DockerAuthConfig authentication for docker pull
�[35m[Go/test-external-workspaces-2] �[0m[DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
�[37mDEBU�[0m[0000] Parallel tasks (0) below minimum, setting to 1 
�[36m[Go/Unit Test-3               ] �[0m  🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
�[32m[Go/Tidy                      ] �[0musing DockerAuthConfig authentication for docker pull
�[36m[Go/test-external-gopath-2    ] �[0musing DockerAuthConfig authentication for docker pull
�[36m[Go/Unit Test-3               ] �[0m[DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
�[36m[Go/Unit Test-3               ] �[0m[DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
�[37mDEBU�[0m[0000] Parallel tasks (0) below minimum, setting to 1 
�[34m[Go/gobuilds-gopath-3         ] �[0m  🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
�[34m[Go/gobuilds-gopath-3         ] �[0m[DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
�[34m[Go/gobuilds-gopath-3         ] �[0m[DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
�[35m[Go/gobuilds-gopath-1         ] �[0musing DockerAuthConfig authentication for docker pull
�[37mDEBU�[0m[0000] Parallel tasks (0) below minimum, setting to 1 
�[32m[Go/gobuilds-3                ] �[0m  🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
�[32m[Go/gobuilds-3                ] �[0m[DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
�[37m[Go/gobuilds-1                ] �[0musing DockerAuthConfig authentication for docker pull
�[32m[Go/gobuilds-3                ] �[0m[DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
�[33m[Go/test-external-gopath-1    ] �[0musing DockerAuthConfig authentication for docker pull
�[35m[Go/test-external-workspaces-2] �[0musing DockerAuthConfig authentication for docker pull
�[36m[Go/Unit Test-3               ] �[0musing DockerAuthConfig authentication for docker pull
�[34m[Go/gobuilds-gopath-3         ] �[0musing DockerAuthConfig authentication for docker pull
�[32m[Go/gobuilds-3                ] �[0musing DockerAuthConfig authentication for docker pull
�[37mDEBU�[0m[0000] Saving notices etag=d5d06b1e-995c-4313-9d71-8f192b18c27b 
�[37mDEBU�[0m[0000] No new notices                               
�[36m[Go/Unit Test-3               ] �[0m[DEBUG] Pulling from catthehacker/ubuntu :: act-latest
�[32m[Go/Tidy                      ] �[0m[DEBUG] Pulling from catthehacker/ubuntu :: act-latest
�[32m[Go/gobuilds-2                ] �[0m[DEBUG] Pulling from catthehacker/ubuntu :: act-latest
�[37m[Go/gobuilds-1                ] �[0m[DEBUG] Pulling from catthehacker/ubuntu :: act-latest
�[31m[Go/test-external-workspaces-1] �[0m[DEBUG] Pulling from catthehacker/ubuntu :: act-latest
�[35m[Go/gobuilds-gopath-1         ] �[0m[DEBUG] Pulling from catthehacker/ubuntu :: act-latest
�[32m[Go/gobuilds-3                ] �[0m[DEBUG] Pulling from catthehacker/ubuntu :: act-latest
�[34m[Go/gobuilds-gopath-3         ] �[0m[DEBUG] Pulling from catthehacker/ubuntu :: act-latest
�[33m[Go/test-external-gopath-1    ] �[0m[DEBUG] Pulling from catthehacker/ubuntu :: act-latest
�[37m[Go/Unit Test-2               ] �[0m[DEBUG] Pulling from catthehacker/ubuntu :: act-latest
�[31m[Go/test-external-gopath-3    ] �[0m[DEBUG] Pulling from catthehacker/ubuntu :: act-latest
�[35m[Go/test-external-workspaces-2] �[0m[DEBUG] Pulling from catthehacker/ubuntu :: act-latest
�[32m[Go/Tidy                      ] �[0m[DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: 
�[32m[Go/Tidy                      ] �[0m[DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
�[32m[Go/gobuilds-2                ] �[0m[DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: 
�[32m[Go/gobuilds-2                ] �[0m[DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
�[31m[Go/test-external-workspaces-1] �[0m[DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: 
�[31m[Go/test-external-workspaces-1] �[0m[DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
�[35m[Go/gobuilds-gopath-1         ] �[0m[DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: 
�[35m[Go/gobuilds-gopath-1         ] �[0m[DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
�[34m[Go/gobuilds-gopath-3         ] �[0m[DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: 
�[34m[Go/gobuilds-gopath-3         ] �[0m[DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
�[37m[Go/Unit Test-2               ] �[0m[DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: 
�[37m[Go/Unit Test-2               ] �[0m[DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
�[32m[Go/gobuilds-3                ] �[0m[DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: 
�[32m[Go/gobuilds-3                ] �[0m[DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
�[33m[Go/test-external-gopath-1    ] �[0m[DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: 
�[33m[Go/test-external-gopath-1    ] �[0m[DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
�[37m[Go/gobuilds-1                ] �[0m[DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: 
�[37m[Go/gobuilds-1                ] �[0m[DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
�[36m[Go/Unit Test-3               ] �[0m[DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: 
�[36m[Go/Unit Test-3               ] �[0m[DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
�[31m[Go/test-external-gopath-3    ] �[0m[DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: 
�[31m[Go/test-external-gopath-3    ] �[0m[DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
�[35m[Go/test-external-workspaces-2] �[0m[DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: 
�[35m[Go/test-external-workspaces-2] �[0m[DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
�[37mDEBU�[0m[0001] Parallel tasks (0) below minimum, setting to 1 
�[32m[Go/Tidy                      ] �[0m  🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
�[37mDEBU�[0m[0001] Parallel tasks (0) below minimum, setting to 1 
�[32m[Go/gobuilds-2                ] �[0m  🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
�[37mDEBU�[0m[0001] Parallel tasks (0) below minimum, setting to 1 
�[37m[Go/Unit Test-2               ] �[0m  🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
�[37mDEBU�[0m[0001] Parallel tasks (0) below minimum, setting to 1 
�[32m[Go/gobuilds-3                ] �[0m  🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
�[37mDEBU�[0m[0001] Parallel tasks (0) below minimum, setting to 1 
�[35m[Go/test-external-workspaces-2] �[0m  🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
�[37mDEBU�[0m[0001] Parallel tasks (0) below minimum, setting to 1 
�[34m[Go/gobuilds-gopath-3         ] �[0m  🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
�[37mDEBU�[0m[0001] Parallel tasks (0) below minimum, setting to 1 
�[37m[Go/gobuilds-1                ] �[0m  🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
�[37mDEBU�[0m[0001] Parallel tasks (0) below minimum, setting to 1 
�[36m[Go/Unit Test-3               ] �[0m  🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
�[37mDEBU�[0m[0001] Parallel tasks (0) below minimum, setting to 1 
�[31m[Go/test-external-workspaces-1] �[0m  🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
�[37mDEBU�[0m[0001] Parallel tasks (0) below minimum, setting to 1 
�[37mDEBU�[0m[0001] Parallel tasks (0) below minimum, setting to 1 
�[31m[Go/test-external-gopath-3    ] �[0m  🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
�[35m[Go/gobuilds-gopath-1         ] �[0m  🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
�[37mDEBU�[0m[0001] Parallel tasks (0) below minimum, setting to 1 
�[33m[Go/test-external-gopath-1    ] �[0m  🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
�[32m[Go/gobuilds-2                ] �[0m[DEBUG] Common container.Config ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:false AttachStderr:false ExposedPorts:map[] Tty:true OpenStdin:false StdinOnce:false Env:[RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8] Cmd:[] Healthcheck:<nil> ArgsEscaped:false Image:catthehacker/ubuntu:act-latest Volumes:map[] WorkingDir:/home/rminnich/go/src/github.com/u-root/gobusybox Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]}
�[32m[Go/Tidy                      ] �[0m[DEBUG] Common container.Config ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:false AttachStderr:false ExposedPorts:map[] Tty:true OpenStdin:false StdinOnce:false Env:[RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8] Cmd:[] Healthcheck:<nil> ArgsEscaped:false Image:catthehacker/ubuntu:act-latest Volumes:map[] WorkingDir:/home/rminnich/go/src/github.com/u-root/gobusybox Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]}
�[32m[Go/gobuilds-2                ] �[0m[DEBUG] Common container.HostConfig ==> &{Binds:[/var/run/docker.sock:/var/run/docker.sock] ContainerIDFile: LogConfig:{Type: Config:map[]} NetworkMode:host PortBindings:map[] RestartPolicy:{Name: MaximumRetryCount:0} AutoRemove:false VolumeDriver: VolumesFrom:[] ConsoleSize:[0 0] Annotations:map[] CapAdd:[] CapDrop:[] CgroupnsMode: DNS:[] DNSOptions:[] DNSSearch:[] ExtraHosts:[] GroupAdd:[] IpcMode: Cgroup: Links:[] OomScoreAdj:0 PidMode: Privileged:false PublishAllPorts:false ReadonlyRootfs:false SecurityOpt:[] StorageOpt:map[] Tmpfs:map[] UTSMode: UsernsMode: ShmSize:0 Sysctls:map[] Runtime: Isolation: Resources:{CPUShares:0 Memory:0 NanoCPUs:0 CgroupParent: BlkioWeight:0 BlkioWeightDevice:[] BlkioDeviceReadBps:[] BlkioDeviceWriteBps:[] BlkioDeviceReadIOps:[] BlkioDeviceWriteIOps:[] CPUPeriod:0 CPUQuota:0 CPURealtimePeriod:0 CPURealtimeRuntime:0 CpusetCpus: CpusetMems: Devices:[] DeviceCgroupRules:[] DeviceRequests:[] KernelMemory:0 KernelMemoryTCP:0 MemoryReservation:0 MemorySwap:0 MemorySwappiness:<nil> OomKillDisable:<nil> PidsLimit:<nil> Ulimits:[] CPUCount:0 CPUPercent:0 IOMaximumIOps:0 IOMaximumBandwidth:0} Mounts:[{Type:volume Source:act-toolcache Target:/opt/hostedtoolcache ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-Go-gobuilds-2-eff3a139eee550f4587eab1f10ea7ab11c55c9e487e7f0c38d3200dddeb7fff7-env Target:/var/run/act ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-Go-gobuilds-2-eff3a139eee550f4587eab1f10ea7ab11c55c9e487e7f0c38d3200dddeb7fff7 Target:/home/rminnich/go/src/github.com/u-root/gobusybox ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>}] MaskedPaths:[] ReadonlyPaths:[] Init:<nil>}
�[32m[Go/gobuilds-2                ] �[0m[DEBUG] input.NetworkAliases ==> [gobuilds-2]
�[35m[Go/test-external-workspaces-2] �[0m[DEBUG] Common container.Config ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:false AttachStderr:false ExposedPorts:map[] Tty:true OpenStdin:false StdinOnce:false Env:[RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8] Cmd:[] Healthcheck:<nil> ArgsEscaped:false Image:catthehacker/ubuntu:act-latest Volumes:map[] WorkingDir:/home/rminnich/go/src/github.com/u-root/gobusybox Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]}
�[37m[Go/Unit Test-2               ] �[0m[DEBUG] Common container.Config ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:false AttachStderr:false ExposedPorts:map[] Tty:true OpenStdin:false StdinOnce:false Env:[RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8] Cmd:[] Healthcheck:<nil> ArgsEscaped:false Image:catthehacker/ubuntu:act-latest Volumes:map[] WorkingDir:/home/rminnich/go/src/github.com/u-root/gobusybox Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]}
�[37m[Go/gobuilds-1                ] �[0m[DEBUG] Common container.Config ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:false AttachStderr:false ExposedPorts:map[] Tty:true OpenStdin:false StdinOnce:false Env:[RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8] Cmd:[] Healthcheck:<nil> ArgsEscaped:false Image:catthehacker/ubuntu:act-latest Volumes:map[] WorkingDir:/home/rminnich/go/src/github.com/u-root/gobusybox Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]}
�[36m[Go/Unit Test-3               ] �[0m[DEBUG] Common container.Config ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:false AttachStderr:false ExposedPorts:map[] Tty:true OpenStdin:false StdinOnce:false Env:[RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8] Cmd:[] Healthcheck:<nil> ArgsEscaped:false Image:catthehacker/ubuntu:act-latest Volumes:map[] WorkingDir:/home/rminnich/go/src/github.com/u-root/gobusybox Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]}
�[32m[Go/Tidy                      ] �[0m[DEBUG] Common container.HostConfig ==> &{Binds:[/var/run/docker.sock:/var/run/docker.sock] ContainerIDFile: LogConfig:{Type: Config:map[]} NetworkMode:host PortBindings:map[] RestartPolicy:{Name: MaximumRetryCount:0} AutoRemove:false VolumeDriver: VolumesFrom:[] ConsoleSize:[0 0] Annotations:map[] CapAdd:[] CapDrop:[] CgroupnsMode: DNS:[] DNSOptions:[] DNSSearch:[] ExtraHosts:[] GroupAdd:[] IpcMode: Cgroup: Links:[] OomScoreAdj:0 PidMode: Privileged:false PublishAllPorts:false ReadonlyRootfs:false SecurityOpt:[] StorageOpt:map[] Tmpfs:map[] UTSMode: UsernsMode: ShmSize:0 Sysctls:map[] Runtime: Isolation: Resources:{CPUShares:0 Memory:0 NanoCPUs:0 CgroupParent: BlkioWeight:0 BlkioWeightDevice:[] BlkioDeviceReadBps:[] BlkioDeviceWriteBps:[] BlkioDeviceReadIOps:[] BlkioDeviceWriteIOps:[] CPUPeriod:0 CPUQuota:0 CPURealtimePeriod:0 CPURealtimeRuntime:0 CpusetCpus: CpusetMems: Devices:[] DeviceCgroupRules:[] DeviceRequests:[] KernelMemory:0 KernelMemoryTCP:0 MemoryReservation:0 MemorySwap:0 MemorySwappiness:<nil> OomKillDisable:<nil> PidsLimit:<nil> Ulimits:[] CPUCount:0 CPUPercent:0 IOMaximumIOps:0 IOMaximumBandwidth:0} Mounts:[{Type:volume Source:act-toolcache Target:/opt/hostedtoolcache ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-Go-Tidy-e6b6673d6a01f3ca126b7774d6030573617f601e17901df8551bbe78f4abe956-env Target:/var/run/act ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-Go-Tidy-e6b6673d6a01f3ca126b7774d6030573617f601e17901df8551bbe78f4abe956 Target:/home/rminnich/go/src/github.com/u-root/gobusybox ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>}] MaskedPaths:[] ReadonlyPaths:[] Init:<nil>}
�[32m[Go/Tidy                      ] �[0m[DEBUG] input.NetworkAliases ==> [Tidy]
�[31m[Go/test-external-workspaces-1] �[0m[DEBUG] Common container.Config ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:false AttachStderr:false ExposedPorts:map[] Tty:true OpenStdin:false StdinOnce:false Env:[RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8] Cmd:[] Healthcheck:<nil> ArgsEscaped:false Image:catthehacker/ubuntu:act-latest Volumes:map[] WorkingDir:/home/rminnich/go/src/github.com/u-root/gobusybox Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]}
�[35m[Go/test-external-workspaces-2] �[0m[DEBUG] Common container.HostConfig ==> &{Binds:[/var/run/docker.sock:/var/run/docker.sock] ContainerIDFile: LogConfig:{Type: Config:map[]} NetworkMode:host PortBindings:map[] RestartPolicy:{Name: MaximumRetryCount:0} AutoRemove:false VolumeDriver: VolumesFrom:[] ConsoleSize:[0 0] Annotations:map[] CapAdd:[] CapDrop:[] CgroupnsMode: DNS:[] DNSOptions:[] DNSSearch:[] ExtraHosts:[] GroupAdd:[] IpcMode: Cgroup: Links:[] OomScoreAdj:0 PidMode: Privileged:false PublishAllPorts:false ReadonlyRootfs:false SecurityOpt:[] StorageOpt:map[] Tmpfs:map[] UTSMode: UsernsMode: ShmSize:0 Sysctls:map[] Runtime: Isolation: Resources:{CPUShares:0 Memory:0 NanoCPUs:0 CgroupParent: BlkioWeight:0 BlkioWeightDevice:[] BlkioDeviceReadBps:[] BlkioDeviceWriteBps:[] BlkioDeviceReadIOps:[] BlkioDeviceWriteIOps:[] CPUPeriod:0 CPUQuota:0 CPURealtimePeriod:0 CPURealtimeRuntime:0 CpusetCpus: CpusetMems: Devices:[] DeviceCgroupRules:[] DeviceRequests:[] KernelMemory:0 KernelMemoryTCP:0 MemoryReservation:0 MemorySwap:0 MemorySwappiness:<nil> OomKillDisable:<nil> PidsLimit:<nil> Ulimits:[] CPUCount:0 CPUPercent:0 IOMaximumIOps:0 IOMaximumBandwidth:0} Mounts:[{Type:volume Source:act-toolcache Target:/opt/hostedtoolcache ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-Go-test-external-workspaces-2-3b22eaa7916f9f3a3c73e9d15997091a5748af7ab44474be5e71af60c9076160-env Target:/var/run/act ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-Go-test-external-workspaces-2-3b22eaa7916f9f3a3c73e9d15997091a5748af7ab44474be5e71af60c9076160 Target:/home/rminnich/go/src/github.com/u-root/gobusybox ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>}] MaskedPaths:[] ReadonlyPaths:[] Init:<nil>}
�[35m[Go/test-external-workspaces-2] �[0m[DEBUG] input.NetworkAliases ==> [test-external-workspaces-2]
�[37m[Go/Unit Test-2               ] �[0m[DEBUG] Common container.HostConfig ==> &{Binds:[/var/run/docker.sock:/var/run/docker.sock] ContainerIDFile: LogConfig:{Type: Config:map[]} NetworkMode:host PortBindings:map[] RestartPolicy:{Name: MaximumRetryCount:0} AutoRemove:false VolumeDriver: VolumesFrom:[] ConsoleSize:[0 0] Annotations:map[] CapAdd:[] CapDrop:[] CgroupnsMode: DNS:[] DNSOptions:[] DNSSearch:[] ExtraHosts:[] GroupAdd:[] IpcMode: Cgroup: Links:[] OomScoreAdj:0 PidMode: Privileged:false PublishAllPorts:false ReadonlyRootfs:false SecurityOpt:[] StorageOpt:map[] Tmpfs:map[] UTSMode: UsernsMode: ShmSize:0 Sysctls:map[] Runtime: Isolation: Resources:{CPUShares:0 Memory:0 NanoCPUs:0 CgroupParent: BlkioWeight:0 BlkioWeightDevice:[] BlkioDeviceReadBps:[] BlkioDeviceWriteBps:[] BlkioDeviceReadIOps:[] BlkioDeviceWriteIOps:[] CPUPeriod:0 CPUQuota:0 CPURealtimePeriod:0 CPURealtimeRuntime:0 CpusetCpus: CpusetMems: Devices:[] DeviceCgroupRules:[] DeviceRequests:[] KernelMemory:0 KernelMemoryTCP:0 MemoryReservation:0 MemorySwap:0 MemorySwappiness:<nil> OomKillDisable:<nil> PidsLimit:<nil> Ulimits:[] CPUCount:0 CPUPercent:0 IOMaximumIOps:0 IOMaximumBandwidth:0} Mounts:[{Type:volume Source:act-toolcache Target:/opt/hostedtoolcache ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-Go-Unit-Test-2-e66dd5872f56cc0aa5578ae60eefa3fcf3d07f78ef7f64850e8183f2158d699a-env Target:/var/run/act ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-Go-Unit-Test-2-e66dd5872f56cc0aa5578ae60eefa3fcf3d07f78ef7f64850e8183f2158d699a Target:/home/rminnich/go/src/github.com/u-root/gobusybox ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>}] MaskedPaths:[] ReadonlyPaths:[] Init:<nil>}
�[37m[Go/Unit Test-2               ] �[0m[DEBUG] input.NetworkAliases ==> [Unit Test-2]
�[34m[Go/gobuilds-gopath-3         ] �[0m[DEBUG] Common container.Config ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:false AttachStderr:false ExposedPorts:map[] Tty:true OpenStdin:false StdinOnce:false Env:[RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8] Cmd:[] Healthcheck:<nil> ArgsEscaped:false Image:catthehacker/ubuntu:act-latest Volumes:map[] WorkingDir:/home/rminnich/go/src/github.com/u-root/gobusybox Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]}
�[32m[Go/gobuilds-3                ] �[0m[DEBUG] Common container.Config ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:false AttachStderr:false ExposedPorts:map[] Tty:true OpenStdin:false StdinOnce:false Env:[RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8] Cmd:[] Healthcheck:<nil> ArgsEscaped:false Image:catthehacker/ubuntu:act-latest Volumes:map[] WorkingDir:/home/rminnich/go/src/github.com/u-root/gobusybox Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]}
�[37m[Go/gobuilds-1                ] �[0m[DEBUG] Common container.HostConfig ==> &{Binds:[/var/run/docker.sock:/var/run/docker.sock] ContainerIDFile: LogConfig:{Type: Config:map[]} NetworkMode:host PortBindings:map[] RestartPolicy:{Name: MaximumRetryCount:0} AutoRemove:false VolumeDriver: VolumesFrom:[] ConsoleSize:[0 0] Annotations:map[] CapAdd:[] CapDrop:[] CgroupnsMode: DNS:[] DNSOptions:[] DNSSearch:[] ExtraHosts:[] GroupAdd:[] IpcMode: Cgroup: Links:[] OomScoreAdj:0 PidMode: Privileged:false PublishAllPorts:false ReadonlyRootfs:false SecurityOpt:[] StorageOpt:map[] Tmpfs:map[] UTSMode: UsernsMode: ShmSize:0 Sysctls:map[] Runtime: Isolation: Resources:{CPUShares:0 Memory:0 NanoCPUs:0 CgroupParent: BlkioWeight:0 BlkioWeightDevice:[] BlkioDeviceReadBps:[] BlkioDeviceWriteBps:[] BlkioDeviceReadIOps:[] BlkioDeviceWriteIOps:[] CPUPeriod:0 CPUQuota:0 CPURealtimePeriod:0 CPURealtimeRuntime:0 CpusetCpus: CpusetMems: Devices:[] DeviceCgroupRules:[] DeviceRequests:[] KernelMemory:0 KernelMemoryTCP:0 MemoryReservation:0 MemorySwap:0 MemorySwappiness:<nil> OomKillDisable:<nil> PidsLimit:<nil> Ulimits:[] CPUCount:0 CPUPercent:0 IOMaximumIOps:0 IOMaximumBandwidth:0} Mounts:[{Type:volume Source:act-toolcache Target:/opt/hostedtoolcache ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-Go-gobuilds-1-628f259b1399dc79ff3e4cd439fc9c74eb898c10d712d3eb1bddc5db9735d1e2-env Target:/var/run/act ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-Go-gobuilds-1-628f259b1399dc79ff3e4cd439fc9c74eb898c10d712d3eb1bddc5db9735d1e2 Target:/home/rminnich/go/src/github.com/u-root/gobusybox ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>}] MaskedPaths:[] ReadonlyPaths:[] Init:<nil>}
�[37m[Go/gobuilds-1                ] �[0m[DEBUG] input.NetworkAliases ==> [gobuilds-1]
�[31m[Go/test-external-gopath-3    ] �[0m[DEBUG] Common container.Config ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:false AttachStderr:false Exposed

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