[GH-ISSUE #2598] GitHub.com/u-root/gobusy test fails #1181

Open
opened 2026-03-01 21:49:30 +03:00 by kerem · 1 comment
Owner

Originally created by @rminnich on GitHub (Dec 31, 2024).
Original GitHub issue: https://github.com/nektos/act/issues/2598

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

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

Originally created by @rminnich on GitHub (Dec 31, 2024). Original GitHub issue: https://github.com/nektos/act/issues/2598 ### Bug report info ```plain text 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 ```sh 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 ```yml 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 ```sh Output is too long. ``` ### Additional information _No response_
Author
Owner

@rminnich commented on GitHub (Dec 31, 2024):

 act -P ubuntu:latest -v
[?2004l
DEBU[0000] Handling container host and socket           
DEBU[0000] Defaulting container socket to DOCKER_HOST   
INFO[0000] Using docker host 'unix:///var/run/docker.sock', and daemon socket 'unix:///var/run/docker.sock' 
DEBU[0000] Loading environment from /home/rminnich/go/src/github.com/u-root/gobusybox/.env 
DEBU[0000] Loading action inputs from /home/rminnich/go/src/github.com/u-root/gobusybox/.input 
DEBU[0000] Loading secrets from /home/rminnich/go/src/github.com/u-root/gobusybox/.secrets 
DEBU[0000] Loading vars from /home/rminnich/go/src/github.com/u-root/gobusybox/.vars 
DEBU[0000] Evaluated matrix inclusions: map[]           
DEBU[0000] Conditional GET for notices etag=d5d06b1e-995c-4313-9d71-8f192b18c27b 
DEBU[0000] Loading workflows from '/home/rminnich/go/src/github.com/u-root/gobusybox/.github/workflows' 
DEBU[0000] Loading workflows recursively                
DEBU[0000] Found workflow 'go.yml' in '/home/rminnich/go/src/github.com/u-root/gobusybox/.github/workflows/go.yml' 
DEBU[0000] Reading workflow '/home/rminnich/go/src/github.com/u-root/gobusybox/.github/workflows/go.yml' 
DEBU[0000] Preparing plan with all jobs                 
DEBU[0000] Using default workflow event: push           
DEBU[0000] Planning jobs for event: push                
DEBU[0000] gc: 2024-12-31 10:21:02.518666005 -0800 PST m=+0.009084961  module=artifactcache
DEBU[0000] Plan Stages: [0xc0004abc20]                  
DEBU[0000] Stages Runs: [test-external-gopath Tidy Unit Test gobuilds-gopath gobuilds test-external-workspaces] 
DEBU[0000] Job.Name: test-external-gopath               
DEBU[0000] Job.RawNeeds: {0 0    <nil> []    0 0}       
DEBU[0000] Job.RawRunsOn: {8 0 !!str ubuntu-latest  <nil> []    168 14} 
DEBU[0000] Job.Env: {0 0    <nil> []    0 0}            
DEBU[0000] Job.If: {0 0  success()  <nil> []    0 0}    
DEBU[0000] Job.Steps: actions/checkout@v4               
DEBU[0000] Job.Steps: Setup Go                          
DEBU[0000] Job.Steps: Test                              
DEBU[0000] Job.Steps: codecov/codecov-action@036b81c4b4e8314b391265bc226440f9e2117e2a 
DEBU[0000] Job.TimeoutMinutes:                          
DEBU[0000] Job.Services: map[]                          
DEBU[0000] Job.Strategy: &{false 0   {4 0 !!map   <nil> [0xc000352d20 0xc000352dc0]    171 9}} 
DEBU[0000] Job.RawContainer: {0 0    <nil> []    0 0}   
DEBU[0000] Job.Defaults.Run.Shell:                      
DEBU[0000] Job.Defaults.Run.WorkingDirectory:           
DEBU[0000] Job.Outputs: map[]                           
DEBU[0000] Job.Uses:                                    
DEBU[0000] Job.With: map[]                              
DEBU[0000] Job.Result:                                  
DEBU[0000] Job.Strategy.FailFast: false                 
DEBU[0000] Job.Strategy.MaxParallel: 0                  
DEBU[0000] Job.Strategy.FailFastString:                 
DEBU[0000] Job.Strategy.MaxParallelString:              
DEBU[0000] Job.Strategy.RawMatrix: {4 0 !!map   <nil> [0xc000352d20 0xc000352dc0]    171 9} 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000]                                              
DEBU[0000] Job Matrices: [map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]] 
DEBU[0000] Runner Matrices: map[]                       
DEBU[0000] Final matrix after applying user inclusions '[map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]]' 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] Stages Runs: [test-external-gopath Tidy Unit Test gobuilds-gopath gobuilds test-external-workspaces] 
DEBU[0000] Job.Name: Tidy                               
DEBU[0000] Job.RawNeeds: {0 0    <nil> []    0 0}       
DEBU[0000] Job.RawRunsOn: {8 0 !!str ubuntu-latest  <nil> []    20 14} 
DEBU[0000] Job.Env: {0 0    <nil> []    0 0}            
DEBU[0000] Job.If: {0 0  success()  <nil> []    0 0}    
DEBU[0000] Job.Steps: actions/checkout@v4               
DEBU[0000] Job.Steps: Setup Go                          
DEBU[0000] Job.Steps: gofmt                             
DEBU[0000] Job.Steps: go mod tidy                       
DEBU[0000] Job.TimeoutMinutes:                          
DEBU[0000] Job.Services: map[]                          
DEBU[0000] Job.Strategy: <nil>                          
DEBU[0000] Job.RawContainer: {0 0    <nil> []    0 0}   
DEBU[0000] Job.Defaults.Run.Shell:                      
DEBU[0000] Job.Defaults.Run.WorkingDirectory:           
DEBU[0000] Job.Outputs: map[]                           
DEBU[0000] Job.Uses:                                    
DEBU[0000] Job.With: map[]                              
DEBU[0000] Job.Result:                                  
DEBU[0000] Empty Strategy, matrixes=[map[]]             
DEBU[0000] Job Matrices: [map[]]                        
DEBU[0000] Runner Matrices: map[]                       
DEBU[0000] Final matrix after applying user inclusions '[map[]]' 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] Stages Runs: [test-external-gopath Tidy Unit Test gobuilds-gopath gobuilds test-external-workspaces] 
DEBU[0000] Job.Name: Unit Test                          
DEBU[0000] Job.RawNeeds: {0 0    <nil> []    0 0}       
DEBU[0000] Job.RawRunsOn: {8 0 !!str ubuntu-latest  <nil> []    45 14} 
DEBU[0000] Job.Env: {0 0    <nil> []    0 0}            
DEBU[0000] Job.If: {0 0  success()  <nil> []    0 0}    
DEBU[0000] Job.Steps: actions/checkout@v4               
DEBU[0000] Job.Steps: Setup Go                          
DEBU[0000] Job.Steps: Test                              
DEBU[0000] Job.Steps: codecov/codecov-action@036b81c4b4e8314b391265bc226440f9e2117e2a 
DEBU[0000] Job.TimeoutMinutes:                          
DEBU[0000] Job.Services: map[]                          
DEBU[0000] Job.Strategy: &{false 0   {4 0 !!map   <nil> [0xc000340820 0xc0003408c0]    48 9}} 
DEBU[0000] Job.RawContainer: {0 0    <nil> []    0 0}   
DEBU[0000] Job.Defaults.Run.Shell:                      
DEBU[0000] Job.Defaults.Run.WorkingDirectory:           
DEBU[0000] Job.Outputs: map[]                           
DEBU[0000] Job.Uses:                                    
DEBU[0000] Job.With: map[]                              
DEBU[0000] Job.Result:                                  
DEBU[0000] Job.Strategy.FailFast: false                 
DEBU[0000] Job.Strategy.MaxParallel: 0                  
DEBU[0000] Job.Strategy.FailFastString:                 
DEBU[0000] Job.Strategy.MaxParallelString:              
DEBU[0000] Job.Strategy.RawMatrix: {4 0 !!map   <nil> [0xc000340820 0xc0003408c0]    48 9} 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000]                                              
DEBU[0000] Job Matrices: [map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]] 
DEBU[0000] Runner Matrices: map[]                       
DEBU[0000] Final matrix after applying user inclusions '[map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]]' 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] Stages Runs: [test-external-gopath Tidy Unit Test gobuilds-gopath gobuilds test-external-workspaces] 
DEBU[0000] Job.Name: gobuilds-gopath                    
DEBU[0000] Job.RawNeeds: {0 0    <nil> []    0 0}       
DEBU[0000] Job.RawRunsOn: {8 0 !!str ubuntu-latest  <nil> []    80 14} 
DEBU[0000] Job.Env: {0 0    <nil> []    0 0}            
DEBU[0000] Job.If: {0 0  success()  <nil> []    0 0}    
DEBU[0000] Job.Steps: actions/checkout@v4               
DEBU[0000] Job.Steps: Setup Go                          
DEBU[0000] Job.Steps: Test                              
DEBU[0000] Job.Steps: codecov/codecov-action@036b81c4b4e8314b391265bc226440f9e2117e2a 
DEBU[0000] Job.TimeoutMinutes:                          
DEBU[0000] Job.Services: map[]                          
DEBU[0000] Job.Strategy: &{false 0   {4 0 !!map   <nil> [0xc000346b40 0xc000346be0]    83 9}} 
DEBU[0000] Job.RawContainer: {0 0    <nil> []    0 0}   
DEBU[0000] Job.Defaults.Run.Shell:                      
DEBU[0000] Job.Defaults.Run.WorkingDirectory:           
DEBU[0000] Job.Outputs: map[]                           
DEBU[0000] Job.Uses:                                    
DEBU[0000] Job.With: map[]                              
DEBU[0000] Job.Result:                                  
DEBU[0000] Job.Strategy.FailFast: false                 
DEBU[0000] Job.Strategy.MaxParallel: 0                  
DEBU[0000] Job.Strategy.FailFastString:                 
DEBU[0000] Job.Strategy.MaxParallelString:              
DEBU[0000] Job.Strategy.RawMatrix: {4 0 !!map   <nil> [0xc000346b40 0xc000346be0]    83 9} 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000]                                              
DEBU[0000] Job Matrices: [map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]] 
DEBU[0000] Runner Matrices: map[]                       
DEBU[0000] Final matrix after applying user inclusions '[map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]]' 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] Stages Runs: [test-external-gopath Tidy Unit Test gobuilds-gopath gobuilds test-external-workspaces] 
DEBU[0000] Job.Name: gobuilds                           
DEBU[0000] Job.RawNeeds: {0 0    <nil> []    0 0}       
DEBU[0000] Job.RawRunsOn: {8 0 !!str ubuntu-latest  <nil> []    112 14} 
DEBU[0000] Job.Env: {0 0    <nil> []    0 0}            
DEBU[0000] Job.If: {0 0  success()  <nil> []    0 0}    
DEBU[0000] Job.Steps: actions/checkout@v4               
DEBU[0000] Job.Steps: Setup Go                          
DEBU[0000] Job.Steps: Test                              
DEBU[0000] Job.Steps: codecov/codecov-action@036b81c4b4e8314b391265bc226440f9e2117e2a 
DEBU[0000] Job.TimeoutMinutes:                          
DEBU[0000] Job.Services: map[]                          
DEBU[0000] Job.Strategy: &{false 0   {4 0 !!map   <nil> [0xc000348e60 0xc000348f00]    115 9}} 
DEBU[0000] Job.RawContainer: {0 0    <nil> []    0 0}   
DEBU[0000] Job.Defaults.Run.Shell:                      
DEBU[0000] Job.Defaults.Run.WorkingDirectory:           
DEBU[0000] Job.Outputs: map[]                           
DEBU[0000] Job.Uses:                                    
DEBU[0000] Job.With: map[]                              
DEBU[0000] Job.Result:                                  
DEBU[0000] Job.Strategy.FailFast: false                 
DEBU[0000] Job.Strategy.MaxParallel: 0                  
DEBU[0000] Job.Strategy.FailFastString:                 
DEBU[0000] Job.Strategy.MaxParallelString:              
DEBU[0000] Job.Strategy.RawMatrix: {4 0 !!map   <nil> [0xc000348e60 0xc000348f00]    115 9} 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000]                                              
DEBU[0000] Job Matrices: [map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]] 
DEBU[0000] Runner Matrices: map[]                       
DEBU[0000] Final matrix after applying user inclusions '[map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]]' 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] Stages Runs: [test-external-gopath Tidy Unit Test gobuilds-gopath gobuilds test-external-workspaces] 
DEBU[0000] Job.Name: test-external-workspaces           
DEBU[0000] Job.RawNeeds: {0 0    <nil> []    0 0}       
DEBU[0000] Job.RawRunsOn: {8 0 !!str ubuntu-latest  <nil> []    140 14} 
DEBU[0000] Job.Env: {0 0    <nil> []    0 0}            
DEBU[0000] Job.If: {0 0  success()  <nil> []    0 0}    
DEBU[0000] Job.Steps: actions/checkout@v4               
DEBU[0000] Job.Steps: Setup Go                          
DEBU[0000] Job.Steps: Test                              
DEBU[0000] Job.Steps: codecov/codecov-action@036b81c4b4e8314b391265bc226440f9e2117e2a 
DEBU[0000] Job.TimeoutMinutes:                          
DEBU[0000] Job.Services: map[]                          
DEBU[0000] Job.Strategy: &{false 0   {4 0 !!map   <nil> [0xc00034edc0 0xc00034ee60]    143 9}} 
DEBU[0000] Job.RawContainer: {0 0    <nil> []    0 0}   
DEBU[0000] Job.Defaults.Run.Shell:                      
DEBU[0000] Job.Defaults.Run.WorkingDirectory:           
DEBU[0000] Job.Outputs: map[]                           
DEBU[0000] Job.Uses:                                    
DEBU[0000] Job.With: map[]                              
DEBU[0000] Job.Result:                                  
DEBU[0000] Job.Strategy.FailFast: false                 
DEBU[0000] Job.Strategy.MaxParallel: 0                  
DEBU[0000] Job.Strategy.FailFastString:                 
DEBU[0000] Job.Strategy.MaxParallelString:              
DEBU[0000] Job.Strategy.RawMatrix: {4 0 !!map   <nil> [0xc00034edc0 0xc00034ee60]    143 9} 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000]                                              
DEBU[0000] Job Matrices: [map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]] 
DEBU[0000] Runner Matrices: map[]                       
DEBU[0000] Final matrix after applying user inclusions '[map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]]' 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] Loading revision from git directory          
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 
DEBU[0000] Detected CPUs: 12                            
[Go/test-external-gopath-1    ] [DEBUG] evaluating expression 'success()'
[Go/test-external-gopath-1    ] [DEBUG] expression 'success()' evaluated to 'true'
[Go/test-external-gopath-1    ] 🚀  Start image=catthehacker/ubuntu:act-latest
[Go/Tidy                      ] [DEBUG] evaluating expression 'success()'
[Go/gobuilds-gopath-1         ] [DEBUG] evaluating expression 'success()'
[Go/Tidy                      ] [DEBUG] expression 'success()' evaluated to 'true'
[Go/gobuilds-gopath-1         ] [DEBUG] expression 'success()' evaluated to 'true'
[Go/Tidy                      ] 🚀  Start image=catthehacker/ubuntu:act-latest
[Go/gobuilds-gopath-1         ] 🚀  Start image=catthehacker/ubuntu:act-latest
[Go/test-external-workspaces-1] [DEBUG] evaluating expression 'success()'
[Go/test-external-workspaces-1] [DEBUG] expression 'success()' evaluated to 'true'
[Go/gobuilds-1                ] [DEBUG] evaluating expression 'success()'
[Go/test-external-workspaces-1] 🚀  Start image=catthehacker/ubuntu:act-latest
[Go/gobuilds-1                ] [DEBUG] expression 'success()' evaluated to 'true'
[Go/gobuilds-1                ] 🚀  Start image=catthehacker/ubuntu:act-latest
[Go/test-external-gopath-2    ] [DEBUG] evaluating expression 'success()'
[Go/Unit Test-1               ] [DEBUG] evaluating expression 'success()'
[Go/Unit Test-1               ] [DEBUG] expression 'success()' evaluated to 'true'
[Go/Unit Test-1               ] 🚀  Start image=catthehacker/ubuntu:act-latest
[Go/test-external-gopath-2    ] [DEBUG] expression 'success()' evaluated to 'true'
[Go/gobuilds-gopath-2         ] [DEBUG] evaluating expression 'success()'
[Go/test-external-gopath-2    ] 🚀  Start image=catthehacker/ubuntu:act-latest
[Go/gobuilds-2                ] [DEBUG] evaluating expression 'success()'
[Go/gobuilds-gopath-2         ] [DEBUG] expression 'success()' evaluated to 'true'
[Go/gobuilds-2                ] [DEBUG] expression 'success()' evaluated to 'true'
[Go/gobuilds-2                ] 🚀  Start image=catthehacker/ubuntu:act-latest
[Go/gobuilds-gopath-2         ] 🚀  Start image=catthehacker/ubuntu:act-latest
[Go/test-external-workspaces-2] [DEBUG] evaluating expression 'success()'
[Go/test-external-workspaces-2] [DEBUG] expression 'success()' evaluated to 'true'
[Go/test-external-workspaces-2] 🚀  Start image=catthehacker/ubuntu:act-latest
[Go/test-external-gopath-3    ] [DEBUG] evaluating expression 'success()'
[Go/test-external-gopath-3    ] [DEBUG] expression 'success()' evaluated to 'true'
[Go/test-external-gopath-3    ] 🚀  Start image=catthehacker/ubuntu:act-latest
[Go/Unit Test-2               ] [DEBUG] evaluating expression 'success()'
[Go/Unit Test-2               ] [DEBUG] expression 'success()' evaluated to 'true'
[Go/Unit Test-3               ] [DEBUG] evaluating expression 'success()'
[Go/Unit Test-2               ] 🚀  Start image=catthehacker/ubuntu:act-latest
[Go/Unit Test-3               ] [DEBUG] expression 'success()' evaluated to 'true'
[Go/Unit Test-3               ] 🚀  Start image=catthehacker/ubuntu:act-latest
[Go/gobuilds-gopath-3         ] [DEBUG] evaluating expression 'success()'
[Go/gobuilds-gopath-3         ] [DEBUG] expression 'success()' evaluated to 'true'
[Go/test-external-workspaces-3] [DEBUG] evaluating expression 'success()'
[Go/gobuilds-gopath-3         ] 🚀  Start image=catthehacker/ubuntu:act-latest
[Go/test-external-workspaces-3] [DEBUG] expression 'success()' evaluated to 'true'
[Go/gobuilds-3                ] [DEBUG] evaluating expression 'success()'
[Go/test-external-workspaces-3] 🚀  Start image=catthehacker/ubuntu:act-latest
[Go/gobuilds-3                ] [DEBUG] expression 'success()' evaluated to 'true'
[Go/gobuilds-3                ] 🚀  Start image=catthehacker/ubuntu:act-latest
DEBU[0000] Parallel tasks (0) below minimum, setting to 1 
[Go/gobuilds-2                ]   🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
[Go/gobuilds-2                ] [DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
[Go/gobuilds-2                ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
DEBU[0000] Parallel tasks (0) below minimum, setting to 1 
[Go/test-external-workspaces-1]   🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
[Go/test-external-workspaces-1] [DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
DEBU[0000] Parallel tasks (0) below minimum, setting to 1 
[Go/test-external-workspaces-1] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
DEBU[0000] Parallel tasks (0) below minimum, setting to 1 
[Go/test-external-workspaces-2]   🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
[Go/test-external-workspaces-2] [DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
[Go/gobuilds-gopath-2         ]   🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
DEBU[0000] Parallel tasks (0) below minimum, setting to 1 
DEBU[0000] Parallel tasks (0) below minimum, setting to 1 
DEBU[0000] Parallel tasks (0) below minimum, setting to 1 
[Go/gobuilds-1                ]   🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
[Go/Tidy                      ]   🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
[Go/gobuilds-1                ] [DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
[Go/Tidy                      ] [DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
[Go/test-external-gopath-3    ]   🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
[Go/gobuilds-1                ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
DEBU[0000] Parallel tasks (0) below minimum, setting to 1 
[Go/test-external-gopath-3    ] [DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
DEBU[0000] Parallel tasks (0) below minimum, setting to 1 
[Go/Unit Test-1               ]   🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
[Go/Unit Test-1               ] [DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
[Go/Unit Test-1               ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
[Go/Unit Test-2               ]   🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
[Go/Unit Test-2               ] [DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
DEBU[0000] Parallel tasks (0) below minimum, setting to 1 
[Go/Unit Test-2               ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
[Go/test-external-gopath-2    ]   🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
[Go/test-external-gopath-2    ] [DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
[Go/gobuilds-gopath-2         ] [DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
[Go/gobuilds-gopath-2         ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
DEBU[0000] Parallel tasks (0) below minimum, setting to 1 
[Go/gobuilds-gopath-1         ]   🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
[Go/gobuilds-gopath-1         ] [DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
[Go/Tidy                      ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
[Go/gobuilds-gopath-1         ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
[Go/gobuilds-2                ] using DockerAuthConfig authentication for docker pull
DEBU[0000] Parallel tasks (0) below minimum, setting to 1 
[Go/test-external-workspaces-3]   🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
[Go/Unit Test-1               ] using DockerAuthConfig authentication for docker pull
[Go/test-external-workspaces-3] [DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
DEBU[0000] Parallel tasks (0) below minimum, setting to 1 
[Go/test-external-workspaces-3] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
[Go/test-external-gopath-1    ]   🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
[Go/test-external-gopath-1    ] [DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
[Go/test-external-gopath-3    ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
[Go/test-external-gopath-1    ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
[Go/test-external-workspaces-1] using DockerAuthConfig authentication for docker pull
[Go/test-external-gopath-2    ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
[Go/test-external-gopath-3    ] using DockerAuthConfig authentication for docker pull
[Go/Unit Test-2               ] using DockerAuthConfig authentication for docker pull
[Go/gobuilds-gopath-2         ] using DockerAuthConfig authentication for docker pull
[Go/test-external-workspaces-3] using DockerAuthConfig authentication for docker pull
[Go/test-external-workspaces-2] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
DEBU[0000] Parallel tasks (0) below minimum, setting to 1 
[Go/Unit Test-3               ]   🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
[Go/Tidy                      ] using DockerAuthConfig authentication for docker pull
[Go/test-external-gopath-2    ] using DockerAuthConfig authentication for docker pull
[Go/Unit Test-3               ] [DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
[Go/Unit Test-3               ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
DEBU[0000] Parallel tasks (0) below minimum, setting to 1 
[Go/gobuilds-gopath-3         ]   🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
[Go/gobuilds-gopath-3         ] [DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
[Go/gobuilds-gopath-3         ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
[Go/gobuilds-gopath-1         ] using DockerAuthConfig authentication for docker pull
DEBU[0000] Parallel tasks (0) below minimum, setting to 1 
[Go/gobuilds-3                ]   🐳  docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
[Go/gobuilds-3                ] [DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
[Go/gobuilds-1                ] using DockerAuthConfig authentication for docker pull
[Go/gobuilds-3                ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
[Go/test-external-gopath-1    ] using DockerAuthConfig authentication for docker pull
[Go/test-external-workspaces-2] using DockerAuthConfig authentication for docker pull
[Go/Unit Test-3               ] using DockerAuthConfig authentication for docker pull
[Go/gobuilds-gopath-3         ] using DockerAuthConfig authentication for docker pull
[Go/gobuilds-3                ] using DockerAuthConfig authentication for docker pull
DEBU[0000] Saving notices etag=d5d06b1e-995c-4313-9d71-8f192b18c27b 
DEBU[0000] No new notices                               
[Go/Unit Test-3               ] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest
[Go/Tidy                      ] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest
[Go/gobuilds-2                ] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest
[Go/gobuilds-1                ] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest
[Go/test-external-workspaces-1] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest
[Go/gobuilds-gopath-1         ] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest
[Go/gobuilds-3                ] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest
[Go/gobuilds-gopath-3         ] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest
[Go/test-external-gopath-1    ] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest
[Go/Unit Test-2               ] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest
[Go/test-external-gopath-3    ] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest
[Go/test-external-workspaces-2] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest
[Go/Tidy                      ] [DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: 
[Go/Tidy                      ] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
[Go/gobuilds-2                ] [DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: 
[Go/gobuilds-2                ] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
[Go/test-external-workspaces-1] [DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: 
[Go/test-external-workspaces-1] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
[Go/gobuilds-gopath-1         ] [DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: 
[Go/gobuilds-gopath-1         ] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
[Go/gobuilds-gopath-3         ] [DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: 
[Go/gobuilds-gopath-3         ] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
[Go/Unit Test-2               ] [DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: 
[Go/Unit Test-2               ] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
[Go/gobuilds-3                ] [DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: 
[Go/gobuilds-3                ] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
[Go/test-external-gopath-1    ] [DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: 
[Go/test-external-gopath-1    ] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
[Go/gobuilds-1                ] [DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: 
[Go/gobuilds-1                ] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
[Go/Unit Test-3               ] [DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: 
[Go/Unit Test-3               ] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
[Go/test-external-gopath-3    ] [DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: 
[Go/test-external-gopath-3    ] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
[Go/test-external-workspaces-2] [DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: 
[Go/test-external-workspaces-2] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: 
DEBU[0001] Parallel tasks (0) below minimum, setting to 1 
[Go/Tidy                      ]   🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
DEBU[0001] Parallel tasks (0) below minimum, setting to 1 
[Go/gobuilds-2                ]   🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
DEBU[0001] Parallel tasks (0) below minimum, setting to 1 
[Go/Unit Test-2               ]   🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
DEBU[0001] Parallel tasks (0) below minimum, setting to 1 
[Go/gobuilds-3                ]   🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
DEBU[0001] Parallel tasks (0) below minimum, setting to 1 
[Go/test-external-workspaces-2]   🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
DEBU[0001] Parallel tasks (0) below minimum, setting to 1 
[Go/gobuilds-gopath-3         ]   🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
DEBU[0001] Parallel tasks (0) below minimum, setting to 1 
[Go/gobuilds-1                ]   🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
DEBU[0001] Parallel tasks (0) below minimum, setting to 1 
[Go/Unit Test-3               ]   🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
DEBU[0001] Parallel tasks (0) below minimum, setting to 1 
[Go/test-external-workspaces-1]   🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
DEBU[0001] Parallel tasks (0) below minimum, setting to 1 
DEBU[0001] Parallel tasks (0) below minimum, setting to 1 
[Go/test-external-gopath-3    ]   🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[Go/gobuilds-gopath-1         ]   🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
DEBU[0001] Parallel tasks (0) below minimum, setting to 1 
[Go/test-external-gopath-1    ]   🐳  docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[Go/gobuilds-2                ] [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:[]}
[Go/Tidy                      ] [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:[]}
[Go/gobuilds-2                ] [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>}
[Go/gobuilds-2                ] [DEBUG] input.NetworkAliases ==> [gobuilds-2]
[Go/test-external-workspaces-2] [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:[]}
[Go/Unit Test-2               ] [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:[]}
[Go/gobuilds-1                ] [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:[]}
[Go/Unit Test-3               ] [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:[]}
[Go/Tidy                      ] [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>}
[Go/Tidy                      ] [DEBUG] input.NetworkAliases ==> [Tidy]
[Go/test-external-workspaces-1] [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:[]}
[Go/test-external-workspaces-2] [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>}
[Go/test-external-workspaces-2] [DEBUG] input.NetworkAliases ==> [test-external-workspaces-2]
[Go/Unit Test-2               ] [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>}
[Go/Unit Test-2               ] [DEBUG] input.NetworkAliases ==> [Unit Test-2]
[Go/gobuilds-gopath-3         ] [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:[]}
[Go/gobuilds-3                ] [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:[]}
[Go/gobuilds-1                ] [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>}
[Go/gobuilds-1                ] [DEBUG] input.NetworkAliases ==> [gobuilds-1]
[Go/test-external-gopath-3    ] [DEBUG] Common container.Config ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:false AttachStderr:false Exposed
<!-- gh-comment-id:2566654575 --> @rminnich commented on GitHub (Dec 31, 2024): ``` act -P ubuntu:latest -v [?2004l DEBU[0000] Handling container host and socket DEBU[0000] Defaulting container socket to DOCKER_HOST INFO[0000] Using docker host 'unix:///var/run/docker.sock', and daemon socket 'unix:///var/run/docker.sock' DEBU[0000] Loading environment from /home/rminnich/go/src/github.com/u-root/gobusybox/.env DEBU[0000] Loading action inputs from /home/rminnich/go/src/github.com/u-root/gobusybox/.input DEBU[0000] Loading secrets from /home/rminnich/go/src/github.com/u-root/gobusybox/.secrets DEBU[0000] Loading vars from /home/rminnich/go/src/github.com/u-root/gobusybox/.vars DEBU[0000] Evaluated matrix inclusions: map[] DEBU[0000] Conditional GET for notices etag=d5d06b1e-995c-4313-9d71-8f192b18c27b DEBU[0000] Loading workflows from '/home/rminnich/go/src/github.com/u-root/gobusybox/.github/workflows' DEBU[0000] Loading workflows recursively DEBU[0000] Found workflow 'go.yml' in '/home/rminnich/go/src/github.com/u-root/gobusybox/.github/workflows/go.yml' DEBU[0000] Reading workflow '/home/rminnich/go/src/github.com/u-root/gobusybox/.github/workflows/go.yml' DEBU[0000] Preparing plan with all jobs DEBU[0000] Using default workflow event: push DEBU[0000] Planning jobs for event: push DEBU[0000] gc: 2024-12-31 10:21:02.518666005 -0800 PST m=+0.009084961 module=artifactcache DEBU[0000] Plan Stages: [0xc0004abc20] DEBU[0000] Stages Runs: [test-external-gopath Tidy Unit Test gobuilds-gopath gobuilds test-external-workspaces] DEBU[0000] Job.Name: test-external-gopath DEBU[0000] Job.RawNeeds: {0 0 <nil> [] 0 0} DEBU[0000] Job.RawRunsOn: {8 0 !!str ubuntu-latest <nil> [] 168 14} DEBU[0000] Job.Env: {0 0 <nil> [] 0 0} DEBU[0000] Job.If: {0 0 success() <nil> [] 0 0} DEBU[0000] Job.Steps: actions/checkout@v4 DEBU[0000] Job.Steps: Setup Go DEBU[0000] Job.Steps: Test DEBU[0000] Job.Steps: codecov/codecov-action@036b81c4b4e8314b391265bc226440f9e2117e2a DEBU[0000] Job.TimeoutMinutes: DEBU[0000] Job.Services: map[] DEBU[0000] Job.Strategy: &{false 0 {4 0 !!map <nil> [0xc000352d20 0xc000352dc0] 171 9}} DEBU[0000] Job.RawContainer: {0 0 <nil> [] 0 0} DEBU[0000] Job.Defaults.Run.Shell: DEBU[0000] Job.Defaults.Run.WorkingDirectory: DEBU[0000] Job.Outputs: map[] DEBU[0000] Job.Uses: DEBU[0000] Job.With: map[] DEBU[0000] Job.Result: DEBU[0000] Job.Strategy.FailFast: false DEBU[0000] Job.Strategy.MaxParallel: 0 DEBU[0000] Job.Strategy.FailFastString: DEBU[0000] Job.Strategy.MaxParallelString: DEBU[0000] Job.Strategy.RawMatrix: {4 0 !!map <nil> [0xc000352d20 0xc000352dc0] 171 9} DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] DEBU[0000] Job Matrices: [map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]] DEBU[0000] Runner Matrices: map[] DEBU[0000] Final matrix after applying user inclusions '[map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]]' DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] Stages Runs: [test-external-gopath Tidy Unit Test gobuilds-gopath gobuilds test-external-workspaces] DEBU[0000] Job.Name: Tidy DEBU[0000] Job.RawNeeds: {0 0 <nil> [] 0 0} DEBU[0000] Job.RawRunsOn: {8 0 !!str ubuntu-latest <nil> [] 20 14} DEBU[0000] Job.Env: {0 0 <nil> [] 0 0} DEBU[0000] Job.If: {0 0 success() <nil> [] 0 0} DEBU[0000] Job.Steps: actions/checkout@v4 DEBU[0000] Job.Steps: Setup Go DEBU[0000] Job.Steps: gofmt DEBU[0000] Job.Steps: go mod tidy DEBU[0000] Job.TimeoutMinutes: DEBU[0000] Job.Services: map[] DEBU[0000] Job.Strategy: <nil> DEBU[0000] Job.RawContainer: {0 0 <nil> [] 0 0} DEBU[0000] Job.Defaults.Run.Shell: DEBU[0000] Job.Defaults.Run.WorkingDirectory: DEBU[0000] Job.Outputs: map[] DEBU[0000] Job.Uses: DEBU[0000] Job.With: map[] DEBU[0000] Job.Result: DEBU[0000] Empty Strategy, matrixes=[map[]] DEBU[0000] Job Matrices: [map[]] DEBU[0000] Runner Matrices: map[] DEBU[0000] Final matrix after applying user inclusions '[map[]]' DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] Stages Runs: [test-external-gopath Tidy Unit Test gobuilds-gopath gobuilds test-external-workspaces] DEBU[0000] Job.Name: Unit Test DEBU[0000] Job.RawNeeds: {0 0 <nil> [] 0 0} DEBU[0000] Job.RawRunsOn: {8 0 !!str ubuntu-latest <nil> [] 45 14} DEBU[0000] Job.Env: {0 0 <nil> [] 0 0} DEBU[0000] Job.If: {0 0 success() <nil> [] 0 0} DEBU[0000] Job.Steps: actions/checkout@v4 DEBU[0000] Job.Steps: Setup Go DEBU[0000] Job.Steps: Test DEBU[0000] Job.Steps: codecov/codecov-action@036b81c4b4e8314b391265bc226440f9e2117e2a DEBU[0000] Job.TimeoutMinutes: DEBU[0000] Job.Services: map[] DEBU[0000] Job.Strategy: &{false 0 {4 0 !!map <nil> [0xc000340820 0xc0003408c0] 48 9}} DEBU[0000] Job.RawContainer: {0 0 <nil> [] 0 0} DEBU[0000] Job.Defaults.Run.Shell: DEBU[0000] Job.Defaults.Run.WorkingDirectory: DEBU[0000] Job.Outputs: map[] DEBU[0000] Job.Uses: DEBU[0000] Job.With: map[] DEBU[0000] Job.Result: DEBU[0000] Job.Strategy.FailFast: false DEBU[0000] Job.Strategy.MaxParallel: 0 DEBU[0000] Job.Strategy.FailFastString: DEBU[0000] Job.Strategy.MaxParallelString: DEBU[0000] Job.Strategy.RawMatrix: {4 0 !!map <nil> [0xc000340820 0xc0003408c0] 48 9} DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] DEBU[0000] Job Matrices: [map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]] DEBU[0000] Runner Matrices: map[] DEBU[0000] Final matrix after applying user inclusions '[map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]]' DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] Stages Runs: [test-external-gopath Tidy Unit Test gobuilds-gopath gobuilds test-external-workspaces] DEBU[0000] Job.Name: gobuilds-gopath DEBU[0000] Job.RawNeeds: {0 0 <nil> [] 0 0} DEBU[0000] Job.RawRunsOn: {8 0 !!str ubuntu-latest <nil> [] 80 14} DEBU[0000] Job.Env: {0 0 <nil> [] 0 0} DEBU[0000] Job.If: {0 0 success() <nil> [] 0 0} DEBU[0000] Job.Steps: actions/checkout@v4 DEBU[0000] Job.Steps: Setup Go DEBU[0000] Job.Steps: Test DEBU[0000] Job.Steps: codecov/codecov-action@036b81c4b4e8314b391265bc226440f9e2117e2a DEBU[0000] Job.TimeoutMinutes: DEBU[0000] Job.Services: map[] DEBU[0000] Job.Strategy: &{false 0 {4 0 !!map <nil> [0xc000346b40 0xc000346be0] 83 9}} DEBU[0000] Job.RawContainer: {0 0 <nil> [] 0 0} DEBU[0000] Job.Defaults.Run.Shell: DEBU[0000] Job.Defaults.Run.WorkingDirectory: DEBU[0000] Job.Outputs: map[] DEBU[0000] Job.Uses: DEBU[0000] Job.With: map[] DEBU[0000] Job.Result: DEBU[0000] Job.Strategy.FailFast: false DEBU[0000] Job.Strategy.MaxParallel: 0 DEBU[0000] Job.Strategy.FailFastString: DEBU[0000] Job.Strategy.MaxParallelString: DEBU[0000] Job.Strategy.RawMatrix: {4 0 !!map <nil> [0xc000346b40 0xc000346be0] 83 9} DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] DEBU[0000] Job Matrices: [map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]] DEBU[0000] Runner Matrices: map[] DEBU[0000] Final matrix after applying user inclusions '[map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]]' DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] Stages Runs: [test-external-gopath Tidy Unit Test gobuilds-gopath gobuilds test-external-workspaces] DEBU[0000] Job.Name: gobuilds DEBU[0000] Job.RawNeeds: {0 0 <nil> [] 0 0} DEBU[0000] Job.RawRunsOn: {8 0 !!str ubuntu-latest <nil> [] 112 14} DEBU[0000] Job.Env: {0 0 <nil> [] 0 0} DEBU[0000] Job.If: {0 0 success() <nil> [] 0 0} DEBU[0000] Job.Steps: actions/checkout@v4 DEBU[0000] Job.Steps: Setup Go DEBU[0000] Job.Steps: Test DEBU[0000] Job.Steps: codecov/codecov-action@036b81c4b4e8314b391265bc226440f9e2117e2a DEBU[0000] Job.TimeoutMinutes: DEBU[0000] Job.Services: map[] DEBU[0000] Job.Strategy: &{false 0 {4 0 !!map <nil> [0xc000348e60 0xc000348f00] 115 9}} DEBU[0000] Job.RawContainer: {0 0 <nil> [] 0 0} DEBU[0000] Job.Defaults.Run.Shell: DEBU[0000] Job.Defaults.Run.WorkingDirectory: DEBU[0000] Job.Outputs: map[] DEBU[0000] Job.Uses: DEBU[0000] Job.With: map[] DEBU[0000] Job.Result: DEBU[0000] Job.Strategy.FailFast: false DEBU[0000] Job.Strategy.MaxParallel: 0 DEBU[0000] Job.Strategy.FailFastString: DEBU[0000] Job.Strategy.MaxParallelString: DEBU[0000] Job.Strategy.RawMatrix: {4 0 !!map <nil> [0xc000348e60 0xc000348f00] 115 9} DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] DEBU[0000] Job Matrices: [map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]] DEBU[0000] Runner Matrices: map[] DEBU[0000] Final matrix after applying user inclusions '[map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]]' DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] Stages Runs: [test-external-gopath Tidy Unit Test gobuilds-gopath gobuilds test-external-workspaces] DEBU[0000] Job.Name: test-external-workspaces DEBU[0000] Job.RawNeeds: {0 0 <nil> [] 0 0} DEBU[0000] Job.RawRunsOn: {8 0 !!str ubuntu-latest <nil> [] 140 14} DEBU[0000] Job.Env: {0 0 <nil> [] 0 0} DEBU[0000] Job.If: {0 0 success() <nil> [] 0 0} DEBU[0000] Job.Steps: actions/checkout@v4 DEBU[0000] Job.Steps: Setup Go DEBU[0000] Job.Steps: Test DEBU[0000] Job.Steps: codecov/codecov-action@036b81c4b4e8314b391265bc226440f9e2117e2a DEBU[0000] Job.TimeoutMinutes: DEBU[0000] Job.Services: map[] DEBU[0000] Job.Strategy: &{false 0 {4 0 !!map <nil> [0xc00034edc0 0xc00034ee60] 143 9}} DEBU[0000] Job.RawContainer: {0 0 <nil> [] 0 0} DEBU[0000] Job.Defaults.Run.Shell: DEBU[0000] Job.Defaults.Run.WorkingDirectory: DEBU[0000] Job.Outputs: map[] DEBU[0000] Job.Uses: DEBU[0000] Job.With: map[] DEBU[0000] Job.Result: DEBU[0000] Job.Strategy.FailFast: false DEBU[0000] Job.Strategy.MaxParallel: 0 DEBU[0000] Job.Strategy.FailFastString: DEBU[0000] Job.Strategy.MaxParallelString: DEBU[0000] Job.Strategy.RawMatrix: {4 0 !!map <nil> [0xc00034edc0 0xc00034ee60] 143 9} DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] DEBU[0000] Job Matrices: [map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]] DEBU[0000] Runner Matrices: map[] DEBU[0000] Final matrix after applying user inclusions '[map[goversion:1.20] map[goversion:1.21.x] map[goversion:1.22.x]]' DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] Loading revision from git directory DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] HEAD points to '1318b4af946ddedc3f0ae42bc66298661330d8c7' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: 1318b4af946ddedc3f0ae42bc66298661330d8c7 DEBU[0000] Detected CPUs: 12 [Go/test-external-gopath-1 ] [DEBUG] evaluating expression 'success()' [Go/test-external-gopath-1 ] [DEBUG] expression 'success()' evaluated to 'true' [Go/test-external-gopath-1 ] 🚀 Start image=catthehacker/ubuntu:act-latest [Go/Tidy ] [DEBUG] evaluating expression 'success()' [Go/gobuilds-gopath-1 ] [DEBUG] evaluating expression 'success()' [Go/Tidy ] [DEBUG] expression 'success()' evaluated to 'true' [Go/gobuilds-gopath-1 ] [DEBUG] expression 'success()' evaluated to 'true' [Go/Tidy ] 🚀 Start image=catthehacker/ubuntu:act-latest [Go/gobuilds-gopath-1 ] 🚀 Start image=catthehacker/ubuntu:act-latest [Go/test-external-workspaces-1] [DEBUG] evaluating expression 'success()' [Go/test-external-workspaces-1] [DEBUG] expression 'success()' evaluated to 'true' [Go/gobuilds-1 ] [DEBUG] evaluating expression 'success()' [Go/test-external-workspaces-1] 🚀 Start image=catthehacker/ubuntu:act-latest [Go/gobuilds-1 ] [DEBUG] expression 'success()' evaluated to 'true' [Go/gobuilds-1 ] 🚀 Start image=catthehacker/ubuntu:act-latest [Go/test-external-gopath-2 ] [DEBUG] evaluating expression 'success()' [Go/Unit Test-1 ] [DEBUG] evaluating expression 'success()' [Go/Unit Test-1 ] [DEBUG] expression 'success()' evaluated to 'true' [Go/Unit Test-1 ] 🚀 Start image=catthehacker/ubuntu:act-latest [Go/test-external-gopath-2 ] [DEBUG] expression 'success()' evaluated to 'true' [Go/gobuilds-gopath-2 ] [DEBUG] evaluating expression 'success()' [Go/test-external-gopath-2 ] 🚀 Start image=catthehacker/ubuntu:act-latest [Go/gobuilds-2 ] [DEBUG] evaluating expression 'success()' [Go/gobuilds-gopath-2 ] [DEBUG] expression 'success()' evaluated to 'true' [Go/gobuilds-2 ] [DEBUG] expression 'success()' evaluated to 'true' [Go/gobuilds-2 ] 🚀 Start image=catthehacker/ubuntu:act-latest [Go/gobuilds-gopath-2 ] 🚀 Start image=catthehacker/ubuntu:act-latest [Go/test-external-workspaces-2] [DEBUG] evaluating expression 'success()' [Go/test-external-workspaces-2] [DEBUG] expression 'success()' evaluated to 'true' [Go/test-external-workspaces-2] 🚀 Start image=catthehacker/ubuntu:act-latest [Go/test-external-gopath-3 ] [DEBUG] evaluating expression 'success()' [Go/test-external-gopath-3 ] [DEBUG] expression 'success()' evaluated to 'true' [Go/test-external-gopath-3 ] 🚀 Start image=catthehacker/ubuntu:act-latest [Go/Unit Test-2 ] [DEBUG] evaluating expression 'success()' [Go/Unit Test-2 ] [DEBUG] expression 'success()' evaluated to 'true' [Go/Unit Test-3 ] [DEBUG] evaluating expression 'success()' [Go/Unit Test-2 ] 🚀 Start image=catthehacker/ubuntu:act-latest [Go/Unit Test-3 ] [DEBUG] expression 'success()' evaluated to 'true' [Go/Unit Test-3 ] 🚀 Start image=catthehacker/ubuntu:act-latest [Go/gobuilds-gopath-3 ] [DEBUG] evaluating expression 'success()' [Go/gobuilds-gopath-3 ] [DEBUG] expression 'success()' evaluated to 'true' [Go/test-external-workspaces-3] [DEBUG] evaluating expression 'success()' [Go/gobuilds-gopath-3 ] 🚀 Start image=catthehacker/ubuntu:act-latest [Go/test-external-workspaces-3] [DEBUG] expression 'success()' evaluated to 'true' [Go/gobuilds-3 ] [DEBUG] evaluating expression 'success()' [Go/test-external-workspaces-3] 🚀 Start image=catthehacker/ubuntu:act-latest [Go/gobuilds-3 ] [DEBUG] expression 'success()' evaluated to 'true' [Go/gobuilds-3 ] 🚀 Start image=catthehacker/ubuntu:act-latest DEBU[0000] Parallel tasks (0) below minimum, setting to 1 [Go/gobuilds-2 ]  🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true [Go/gobuilds-2 ] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest [Go/gobuilds-2 ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' () DEBU[0000] Parallel tasks (0) below minimum, setting to 1 [Go/test-external-workspaces-1]  🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true [Go/test-external-workspaces-1] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest DEBU[0000] Parallel tasks (0) below minimum, setting to 1 [Go/test-external-workspaces-1] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' () DEBU[0000] Parallel tasks (0) below minimum, setting to 1 [Go/test-external-workspaces-2]  🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true [Go/test-external-workspaces-2] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest [Go/gobuilds-gopath-2 ]  🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true DEBU[0000] Parallel tasks (0) below minimum, setting to 1 DEBU[0000] Parallel tasks (0) below minimum, setting to 1 DEBU[0000] Parallel tasks (0) below minimum, setting to 1 [Go/gobuilds-1 ]  🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true [Go/Tidy ]  🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true [Go/gobuilds-1 ] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest [Go/Tidy ] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest [Go/test-external-gopath-3 ]  🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true [Go/gobuilds-1 ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' () DEBU[0000] Parallel tasks (0) below minimum, setting to 1 [Go/test-external-gopath-3 ] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest DEBU[0000] Parallel tasks (0) below minimum, setting to 1 [Go/Unit Test-1 ]  🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true [Go/Unit Test-1 ] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest [Go/Unit Test-1 ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' () [Go/Unit Test-2 ]  🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true [Go/Unit Test-2 ] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest DEBU[0000] Parallel tasks (0) below minimum, setting to 1 [Go/Unit Test-2 ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' () [Go/test-external-gopath-2 ]  🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true [Go/test-external-gopath-2 ] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest [Go/gobuilds-gopath-2 ] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest [Go/gobuilds-gopath-2 ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' () DEBU[0000] Parallel tasks (0) below minimum, setting to 1 [Go/gobuilds-gopath-1 ]  🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true [Go/gobuilds-gopath-1 ] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest [Go/Tidy ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' () [Go/gobuilds-gopath-1 ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' () [Go/gobuilds-2 ] using DockerAuthConfig authentication for docker pull DEBU[0000] Parallel tasks (0) below minimum, setting to 1 [Go/test-external-workspaces-3]  🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true [Go/Unit Test-1 ] using DockerAuthConfig authentication for docker pull [Go/test-external-workspaces-3] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest DEBU[0000] Parallel tasks (0) below minimum, setting to 1 [Go/test-external-workspaces-3] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' () [Go/test-external-gopath-1 ]  🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true [Go/test-external-gopath-1 ] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest [Go/test-external-gopath-3 ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' () [Go/test-external-gopath-1 ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' () [Go/test-external-workspaces-1] using DockerAuthConfig authentication for docker pull [Go/test-external-gopath-2 ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' () [Go/test-external-gopath-3 ] using DockerAuthConfig authentication for docker pull [Go/Unit Test-2 ] using DockerAuthConfig authentication for docker pull [Go/gobuilds-gopath-2 ] using DockerAuthConfig authentication for docker pull [Go/test-external-workspaces-3] using DockerAuthConfig authentication for docker pull [Go/test-external-workspaces-2] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' () DEBU[0000] Parallel tasks (0) below minimum, setting to 1 [Go/Unit Test-3 ]  🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true [Go/Tidy ] using DockerAuthConfig authentication for docker pull [Go/test-external-gopath-2 ] using DockerAuthConfig authentication for docker pull [Go/Unit Test-3 ] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest [Go/Unit Test-3 ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' () DEBU[0000] Parallel tasks (0) below minimum, setting to 1 [Go/gobuilds-gopath-3 ]  🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true [Go/gobuilds-gopath-3 ] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest [Go/gobuilds-gopath-3 ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' () [Go/gobuilds-gopath-1 ] using DockerAuthConfig authentication for docker pull DEBU[0000] Parallel tasks (0) below minimum, setting to 1 [Go/gobuilds-3 ]  🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true [Go/gobuilds-3 ] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest [Go/gobuilds-1 ] using DockerAuthConfig authentication for docker pull [Go/gobuilds-3 ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' () [Go/test-external-gopath-1 ] using DockerAuthConfig authentication for docker pull [Go/test-external-workspaces-2] using DockerAuthConfig authentication for docker pull [Go/Unit Test-3 ] using DockerAuthConfig authentication for docker pull [Go/gobuilds-gopath-3 ] using DockerAuthConfig authentication for docker pull [Go/gobuilds-3 ] using DockerAuthConfig authentication for docker pull DEBU[0000] Saving notices etag=d5d06b1e-995c-4313-9d71-8f192b18c27b DEBU[0000] No new notices [Go/Unit Test-3 ] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest [Go/Tidy ] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest [Go/gobuilds-2 ] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest [Go/gobuilds-1 ] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest [Go/test-external-workspaces-1] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest [Go/gobuilds-gopath-1 ] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest [Go/gobuilds-3 ] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest [Go/gobuilds-gopath-3 ] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest [Go/test-external-gopath-1 ] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest [Go/Unit Test-2 ] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest [Go/test-external-gopath-3 ] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest [Go/test-external-workspaces-2] [DEBUG] Pulling from catthehacker/ubuntu :: act-latest [Go/Tidy ] [DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: [Go/Tidy ] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: [Go/gobuilds-2 ] [DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: [Go/gobuilds-2 ] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: [Go/test-external-workspaces-1] [DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: [Go/test-external-workspaces-1] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: [Go/gobuilds-gopath-1 ] [DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: [Go/gobuilds-gopath-1 ] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: [Go/gobuilds-gopath-3 ] [DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: [Go/gobuilds-gopath-3 ] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: [Go/Unit Test-2 ] [DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: [Go/Unit Test-2 ] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: [Go/gobuilds-3 ] [DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: [Go/gobuilds-3 ] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: [Go/test-external-gopath-1 ] [DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: [Go/test-external-gopath-1 ] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: [Go/gobuilds-1 ] [DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: [Go/gobuilds-1 ] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: [Go/Unit Test-3 ] [DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: [Go/Unit Test-3 ] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: [Go/test-external-gopath-3 ] [DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: [Go/test-external-gopath-3 ] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: [Go/test-external-workspaces-2] [DEBUG] Digest: sha256:89367f3c5437699c6b43fa941041725bcc77682a46f2bbe6557541e384d9cedb :: [Go/test-external-workspaces-2] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:act-latest :: DEBU[0001] Parallel tasks (0) below minimum, setting to 1 [Go/Tidy ]  🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host" DEBU[0001] Parallel tasks (0) below minimum, setting to 1 [Go/gobuilds-2 ]  🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host" DEBU[0001] Parallel tasks (0) below minimum, setting to 1 [Go/Unit Test-2 ]  🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host" DEBU[0001] Parallel tasks (0) below minimum, setting to 1 [Go/gobuilds-3 ]  🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host" DEBU[0001] Parallel tasks (0) below minimum, setting to 1 [Go/test-external-workspaces-2]  🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host" DEBU[0001] Parallel tasks (0) below minimum, setting to 1 [Go/gobuilds-gopath-3 ]  🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host" DEBU[0001] Parallel tasks (0) below minimum, setting to 1 [Go/gobuilds-1 ]  🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host" DEBU[0001] Parallel tasks (0) below minimum, setting to 1 [Go/Unit Test-3 ]  🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host" DEBU[0001] Parallel tasks (0) below minimum, setting to 1 [Go/test-external-workspaces-1]  🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host" DEBU[0001] Parallel tasks (0) below minimum, setting to 1 DEBU[0001] Parallel tasks (0) below minimum, setting to 1 [Go/test-external-gopath-3 ]  🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host" [Go/gobuilds-gopath-1 ]  🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host" DEBU[0001] Parallel tasks (0) below minimum, setting to 1 [Go/test-external-gopath-1 ]  🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host" [Go/gobuilds-2 ] [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:[]} [Go/Tidy ] [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:[]} [Go/gobuilds-2 ] [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>} [Go/gobuilds-2 ] [DEBUG] input.NetworkAliases ==> [gobuilds-2] [Go/test-external-workspaces-2] [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:[]} [Go/Unit Test-2 ] [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:[]} [Go/gobuilds-1 ] [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:[]} [Go/Unit Test-3 ] [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:[]} [Go/Tidy ] [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>} [Go/Tidy ] [DEBUG] input.NetworkAliases ==> [Tidy] [Go/test-external-workspaces-1] [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:[]} [Go/test-external-workspaces-2] [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>} [Go/test-external-workspaces-2] [DEBUG] input.NetworkAliases ==> [test-external-workspaces-2] [Go/Unit Test-2 ] [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>} [Go/Unit Test-2 ] [DEBUG] input.NetworkAliases ==> [Unit Test-2] [Go/gobuilds-gopath-3 ] [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:[]} [Go/gobuilds-3 ] [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:[]} [Go/gobuilds-1 ] [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>} [Go/gobuilds-1 ] [DEBUG] input.NetworkAliases ==> [gobuilds-1] [Go/test-external-gopath-3 ] [DEBUG] Common container.Config ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:false AttachStderr:false Exposed ```
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/act#1181
No description provided.