[GH-ISSUE #2585] Pull access denied, repository does not exist or may require 'docker login' #1176

Open
opened 2026-03-01 21:49:28 +03:00 by kerem · 2 comments
Owner

Originally created by @cybersokari on GitHub (Dec 24, 2024).
Original GitHub issue: https://github.com/nektos/act/issues/2585

Bug report info

act version:            0.2.70
GOOS:                   darwin
GOARCH:                 arm64
NumCPU:                 8
Docker host:            unix:///var/run/docker.sock
Sockets found:
        /var/run/docker.sock
        $HOME/.docker/run/docker.sock
Config files:           
        /Users/sokari/Library/Application Support/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.3
        Module path:           command-line-arguments
        Main version:          
        Main path:             
        Main checksum:         
        Build settings:
                -buildmode:           exe
                -compiler:            gc
                -ldflags:             -X main.version=0.2.70
                DefaultGODEBUG:       asynctimerchan=1,gotypesalias=0,httplaxcontentlength=1,httpmuxgo121=1,httpservecontentkeepheaders=1,tls10server=1,tls3des=1,tlskyber=0,tlsrsakex=1,tlsunsafeekm=1,winreadlinkvolume=0,winsymlink=0,x509keypairleaf=0,x509negativeserial=1
                CGO_ENABLED:          1
                CGO_CFLAGS:           
                CGO_CPPFLAGS:         
                CGO_CXXFLAGS:         
                CGO_LDFLAGS:          
                GOARCH:               arm64
                GOOS:                 darwin
                GOARM64:              v8.0
Docker Engine:
        Engine version:        27.4.0
        Engine runtime:        runc
        Cgroup version:        2
        Cgroup driver:         cgroupfs
        Storage driver:        overlay2
        Registry URI:          https://index.docker.io/v1/
        OS:                    Docker Desktop
        OS type:               linux
        OS version:            
        OS arch:               aarch64
        OS kernel:             6.10.14-linuxkit
        OS CPU:                8
        OS memory:             7837 MB
        Security options:
                name=seccomp,profile=unconfined
                name=cgroupns

Command used with act

docker build -t act-github-actions-dockeraction:latest -f dockerfiles/action.Dockerfile .

act push --job test-action-local --secret-file ./config/act.secrets \
 -e ./config/act.event.json \
  --container-architecture linux/amd64 --rm --rebuild=false --pull=false

Describe issue

Act is trying to pull the image from remote instead on using the local image.

I have tried the --rebuild=false --pull=false options , but its still not working for me.

https://github.com/cybersokari/allure-report-deployer

Workflow content

name: Github Actions use case
on:
  workflow_dispatch:
    inputs:
      job:
        description: 'Select the job to run: test-docker or test-action'
        required: true
        default: 'test-action'
      storage-bucket:
        description: 'Your Firebase (GCP) storage bucket'
        required: true
      keep-results:
        description: 'Backup results to keep retries' 
        required: false
        default: 'false'
      keep-history:
        description: 'Backup history'
        required: false
        default: 'true'
      show-retries:
        description: 'Show keep retries in report'
        required: false
        default: 'true'
      show-history:
        description: 'Show keep history in report'
        required: false
        default: 'true'
      report-id:
        description: 'Unique identifier for the site'
        required: false
        default: 'default'
      website-expires:
        description: 'Test Report site expiry. Example: 1h, 2d or 3w. Max is 30d'
        required: false
        default: '1h'
      prefix:
        description: 'The storage bucket path to back up Allure results and history files'
        required: false
      v3:
        description: 'Try Allure version 3. Still in beta.'
        required: false
        default: 'false'



jobs:
  test-docker:
    if: ${{ github.event.inputs.job == 'test-docker' }}
    runs-on: ubuntu-latest
    env:
      GCP_SECRETS: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }}
    steps:
      - uses: actions/checkout@v4.1.5
      - name: Run Tests
        run: |
          echo 'No test to run, using existing assets/allure-results from this repository'

      - name: Write GCP Credentials
        run: |
          echo "$GCP_SECRETS" > ${{ github.workspace }}/gcp-key.json

      - name: Authenticate Docker Hub
        uses: docker/login-action@v3
        with:
          username: ${{ vars.DOCKERHUB_USERNAME }}
          password: ${{ secrets.DOCKERHUB_TOKEN }}
      
      - name: Deploy Allure Report to Firebase
        run: |
          docker run --rm \
          -e STORAGE_BUCKET=${{github.event.inputs.storage-bucket}} \
          -e REPORT_ID=${{ github.event.inputs.website-id }} \
          -e WEBSITE_EXPIRES=${{ github.event.inputs.website-expires }} \
          -e KEEP_RETRIES=${{ github.event.inputs.keep-retries }} \
          -e KEEP_HISTORY=${{ github.event.inputs.keep-history }} \
          -e SLACK_TOKEN=${{secrets.SLACK_TOKEN}} \
          -e SLACK_CHANNEL_ID=${{secrets.SLACK_CHANNEL_ID}} \
          -v $GITHUB_STEP_SUMMARY:/github/summary.txt \
          -v ${{ github.workspace }}/assets/allure-results:/allure-results \
          -v ${{ github.workspace }}/gcp-key.json:/credentials/key.json \
          sokari/allure-deployer:latest

  test-action:
    if: ${{ github.event.inputs.job == 'test-action' }}
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4.1.5
      - name: Allure Deployer Action
        uses: cybersokari/allure-deployer-action@v1.0.2
        env:
          SLACK_TOKEN: ${{secrets.SLACK_TOKEN}}
          GOOGLE_CREDENTIALS_JSON: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }}
        with:
          allure_results_path: '/assets/allure-results'
          storage_bucket: ${{github.event.inputs.storage-bucket}}
          report_id: ${{ github.event.inputs.website-id }}
          website_expires: ${{github.event.inputs.website-expires}}
          slack_channel_id: ${{secrets.SLACK_CHANNEL_ID}}
          keep_history: ${{github.event.inputs.keep-history}}
          keep_results: ${{github.event.inputs.keep-results}}

  test-action-local:
    if: ${{ github.event.inputs.job == 'test-action-local' }}
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4.1.5
      - name: Allure Deployer Action
        uses: ./.github/actions
        env:
          SLACK_TOKEN: ${{secrets.SLACK_TOKEN}}
          GOOGLE_CREDENTIALS_JSON: ${{ secrets.GCP_CREDENTIALS}}
        with:
          allure_results_path: 'assets/allure-results'
          storage_bucket: ${{github.event.inputs.storage-bucket}}
          report_id: ${{ github.event.inputs.website-id }}
          website_expires: ${{github.event.inputs.website-expires}}
          slack_channel_id: ${{secrets.SLACK_CHANNEL_ID}}
          keep_history: ${{github.event.inputs.keep-history}}
          keep_results: ${{github.event.inputs.keep-results}}
          show_retries: ${{github.event.inputs.show-retries}}
          show_history: ${{github.event.inputs.show-history}}
          prefix: ${{github.event.inputs.prefix}}
          v3: ${{github.event.inputs.v3}}

Relevant log output

docker build -t act-github-actions-dockeraction:latest -f dockerfiles/action.Dockerfile .


[+] Building 1.2s (16/16) FINISHED                                                                                                                  docker:default
 => [internal] load build definition from action.Dockerfile                                                                                                   0.0s
 => => transferring dockerfile: 660B                                                                                                                          0.0s
 => [internal] load metadata for docker.io/library/node:20-alpine                                                                                             0.0s
 => [internal] load .dockerignore                                                                                                                             0.0s
 => => transferring context: 184B                                                                                                                             0.0s
 => [deps 1/3] FROM docker.io/library/node:20-alpine                                                                                                          0.0s
 => [internal] load build context                                                                                                                             1.0s
 => => transferring context: 2.09MB                                                                                                                           1.0s
 => CACHED [deps 2/3] RUN apk add openjdk17-jre                                                                                                               0.0s
 => CACHED [deps 3/3] RUN npm i -g allure #Allure V3                                                                                                          0.0s
 => CACHED [prod 1/8] COPY packages/shared/dist /app/packages/shared/dist                                                                                     0.0s
 => CACHED [prod 2/8] COPY packages/shared/package*.json /app/packages/shared                                                                                 0.0s
 => CACHED [prod 3/8] COPY packages/action/dist /app/packages/action/dist                                                                                     0.0s
 => CACHED [prod 4/8] COPY packages/action/package*.json /app/packages/action                                                                                 0.0s
 => CACHED [prod 5/8] COPY package*.json tsconfig.base.json /app                                                                                              0.0s
 => CACHED [prod 6/8] COPY node_modules /app/node_modules                                                                                                     0.0s
 => CACHED [prod 7/8] COPY packages/action/entrypoint.sh /entrypoint.sh                                                                                       0.0s
 => CACHED [prod 8/8] RUN chmod +x /entrypoint.sh                                                                                                             0.0s
 => exporting to image                                                                                                                                        0.0s
 => => exporting layers                                                                                                                                       0.0s
 => => writing image sha256:90fcfcf0b77b1ea4d11b1837211bb7d6ac6a2643a47a911519eae3410b02119e                                                                  0.0s
 => => naming to docker.io/library/act-github-actions-dockeraction:latest                                                                                     0.0s
~/IdeaProjects/allure-firebase git:[main]
act push --job test-action-local --secret-file ./config/act.secrets \
 -e ./config/act.event.json \
  --container-architecture linux/amd64 --rm --rebuild=false --pull=false -v
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 /Users/sokari/IdeaProjects/allure-firebase/.env 
DEBU[0000] Loading action inputs from /Users/sokari/IdeaProjects/allure-firebase/.input 
DEBU[0000] Loading secrets from /Users/sokari/IdeaProjects/allure-firebase/config/act.secrets 
DEBU[0000] Loading vars from /Users/sokari/IdeaProjects/allure-firebase/.vars 
DEBU[0000] Evaluated matrix inclusions: map[]           
DEBU[0000] Loading workflows from '/Users/sokari/IdeaProjects/allure-firebase/.github/workflows' 
DEBU[0000] Loading workflows recursively                
DEBU[0000] Conditional GET for notices etag=ec2787ee-1773-451c-b035-e92c3d364a31 
DEBU[0000] Found workflow 'deploy-cli.yaml' in '/Users/sokari/IdeaProjects/allure-firebase/.github/workflows/deploy-cli.yaml' 
DEBU[0000] Found workflow 'deploy-docker-action.yaml' in '/Users/sokari/IdeaProjects/allure-firebase/.github/workflows/deploy-docker-action.yaml' 
DEBU[0000] Found workflow 'deploy-docker.yaml' in '/Users/sokari/IdeaProjects/allure-firebase/.github/workflows/deploy-docker.yaml' 
DEBU[0000] Found workflow 'example-site-build.yaml' in '/Users/sokari/IdeaProjects/allure-firebase/.github/workflows/example-site-build.yaml' 
DEBU[0000] Found workflow 'examples.yml' in '/Users/sokari/IdeaProjects/allure-firebase/.github/workflows/examples.yml' 
DEBU[0000] Reading workflow '/Users/sokari/IdeaProjects/allure-firebase/.github/workflows/deploy-cli.yaml' 
DEBU[0000] Reading workflow '/Users/sokari/IdeaProjects/allure-firebase/.github/workflows/deploy-docker-action.yaml' 
DEBU[0000] Reading workflow '/Users/sokari/IdeaProjects/allure-firebase/.github/workflows/deploy-docker.yaml' 
DEBU[0000] Reading workflow '/Users/sokari/IdeaProjects/allure-firebase/.github/workflows/example-site-build.yaml' 
DEBU[0000] Reading workflow '/Users/sokari/IdeaProjects/allure-firebase/.github/workflows/examples.yml' 
DEBU[0000] Using first passed in arguments event for filtering: push 
DEBU[0000] Preparing plan with a job: test-action-local 
DEBU[0000] Using first passed in arguments event: push  
DEBU[0000] Planning job: test-action-local              
DEBU[0000] Reading event.json from /Users/sokari/IdeaProjects/allure-firebase/config/act.event.json 
DEBU[0000] gc: 2024-12-24 07:14:43.96325 +0100 WAT m=+0.045246001  module=artifactcache
DEBU[0000] Plan Stages: [0x140007040c0]                 
DEBU[0000] Stages Runs: [test-action-local]             
DEBU[0000] Job.Name: test-action-local                  
DEBU[0000] Job.RawNeeds: {0 0    <nil> []    0 0}       
DEBU[0000] Job.RawRunsOn: {8 0 !!str ubuntu-latest  <nil> []    104 14} 
DEBU[0000] Job.Env: {0 0    <nil> []    0 0}            
DEBU[0000] Job.If: {8 0 !!str ${{ github.event.inputs.job == 'test-action-local' }}  <nil> []    103 9} 
DEBU[0000] Job.Steps: actions/checkout@v4.1.5           
DEBU[0000] Job.Steps: Allure Deployer Action            
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: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 
DEBU[0000] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' 
DEBU[0000] using github ref: refs/heads/main            
DEBU[0000] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 
DEBU[0000] Detected CPUs: 8                             
[Github Actions use case/test-action-local] [DEBUG] evaluating expression '${{ github.event.inputs.job == 'test-action-local' }}'
[Github Actions use case/test-action-local] [DEBUG] expression '${{ github.event.inputs.job == 'test-action-local' }}' evaluated to 'true'
[Github Actions use case/test-action-local] 🚀  Start image=catthehacker/ubuntu:act-latest
DEBU[0000] Parallel tasks (0) below minimum, setting to 1 
[Github Actions use case/test-action-local]   🐳  docker pull image=catthehacker/ubuntu:act-latest platform=linux/amd64 username= forcePull=false
[Github Actions use case/test-action-local] [DEBUG]   🐳  docker pull catthehacker/ubuntu:act-latest
[Github Actions use case/test-action-local] [DEBUG] Image exists? true
DEBU[0000] Parallel tasks (0) below minimum, setting to 1 
[Github Actions use case/test-action-local]   🐳  docker create image=catthehacker/ubuntu:act-latest platform=linux/amd64 entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[Github Actions use case/test-action-local] [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=ARM64 RUNNER_TEMP=/tmp LANG=C.UTF-8] Cmd:[] Healthcheck:<nil> ArgsEscaped:false Image:catthehacker/ubuntu:act-latest Volumes:map[] WorkingDir:/Users/sokari/IdeaProjects/allure-firebase Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]}
[Github Actions use case/test-action-local] [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-Github-Actions-use-case-test-action-local-2dba318b4dcd37ec6d1af10e428406629eb2ed70d204c2cec52e4d112ba97f83-env Target:/var/run/act ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-Github-Actions-use-case-test-action-local-2dba318b4dcd37ec6d1af10e428406629eb2ed70d204c2cec52e4d112ba97f83 Target:/Users/sokari/IdeaProjects/allure-firebase ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>}] MaskedPaths:[] ReadonlyPaths:[] Init:<nil>}
[Github Actions use case/test-action-local] [DEBUG] input.NetworkAliases ==> [test-action-local]
[Github Actions use case/test-action-local] [DEBUG] Created container name=act-Github-Actions-use-case-test-action-local-2dba318b4dcd37ec6d1af10e428406629eb2ed70d204c2cec52e4d112ba97f83 id=479af981758375aeed0fe8b2312ab82269d35d43a47d4003890a02848dd17c9c from image catthehacker/ubuntu:act-latest (platform: linux/amd64)
[Github Actions use case/test-action-local] [DEBUG] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=ARM64 RUNNER_TEMP=/tmp LANG=C.UTF-8]
[Github Actions use case/test-action-local]   🐳  docker run image=catthehacker/ubuntu:act-latest platform=linux/amd64 entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host"
[Github Actions use case/test-action-local] [DEBUG] Starting container: 479af981758375aeed0fe8b2312ab82269d35d43a47d4003890a02848dd17c9c
[Github Actions use case/test-action-local] [DEBUG] Started container: 479af981758375aeed0fe8b2312ab82269d35d43a47d4003890a02848dd17c9c
[Github Actions use case/test-action-local] [DEBUG] Writing entry to tarball workflow/event.json len:238
[Github Actions use case/test-action-local] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[Github Actions use case/test-action-local] [DEBUG] Extracting content to '/var/run/act/'
DEBU[0000] Parallel tasks (0) below minimum, setting to 1 
[Github Actions use case/test-action-local]   🐳  docker exec cmd=[node --no-warnings -e console.log(process.execPath)] user= workdir=
[Github Actions use case/test-action-local] [DEBUG] Exec command '[node --no-warnings -e console.log(process.execPath)]'
[Github Actions use case/test-action-local] [DEBUG] Working directory '/Users/sokari/IdeaProjects/allure-firebase'
[Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322'
[Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322'
[Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] Skipping local actions/checkout because workdir was already copied
[Github Actions use case/test-action-local] [DEBUG] skip pre step for 'actions/checkout@v4.1.5': no action model available
[Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322'
[Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] Skipping local actions/checkout because workdir was already copied
[Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322'
[Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322'
[Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322'
[Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.1.220:56897/ CI:true GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:v4.1.5 GITHUB_ACTION_REPOSITORY:actions/checkout GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:test-action-local GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:cybersokari/allure-report-deployer GITHUB_REPOSITORY_OWNER:cybersokari GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ATTEMPT:1 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 GITHUB_WORKFLOW:Github Actions use case GITHUB_WORKSPACE:/Users/sokari/IdeaProjects/allure-firebase ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
[Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322'
[Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322'
[Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] evaluating expression ''
[Github Actions use case/test-action-local] [DEBUG] expression '' evaluated to 'true'
[Github Actions use case/test-action-local] ⭐ Run Main actions/checkout@v4.1.5
[Github Actions use case/test-action-local] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0
[Github Actions use case/test-action-local] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0
[Github Actions use case/test-action-local] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0
[Github Actions use case/test-action-local] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[Github Actions use case/test-action-local] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0
[Github Actions use case/test-action-local] [DEBUG] Extracting content to '/var/run/act'
[Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322'
[Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322'
[Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local]   🐳  docker cp src=/Users/sokari/IdeaProjects/allure-firebase/. dst=/Users/sokari/IdeaProjects/allure-firebase
[Github Actions use case/test-action-local] [DEBUG] Writing tarball /var/folders/14/v19kpvkx3g1_skt17hpxybd00000gn/T/act872674276 from /Users/sokari/IdeaProjects/allure-firebase/.
[Github Actions use case/test-action-local] [DEBUG] Stripping prefix:/Users/sokari/IdeaProjects/allure-firebase/ src:/Users/sokari/IdeaProjects/allure-firebase/.
DEBU[0001] Saving notices etag=ae42f9ae-b243-49c6-9f8c-1062f4444d63 
[Github Actions use case/test-action-local] [DEBUG] Extracting content from '/var/folders/14/v19kpvkx3g1_skt17hpxybd00000gn/T/act872674276' to '/Users/sokari/IdeaProjects/allure-firebase'
[Github Actions use case/test-action-local]   ✅  Success - Main actions/checkout@v4.1.5
[Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322'
[Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322'
[Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] expression '${{ secrets.GCP_CREDENTIALS}}' rewritten to 'format('{0}', secrets.GCP_CREDENTIALS)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', secrets.GCP_CREDENTIALS)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', secrets.GCP_CREDENTIALS)' evaluated to '%!t(string=***)'
[Github Actions use case/test-action-local] [DEBUG] expression '${{secrets.SLACK_TOKEN}}' rewritten to 'format('{0}', secrets.SLACK_TOKEN)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', secrets.SLACK_TOKEN)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', secrets.SLACK_TOKEN)' evaluated to '%!t(string=***)'
[Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322'
[Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.keep-results}}' rewritten to 'format('{0}', github.event.inputs.keep-results)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.keep-results)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.keep-results)' evaluated to '%!t(string=true)'
[Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.v3}}' rewritten to 'format('{0}', github.event.inputs.v3)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.v3)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.v3)' evaluated to '%!t(string=true)'
[Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.storage-bucket}}' rewritten to 'format('{0}', github.event.inputs.storage-bucket)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.storage-bucket)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.storage-bucket)' evaluated to '%!t(string=gatedaccessdev.appspot.com)'
[Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.website-expires}}' rewritten to 'format('{0}', github.event.inputs.website-expires)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.website-expires)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.website-expires)' evaluated to '%!t(string=)'
[Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.prefix}}' rewritten to 'format('{0}', github.event.inputs.prefix)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.prefix)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.prefix)' evaluated to '%!t(string=act-allure)'
[Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.show-retries}}' rewritten to 'format('{0}', github.event.inputs.show-retries)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.show-retries)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.show-retries)' evaluated to '%!t(string=)'
[Github Actions use case/test-action-local] [DEBUG] expression '${{ github.event.inputs.website-id }}' rewritten to 'format('{0}', github.event.inputs.website-id)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.website-id)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.website-id)' evaluated to '%!t(string=act-allure)'
[Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.keep-history}}' rewritten to 'format('{0}', github.event.inputs.keep-history)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.keep-history)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.keep-history)' evaluated to '%!t(string=true)'
[Github Actions use case/test-action-local] [DEBUG] expression '${{secrets.SLACK_CHANNEL_ID}}' rewritten to 'format('{0}', secrets.SLACK_CHANNEL_ID)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', secrets.SLACK_CHANNEL_ID)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', secrets.SLACK_CHANNEL_ID)' evaluated to '%!t(string=***)'
[Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.show-history}}' rewritten to 'format('{0}', github.event.inputs.show-history)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.show-history)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.show-history)' evaluated to '%!t(string=)'
[Github Actions use case/test-action-local] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.1.220:56897/ CI:true GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:test-action-local GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:cybersokari/allure-report-deployer GITHUB_REPOSITORY_OWNER:cybersokari GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ATTEMPT:1 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 GITHUB_WORKFLOW:Github Actions use case GITHUB_WORKSPACE:/Users/sokari/IdeaProjects/allure-firebase GOOGLE_CREDENTIALS_JSON:*** INPUT_ALLURE_RESULTS_PATH:assets/allure-results INPUT_KEEP_HISTORY:true INPUT_KEEP_RESULTS:true INPUT_PREFIX:act-allure INPUT_REPORT_ID:act-allure INPUT_SHOW_HISTORY: INPUT_SHOW_RETRIES: INPUT_SLACK_CHANNEL_ID:*** INPUT_STORAGE_BUCKET:gatedaccessdev.appspot.com INPUT_V3:true INPUT_WEBSITE_EXPIRES: ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: SLACK_TOKEN:***]
[Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322'
[Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322'
[Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] evaluating expression ''
[Github Actions use case/test-action-local] [DEBUG] expression '' evaluated to 'true'
[Github Actions use case/test-action-local] ⭐ Run Main Allure Deployer Action
[Github Actions use case/test-action-local] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0
[Github Actions use case/test-action-local] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0
[Github Actions use case/test-action-local] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0
[Github Actions use case/test-action-local] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[Github Actions use case/test-action-local] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0
[Github Actions use case/test-action-local] [DEBUG] Extracting content to '/var/run/act'
[Github Actions use case/test-action-local] [DEBUG] Read action &{Allure Deployer Action Sokari Gillis-Harry Deploy Allure Reports as a website, with unique Ephemeral URLs per report and notification to Slack, No server required map[allure_results_path:{Path to the directory containing Allure results true } keep_history:{Save Report history to storage (true/false) false true} keep_results:{Save Report retries (result files) to storage (true/false) false true} prefix:{The storage bucket path to back up Allure results and history files false } report_id:{Unique identifier for the hosted report true default} show_history:{Show history in the test report (true/false) false true} show_retries:{Show retries in the test report (true/false) false true} slack_channel_id:{Slack channel ID for notifications (optional) false } storage_bucket:{Google Cloud Storage bucket name true } v3:{Try Allure version 3. Still in beta. false false} website_expires:{Expiration duration for Report's website (e.g., 2h, 7d, 3w) Max. 30d false 7d}] map[report_url:{URL to your report }] {docker map[]   always()  always() act-github-actions-dockeraction:latest    [storage_bucket=${{ inputs.storage_bucket }} report_id=${{ inputs.report_id }} website_expires=${{ inputs.website_expires }} keep_history=${{ inputs.keep_history }} keep_results=${{ inputs.keep_results }} slack_channel_id=${{ inputs.slack_channel_id }} allure_results_path=${{ inputs.allure_results_path }} show_retries=${{ inputs.show_retries }} show_history=${{ inputs.show_history }} prefix=${{ inputs.prefix}} v3=${{inputs.v3}}] []} { }} from 'Unknown'
[Github Actions use case/test-action-local] [DEBUG] About to run action &{Allure Deployer Action Sokari Gillis-Harry Deploy Allure Reports as a website, with unique Ephemeral URLs per report and notification to Slack, No server required map[allure_results_path:{Path to the directory containing Allure results true } keep_history:{Save Report history to storage (true/false) false true} keep_results:{Save Report retries (result files) to storage (true/false) false true} prefix:{The storage bucket path to back up Allure results and history files false } report_id:{Unique identifier for the hosted report true default} show_history:{Show history in the test report (true/false) false true} show_retries:{Show retries in the test report (true/false) false true} slack_channel_id:{Slack channel ID for notifications (optional) false } storage_bucket:{Google Cloud Storage bucket name true } v3:{Try Allure version 3. Still in beta. false false} website_expires:{Expiration duration for Report's website (e.g., 2h, 7d, 3w) Max. 30d false 7d}] map[report_url:{URL to your report }] {docker map[]   always()  always() act-github-actions-dockeraction:latest    [storage_bucket=${{ inputs.storage_bucket }} report_id=${{ inputs.report_id }} website_expires=${{ inputs.website_expires }} keep_history=${{ inputs.keep_history }} keep_results=${{ inputs.keep_results }} slack_channel_id=${{ inputs.slack_channel_id }} allure_results_path=${{ inputs.allure_results_path }} show_retries=${{ inputs.show_retries }} show_history=${{ inputs.show_history }} prefix=${{ inputs.prefix}} v3=${{inputs.v3}}] []} { }}
[Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322'
[Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322'
[Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] type=local-action actionDir=/Users/sokari/IdeaProjects/allure-firebase/.github/actions actionPath= workdir=/Users/sokari/IdeaProjects/allure-firebase actionCacheDir=/Users/sokari/.cache/act actionName=./.github/actions containerActionDir=/Users/sokari/IdeaProjects/allure-firebase/.github/actions
[Github Actions use case/test-action-local] [DEBUG] image 'act-github-actions-dockeraction:latest' for architecture 'linux/amd64' will be built from context '/Users/sokari/IdeaProjects/allure-firebase/.github/actions/
[Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322'
[Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322'
[Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322'
[Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.show-retries}}' rewritten to 'format('{0}', github.event.inputs.show-retries)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.show-retries)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.show-retries)' evaluated to '%!t(string=)'
[Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.show-history}}' rewritten to 'format('{0}', github.event.inputs.show-history)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.show-history)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.show-history)' evaluated to '%!t(string=)'
[Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.v3}}' rewritten to 'format('{0}', github.event.inputs.v3)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.v3)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.v3)' evaluated to '%!t(string=true)'
[Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.storage-bucket}}' rewritten to 'format('{0}', github.event.inputs.storage-bucket)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.storage-bucket)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.storage-bucket)' evaluated to '%!t(string=gatedaccessdev.appspot.com)'
[Github Actions use case/test-action-local] [DEBUG] expression '${{ github.event.inputs.website-id }}' rewritten to 'format('{0}', github.event.inputs.website-id)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.website-id)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.website-id)' evaluated to '%!t(string=act-allure)'
[Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.website-expires}}' rewritten to 'format('{0}', github.event.inputs.website-expires)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.website-expires)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.website-expires)' evaluated to '%!t(string=)'
[Github Actions use case/test-action-local] [DEBUG] expression '${{secrets.SLACK_CHANNEL_ID}}' rewritten to 'format('{0}', secrets.SLACK_CHANNEL_ID)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', secrets.SLACK_CHANNEL_ID)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', secrets.SLACK_CHANNEL_ID)' evaluated to '%!t(string=***)'
[Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.keep-history}}' rewritten to 'format('{0}', github.event.inputs.keep-history)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.keep-history)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.keep-history)' evaluated to '%!t(string=true)'
[Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.keep-results}}' rewritten to 'format('{0}', github.event.inputs.keep-results)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.keep-results)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.keep-results)' evaluated to '%!t(string=true)'
[Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.prefix}}' rewritten to 'format('{0}', github.event.inputs.prefix)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.prefix)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.prefix)' evaluated to '%!t(string=act-allure)'
[Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322'
[Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322'
[Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] expression 'storage_bucket=${{ inputs.storage_bucket }}' rewritten to 'format('storage_bucket={0}', inputs.storage_bucket)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('storage_bucket={0}', inputs.storage_bucket)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('storage_bucket={0}', inputs.storage_bucket)' evaluated to '%!t(string=storage_bucket=gatedaccessdev.appspot.com)'
[Github Actions use case/test-action-local] [DEBUG] expression 'report_id=${{ inputs.report_id }}' rewritten to 'format('report_id={0}', inputs.report_id)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('report_id={0}', inputs.report_id)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('report_id={0}', inputs.report_id)' evaluated to '%!t(string=report_id=act-allure)'
[Github Actions use case/test-action-local] [DEBUG] expression 'website_expires=${{ inputs.website_expires }}' rewritten to 'format('website_expires={0}', inputs.website_expires)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('website_expires={0}', inputs.website_expires)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('website_expires={0}', inputs.website_expires)' evaluated to '%!t(string=website_expires=)'
[Github Actions use case/test-action-local] [DEBUG] expression 'keep_history=${{ inputs.keep_history }}' rewritten to 'format('keep_history={0}', inputs.keep_history)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('keep_history={0}', inputs.keep_history)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('keep_history={0}', inputs.keep_history)' evaluated to '%!t(string=keep_history=true)'
[Github Actions use case/test-action-local] [DEBUG] expression 'keep_results=${{ inputs.keep_results }}' rewritten to 'format('keep_results={0}', inputs.keep_results)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('keep_results={0}', inputs.keep_results)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('keep_results={0}', inputs.keep_results)' evaluated to '%!t(string=keep_results=true)'
[Github Actions use case/test-action-local] [DEBUG] expression 'slack_channel_id=${{ inputs.slack_channel_id }}' rewritten to 'format('slack_channel_id={0}', inputs.slack_channel_id)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('slack_channel_id={0}', inputs.slack_channel_id)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('slack_channel_id={0}', inputs.slack_channel_id)' evaluated to '%!t(string=slack_channel_id=***)'
[Github Actions use case/test-action-local] [DEBUG] expression 'allure_results_path=${{ inputs.allure_results_path }}' rewritten to 'format('allure_results_path={0}', inputs.allure_results_path)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('allure_results_path={0}', inputs.allure_results_path)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('allure_results_path={0}', inputs.allure_results_path)' evaluated to '%!t(string=allure_results_path=assets/allure-results)'
[Github Actions use case/test-action-local] [DEBUG] expression 'show_retries=${{ inputs.show_retries }}' rewritten to 'format('show_retries={0}', inputs.show_retries)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('show_retries={0}', inputs.show_retries)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('show_retries={0}', inputs.show_retries)' evaluated to '%!t(string=show_retries=)'
[Github Actions use case/test-action-local] [DEBUG] expression 'show_history=${{ inputs.show_history }}' rewritten to 'format('show_history={0}', inputs.show_history)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('show_history={0}', inputs.show_history)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('show_history={0}', inputs.show_history)' evaluated to '%!t(string=show_history=)'
[Github Actions use case/test-action-local] [DEBUG] expression 'prefix=${{ inputs.prefix}}' rewritten to 'format('prefix={0}', inputs.prefix)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('prefix={0}', inputs.prefix)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('prefix={0}', inputs.prefix)' evaluated to '%!t(string=prefix=act-allure)'
[Github Actions use case/test-action-local] [DEBUG] expression 'v3=${{inputs.v3}}' rewritten to 'format('v3={0}', inputs.v3)'
[Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('v3={0}', inputs.v3)'
[Github Actions use case/test-action-local] [DEBUG] expression 'format('v3={0}', inputs.v3)' evaluated to '%!t(string=v3=true)'
[Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322'
[Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322'
[Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local]   🐳  docker build -t act-github-actions-dockeraction:latest --platform linux/amd64 /Users/sokari/IdeaProjects/allure-firebase/.github/actions/
[Github Actions use case/test-action-local] [DEBUG] Building image from '/Users/sokari/IdeaProjects/allure-firebase/.github/actions/'
[Github Actions use case/test-action-local] [DEBUG] Creating image from context dir '/Users/sokari/IdeaProjects/allure-firebase/.github/actions/' with tag 'act-github-actions-dockeraction:latest' and platform 'linux/amd64'
[Github Actions use case/test-action-local]   🐳  docker pull image=act-github-actions-dockeraction:latest platform=linux/amd64 username= forcePull=false
[Github Actions use case/test-action-local] [DEBUG]   🐳  docker pull act-github-actions-dockeraction:latest
[Github Actions use case/test-action-local] [DEBUG] Image exists? false
[Github Actions use case/test-action-local] [DEBUG] pulling image 'docker.io/library/act-github-actions-dockeraction:latest' (linux/amd64)
[Github Actions use case/test-action-local] using DockerAuthConfig authentication for docker pull
[Github Actions use case/test-action-local]   ❌  Failure - Main Allure Deployer Action
[Github Actions use case/test-action-local] Error response from daemon: pull access denied for act-github-actions-dockeraction, repository does not exist or may require 'docker login': denied: requested access to the resource is denied
[Github Actions use case/test-action-local] [DEBUG] skipping post step for 'actions/checkout@v4.1.5': no action model available
[Github Actions use case/test-action-local] Cleaning up container for job test-action-local
[Github Actions use case/test-action-local] [DEBUG] Removed container: 479af981758375aeed0fe8b2312ab82269d35d43a47d4003890a02848dd17c9c
[Github Actions use case/test-action-local] [DEBUG]   🐳  docker volume rm act-Github-Actions-use-case-test-action-local-2dba318b4dcd37ec6d1af10e428406629eb2ed70d204c2cec52e4d112ba97f83
[Github Actions use case/test-action-local] [DEBUG]   🐳  docker volume rm act-Github-Actions-use-case-test-action-local-2dba318b4dcd37ec6d1af10e428406629eb2ed70d204c2cec52e4d112ba97f83-env
[Github Actions use case/test-action-local] 🏁  Job failed
[Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322
[Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322'
[Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main
[Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322

Additional information

No response

Originally created by @cybersokari on GitHub (Dec 24, 2024). Original GitHub issue: https://github.com/nektos/act/issues/2585 ### Bug report info ```plain text act version: 0.2.70 GOOS: darwin GOARCH: arm64 NumCPU: 8 Docker host: unix:///var/run/docker.sock Sockets found: /var/run/docker.sock $HOME/.docker/run/docker.sock Config files: /Users/sokari/Library/Application Support/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.3 Module path: command-line-arguments Main version: Main path: Main checksum: Build settings: -buildmode: exe -compiler: gc -ldflags: -X main.version=0.2.70 DefaultGODEBUG: asynctimerchan=1,gotypesalias=0,httplaxcontentlength=1,httpmuxgo121=1,httpservecontentkeepheaders=1,tls10server=1,tls3des=1,tlskyber=0,tlsrsakex=1,tlsunsafeekm=1,winreadlinkvolume=0,winsymlink=0,x509keypairleaf=0,x509negativeserial=1 CGO_ENABLED: 1 CGO_CFLAGS: CGO_CPPFLAGS: CGO_CXXFLAGS: CGO_LDFLAGS: GOARCH: arm64 GOOS: darwin GOARM64: v8.0 Docker Engine: Engine version: 27.4.0 Engine runtime: runc Cgroup version: 2 Cgroup driver: cgroupfs Storage driver: overlay2 Registry URI: https://index.docker.io/v1/ OS: Docker Desktop OS type: linux OS version: OS arch: aarch64 OS kernel: 6.10.14-linuxkit OS CPU: 8 OS memory: 7837 MB Security options: name=seccomp,profile=unconfined name=cgroupns ``` ### Command used with act ```sh docker build -t act-github-actions-dockeraction:latest -f dockerfiles/action.Dockerfile . act push --job test-action-local --secret-file ./config/act.secrets \ -e ./config/act.event.json \ --container-architecture linux/amd64 --rm --rebuild=false --pull=false ``` ### Describe issue Act is trying to pull the image from remote instead on using the local image. I have tried the `--rebuild=false` `--pull=false` options , but its still not working for me. ### Link to GitHub repository https://github.com/cybersokari/allure-report-deployer ### Workflow content ```yml name: Github Actions use case on: workflow_dispatch: inputs: job: description: 'Select the job to run: test-docker or test-action' required: true default: 'test-action' storage-bucket: description: 'Your Firebase (GCP) storage bucket' required: true keep-results: description: 'Backup results to keep retries' required: false default: 'false' keep-history: description: 'Backup history' required: false default: 'true' show-retries: description: 'Show keep retries in report' required: false default: 'true' show-history: description: 'Show keep history in report' required: false default: 'true' report-id: description: 'Unique identifier for the site' required: false default: 'default' website-expires: description: 'Test Report site expiry. Example: 1h, 2d or 3w. Max is 30d' required: false default: '1h' prefix: description: 'The storage bucket path to back up Allure results and history files' required: false v3: description: 'Try Allure version 3. Still in beta.' required: false default: 'false' jobs: test-docker: if: ${{ github.event.inputs.job == 'test-docker' }} runs-on: ubuntu-latest env: GCP_SECRETS: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }} steps: - uses: actions/checkout@v4.1.5 - name: Run Tests run: | echo 'No test to run, using existing assets/allure-results from this repository' - name: Write GCP Credentials run: | echo "$GCP_SECRETS" > ${{ github.workspace }}/gcp-key.json - name: Authenticate Docker Hub uses: docker/login-action@v3 with: username: ${{ vars.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Deploy Allure Report to Firebase run: | docker run --rm \ -e STORAGE_BUCKET=${{github.event.inputs.storage-bucket}} \ -e REPORT_ID=${{ github.event.inputs.website-id }} \ -e WEBSITE_EXPIRES=${{ github.event.inputs.website-expires }} \ -e KEEP_RETRIES=${{ github.event.inputs.keep-retries }} \ -e KEEP_HISTORY=${{ github.event.inputs.keep-history }} \ -e SLACK_TOKEN=${{secrets.SLACK_TOKEN}} \ -e SLACK_CHANNEL_ID=${{secrets.SLACK_CHANNEL_ID}} \ -v $GITHUB_STEP_SUMMARY:/github/summary.txt \ -v ${{ github.workspace }}/assets/allure-results:/allure-results \ -v ${{ github.workspace }}/gcp-key.json:/credentials/key.json \ sokari/allure-deployer:latest test-action: if: ${{ github.event.inputs.job == 'test-action' }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v4.1.5 - name: Allure Deployer Action uses: cybersokari/allure-deployer-action@v1.0.2 env: SLACK_TOKEN: ${{secrets.SLACK_TOKEN}} GOOGLE_CREDENTIALS_JSON: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }} with: allure_results_path: '/assets/allure-results' storage_bucket: ${{github.event.inputs.storage-bucket}} report_id: ${{ github.event.inputs.website-id }} website_expires: ${{github.event.inputs.website-expires}} slack_channel_id: ${{secrets.SLACK_CHANNEL_ID}} keep_history: ${{github.event.inputs.keep-history}} keep_results: ${{github.event.inputs.keep-results}} test-action-local: if: ${{ github.event.inputs.job == 'test-action-local' }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v4.1.5 - name: Allure Deployer Action uses: ./.github/actions env: SLACK_TOKEN: ${{secrets.SLACK_TOKEN}} GOOGLE_CREDENTIALS_JSON: ${{ secrets.GCP_CREDENTIALS}} with: allure_results_path: 'assets/allure-results' storage_bucket: ${{github.event.inputs.storage-bucket}} report_id: ${{ github.event.inputs.website-id }} website_expires: ${{github.event.inputs.website-expires}} slack_channel_id: ${{secrets.SLACK_CHANNEL_ID}} keep_history: ${{github.event.inputs.keep-history}} keep_results: ${{github.event.inputs.keep-results}} show_retries: ${{github.event.inputs.show-retries}} show_history: ${{github.event.inputs.show-history}} prefix: ${{github.event.inputs.prefix}} v3: ${{github.event.inputs.v3}} ``` ### Relevant log output ```sh docker build -t act-github-actions-dockeraction:latest -f dockerfiles/action.Dockerfile . [+] Building 1.2s (16/16) FINISHED docker:default => [internal] load build definition from action.Dockerfile 0.0s => => transferring dockerfile: 660B 0.0s => [internal] load metadata for docker.io/library/node:20-alpine 0.0s => [internal] load .dockerignore 0.0s => => transferring context: 184B 0.0s => [deps 1/3] FROM docker.io/library/node:20-alpine 0.0s => [internal] load build context 1.0s => => transferring context: 2.09MB 1.0s => CACHED [deps 2/3] RUN apk add openjdk17-jre 0.0s => CACHED [deps 3/3] RUN npm i -g allure #Allure V3 0.0s => CACHED [prod 1/8] COPY packages/shared/dist /app/packages/shared/dist 0.0s => CACHED [prod 2/8] COPY packages/shared/package*.json /app/packages/shared 0.0s => CACHED [prod 3/8] COPY packages/action/dist /app/packages/action/dist 0.0s => CACHED [prod 4/8] COPY packages/action/package*.json /app/packages/action 0.0s => CACHED [prod 5/8] COPY package*.json tsconfig.base.json /app 0.0s => CACHED [prod 6/8] COPY node_modules /app/node_modules 0.0s => CACHED [prod 7/8] COPY packages/action/entrypoint.sh /entrypoint.sh 0.0s => CACHED [prod 8/8] RUN chmod +x /entrypoint.sh 0.0s => exporting to image 0.0s => => exporting layers 0.0s => => writing image sha256:90fcfcf0b77b1ea4d11b1837211bb7d6ac6a2643a47a911519eae3410b02119e 0.0s => => naming to docker.io/library/act-github-actions-dockeraction:latest 0.0s ~/IdeaProjects/allure-firebase git:[main] act push --job test-action-local --secret-file ./config/act.secrets \ -e ./config/act.event.json \ --container-architecture linux/amd64 --rm --rebuild=false --pull=false -v 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 /Users/sokari/IdeaProjects/allure-firebase/.env DEBU[0000] Loading action inputs from /Users/sokari/IdeaProjects/allure-firebase/.input DEBU[0000] Loading secrets from /Users/sokari/IdeaProjects/allure-firebase/config/act.secrets DEBU[0000] Loading vars from /Users/sokari/IdeaProjects/allure-firebase/.vars DEBU[0000] Evaluated matrix inclusions: map[] DEBU[0000] Loading workflows from '/Users/sokari/IdeaProjects/allure-firebase/.github/workflows' DEBU[0000] Loading workflows recursively DEBU[0000] Conditional GET for notices etag=ec2787ee-1773-451c-b035-e92c3d364a31 DEBU[0000] Found workflow 'deploy-cli.yaml' in '/Users/sokari/IdeaProjects/allure-firebase/.github/workflows/deploy-cli.yaml' DEBU[0000] Found workflow 'deploy-docker-action.yaml' in '/Users/sokari/IdeaProjects/allure-firebase/.github/workflows/deploy-docker-action.yaml' DEBU[0000] Found workflow 'deploy-docker.yaml' in '/Users/sokari/IdeaProjects/allure-firebase/.github/workflows/deploy-docker.yaml' DEBU[0000] Found workflow 'example-site-build.yaml' in '/Users/sokari/IdeaProjects/allure-firebase/.github/workflows/example-site-build.yaml' DEBU[0000] Found workflow 'examples.yml' in '/Users/sokari/IdeaProjects/allure-firebase/.github/workflows/examples.yml' DEBU[0000] Reading workflow '/Users/sokari/IdeaProjects/allure-firebase/.github/workflows/deploy-cli.yaml' DEBU[0000] Reading workflow '/Users/sokari/IdeaProjects/allure-firebase/.github/workflows/deploy-docker-action.yaml' DEBU[0000] Reading workflow '/Users/sokari/IdeaProjects/allure-firebase/.github/workflows/deploy-docker.yaml' DEBU[0000] Reading workflow '/Users/sokari/IdeaProjects/allure-firebase/.github/workflows/example-site-build.yaml' DEBU[0000] Reading workflow '/Users/sokari/IdeaProjects/allure-firebase/.github/workflows/examples.yml' DEBU[0000] Using first passed in arguments event for filtering: push DEBU[0000] Preparing plan with a job: test-action-local DEBU[0000] Using first passed in arguments event: push DEBU[0000] Planning job: test-action-local DEBU[0000] Reading event.json from /Users/sokari/IdeaProjects/allure-firebase/config/act.event.json DEBU[0000] gc: 2024-12-24 07:14:43.96325 +0100 WAT m=+0.045246001 module=artifactcache DEBU[0000] Plan Stages: [0x140007040c0] DEBU[0000] Stages Runs: [test-action-local] DEBU[0000] Job.Name: test-action-local DEBU[0000] Job.RawNeeds: {0 0 <nil> [] 0 0} DEBU[0000] Job.RawRunsOn: {8 0 !!str ubuntu-latest <nil> [] 104 14} DEBU[0000] Job.Env: {0 0 <nil> [] 0 0} DEBU[0000] Job.If: {8 0 !!str ${{ github.event.inputs.job == 'test-action-local' }} <nil> [] 103 9} DEBU[0000] Job.Steps: actions/checkout@v4.1.5 DEBU[0000] Job.Steps: Allure Deployer Action 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: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 DEBU[0000] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' DEBU[0000] using github ref: refs/heads/main DEBU[0000] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 DEBU[0000] Detected CPUs: 8 [Github Actions use case/test-action-local] [DEBUG] evaluating expression '${{ github.event.inputs.job == 'test-action-local' }}' [Github Actions use case/test-action-local] [DEBUG] expression '${{ github.event.inputs.job == 'test-action-local' }}' evaluated to 'true' [Github Actions use case/test-action-local] 🚀 Start image=catthehacker/ubuntu:act-latest DEBU[0000] Parallel tasks (0) below minimum, setting to 1 [Github Actions use case/test-action-local] 🐳 docker pull image=catthehacker/ubuntu:act-latest platform=linux/amd64 username= forcePull=false [Github Actions use case/test-action-local] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest [Github Actions use case/test-action-local] [DEBUG] Image exists? true DEBU[0000] Parallel tasks (0) below minimum, setting to 1 [Github Actions use case/test-action-local] 🐳 docker create image=catthehacker/ubuntu:act-latest platform=linux/amd64 entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host" [Github Actions use case/test-action-local] [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=ARM64 RUNNER_TEMP=/tmp LANG=C.UTF-8] Cmd:[] Healthcheck:<nil> ArgsEscaped:false Image:catthehacker/ubuntu:act-latest Volumes:map[] WorkingDir:/Users/sokari/IdeaProjects/allure-firebase Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]} [Github Actions use case/test-action-local] [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-Github-Actions-use-case-test-action-local-2dba318b4dcd37ec6d1af10e428406629eb2ed70d204c2cec52e4d112ba97f83-env Target:/var/run/act ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-Github-Actions-use-case-test-action-local-2dba318b4dcd37ec6d1af10e428406629eb2ed70d204c2cec52e4d112ba97f83 Target:/Users/sokari/IdeaProjects/allure-firebase ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>}] MaskedPaths:[] ReadonlyPaths:[] Init:<nil>} [Github Actions use case/test-action-local] [DEBUG] input.NetworkAliases ==> [test-action-local] [Github Actions use case/test-action-local] [DEBUG] Created container name=act-Github-Actions-use-case-test-action-local-2dba318b4dcd37ec6d1af10e428406629eb2ed70d204c2cec52e4d112ba97f83 id=479af981758375aeed0fe8b2312ab82269d35d43a47d4003890a02848dd17c9c from image catthehacker/ubuntu:act-latest (platform: linux/amd64) [Github Actions use case/test-action-local] [DEBUG] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=ARM64 RUNNER_TEMP=/tmp LANG=C.UTF-8] [Github Actions use case/test-action-local] 🐳 docker run image=catthehacker/ubuntu:act-latest platform=linux/amd64 entrypoint=["tail" "-f" "/dev/null"] cmd=[] network="host" [Github Actions use case/test-action-local] [DEBUG] Starting container: 479af981758375aeed0fe8b2312ab82269d35d43a47d4003890a02848dd17c9c [Github Actions use case/test-action-local] [DEBUG] Started container: 479af981758375aeed0fe8b2312ab82269d35d43a47d4003890a02848dd17c9c [Github Actions use case/test-action-local] [DEBUG] Writing entry to tarball workflow/event.json len:238 [Github Actions use case/test-action-local] [DEBUG] Writing entry to tarball workflow/envs.txt len:0 [Github Actions use case/test-action-local] [DEBUG] Extracting content to '/var/run/act/' DEBU[0000] Parallel tasks (0) below minimum, setting to 1 [Github Actions use case/test-action-local] 🐳 docker exec cmd=[node --no-warnings -e console.log(process.execPath)] user= workdir= [Github Actions use case/test-action-local] [DEBUG] Exec command '[node --no-warnings -e console.log(process.execPath)]' [Github Actions use case/test-action-local] [DEBUG] Working directory '/Users/sokari/IdeaProjects/allure-firebase' [Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' [Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' [Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] Skipping local actions/checkout because workdir was already copied [Github Actions use case/test-action-local] [DEBUG] skip pre step for 'actions/checkout@v4.1.5': no action model available [Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' [Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] Skipping local actions/checkout because workdir was already copied [Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' [Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' [Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' [Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.1.220:56897/ CI:true GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:v4.1.5 GITHUB_ACTION_REPOSITORY:actions/checkout GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:test-action-local GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:cybersokari/allure-report-deployer GITHUB_REPOSITORY_OWNER:cybersokari GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ATTEMPT:1 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 GITHUB_WORKFLOW:Github Actions use case GITHUB_WORKSPACE:/Users/sokari/IdeaProjects/allure-firebase ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:] [Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' [Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' [Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] evaluating expression '' [Github Actions use case/test-action-local] [DEBUG] expression '' evaluated to 'true' [Github Actions use case/test-action-local] ⭐ Run Main actions/checkout@v4.1.5 [Github Actions use case/test-action-local] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0 [Github Actions use case/test-action-local] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0 [Github Actions use case/test-action-local] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0 [Github Actions use case/test-action-local] [DEBUG] Writing entry to tarball workflow/envs.txt len:0 [Github Actions use case/test-action-local] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0 [Github Actions use case/test-action-local] [DEBUG] Extracting content to '/var/run/act' [Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' [Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' [Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] 🐳 docker cp src=/Users/sokari/IdeaProjects/allure-firebase/. dst=/Users/sokari/IdeaProjects/allure-firebase [Github Actions use case/test-action-local] [DEBUG] Writing tarball /var/folders/14/v19kpvkx3g1_skt17hpxybd00000gn/T/act872674276 from /Users/sokari/IdeaProjects/allure-firebase/. [Github Actions use case/test-action-local] [DEBUG] Stripping prefix:/Users/sokari/IdeaProjects/allure-firebase/ src:/Users/sokari/IdeaProjects/allure-firebase/. DEBU[0001] Saving notices etag=ae42f9ae-b243-49c6-9f8c-1062f4444d63 [Github Actions use case/test-action-local] [DEBUG] Extracting content from '/var/folders/14/v19kpvkx3g1_skt17hpxybd00000gn/T/act872674276' to '/Users/sokari/IdeaProjects/allure-firebase' [Github Actions use case/test-action-local] ✅ Success - Main actions/checkout@v4.1.5 [Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' [Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' [Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] expression '${{ secrets.GCP_CREDENTIALS}}' rewritten to 'format('{0}', secrets.GCP_CREDENTIALS)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', secrets.GCP_CREDENTIALS)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', secrets.GCP_CREDENTIALS)' evaluated to '%!t(string=***)' [Github Actions use case/test-action-local] [DEBUG] expression '${{secrets.SLACK_TOKEN}}' rewritten to 'format('{0}', secrets.SLACK_TOKEN)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', secrets.SLACK_TOKEN)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', secrets.SLACK_TOKEN)' evaluated to '%!t(string=***)' [Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' [Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.keep-results}}' rewritten to 'format('{0}', github.event.inputs.keep-results)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.keep-results)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.keep-results)' evaluated to '%!t(string=true)' [Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.v3}}' rewritten to 'format('{0}', github.event.inputs.v3)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.v3)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.v3)' evaluated to '%!t(string=true)' [Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.storage-bucket}}' rewritten to 'format('{0}', github.event.inputs.storage-bucket)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.storage-bucket)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.storage-bucket)' evaluated to '%!t(string=gatedaccessdev.appspot.com)' [Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.website-expires}}' rewritten to 'format('{0}', github.event.inputs.website-expires)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.website-expires)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.website-expires)' evaluated to '%!t(string=)' [Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.prefix}}' rewritten to 'format('{0}', github.event.inputs.prefix)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.prefix)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.prefix)' evaluated to '%!t(string=act-allure)' [Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.show-retries}}' rewritten to 'format('{0}', github.event.inputs.show-retries)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.show-retries)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.show-retries)' evaluated to '%!t(string=)' [Github Actions use case/test-action-local] [DEBUG] expression '${{ github.event.inputs.website-id }}' rewritten to 'format('{0}', github.event.inputs.website-id)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.website-id)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.website-id)' evaluated to '%!t(string=act-allure)' [Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.keep-history}}' rewritten to 'format('{0}', github.event.inputs.keep-history)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.keep-history)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.keep-history)' evaluated to '%!t(string=true)' [Github Actions use case/test-action-local] [DEBUG] expression '${{secrets.SLACK_CHANNEL_ID}}' rewritten to 'format('{0}', secrets.SLACK_CHANNEL_ID)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', secrets.SLACK_CHANNEL_ID)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', secrets.SLACK_CHANNEL_ID)' evaluated to '%!t(string=***)' [Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.show-history}}' rewritten to 'format('{0}', github.event.inputs.show-history)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.show-history)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.show-history)' evaluated to '%!t(string=)' [Github Actions use case/test-action-local] [DEBUG] setupEnv => map[ACT:true ACTIONS_CACHE_URL:http://192.168.1.220:56897/ CI:true GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:test-action-local GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:cybersokari/allure-report-deployer GITHUB_REPOSITORY_OWNER:cybersokari GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ATTEMPT:1 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 GITHUB_WORKFLOW:Github Actions use case GITHUB_WORKSPACE:/Users/sokari/IdeaProjects/allure-firebase GOOGLE_CREDENTIALS_JSON:*** INPUT_ALLURE_RESULTS_PATH:assets/allure-results INPUT_KEEP_HISTORY:true INPUT_KEEP_RESULTS:true INPUT_PREFIX:act-allure INPUT_REPORT_ID:act-allure INPUT_SHOW_HISTORY: INPUT_SHOW_RETRIES: INPUT_SLACK_CHANNEL_ID:*** INPUT_STORAGE_BUCKET:gatedaccessdev.appspot.com INPUT_V3:true INPUT_WEBSITE_EXPIRES: ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: SLACK_TOKEN:***] [Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' [Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' [Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] evaluating expression '' [Github Actions use case/test-action-local] [DEBUG] expression '' evaluated to 'true' [Github Actions use case/test-action-local] ⭐ Run Main Allure Deployer Action [Github Actions use case/test-action-local] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0 [Github Actions use case/test-action-local] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0 [Github Actions use case/test-action-local] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0 [Github Actions use case/test-action-local] [DEBUG] Writing entry to tarball workflow/envs.txt len:0 [Github Actions use case/test-action-local] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0 [Github Actions use case/test-action-local] [DEBUG] Extracting content to '/var/run/act' [Github Actions use case/test-action-local] [DEBUG] Read action &{Allure Deployer Action Sokari Gillis-Harry Deploy Allure Reports as a website, with unique Ephemeral URLs per report and notification to Slack, No server required map[allure_results_path:{Path to the directory containing Allure results true } keep_history:{Save Report history to storage (true/false) false true} keep_results:{Save Report retries (result files) to storage (true/false) false true} prefix:{The storage bucket path to back up Allure results and history files false } report_id:{Unique identifier for the hosted report true default} show_history:{Show history in the test report (true/false) false true} show_retries:{Show retries in the test report (true/false) false true} slack_channel_id:{Slack channel ID for notifications (optional) false } storage_bucket:{Google Cloud Storage bucket name true } v3:{Try Allure version 3. Still in beta. false false} website_expires:{Expiration duration for Report's website (e.g., 2h, 7d, 3w) Max. 30d false 7d}] map[report_url:{URL to your report }] {docker map[] always() always() act-github-actions-dockeraction:latest [storage_bucket=${{ inputs.storage_bucket }} report_id=${{ inputs.report_id }} website_expires=${{ inputs.website_expires }} keep_history=${{ inputs.keep_history }} keep_results=${{ inputs.keep_results }} slack_channel_id=${{ inputs.slack_channel_id }} allure_results_path=${{ inputs.allure_results_path }} show_retries=${{ inputs.show_retries }} show_history=${{ inputs.show_history }} prefix=${{ inputs.prefix}} v3=${{inputs.v3}}] []} { }} from 'Unknown' [Github Actions use case/test-action-local] [DEBUG] About to run action &{Allure Deployer Action Sokari Gillis-Harry Deploy Allure Reports as a website, with unique Ephemeral URLs per report and notification to Slack, No server required map[allure_results_path:{Path to the directory containing Allure results true } keep_history:{Save Report history to storage (true/false) false true} keep_results:{Save Report retries (result files) to storage (true/false) false true} prefix:{The storage bucket path to back up Allure results and history files false } report_id:{Unique identifier for the hosted report true default} show_history:{Show history in the test report (true/false) false true} show_retries:{Show retries in the test report (true/false) false true} slack_channel_id:{Slack channel ID for notifications (optional) false } storage_bucket:{Google Cloud Storage bucket name true } v3:{Try Allure version 3. Still in beta. false false} website_expires:{Expiration duration for Report's website (e.g., 2h, 7d, 3w) Max. 30d false 7d}] map[report_url:{URL to your report }] {docker map[] always() always() act-github-actions-dockeraction:latest [storage_bucket=${{ inputs.storage_bucket }} report_id=${{ inputs.report_id }} website_expires=${{ inputs.website_expires }} keep_history=${{ inputs.keep_history }} keep_results=${{ inputs.keep_results }} slack_channel_id=${{ inputs.slack_channel_id }} allure_results_path=${{ inputs.allure_results_path }} show_retries=${{ inputs.show_retries }} show_history=${{ inputs.show_history }} prefix=${{ inputs.prefix}} v3=${{inputs.v3}}] []} { }} [Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' [Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' [Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] type=local-action actionDir=/Users/sokari/IdeaProjects/allure-firebase/.github/actions actionPath= workdir=/Users/sokari/IdeaProjects/allure-firebase actionCacheDir=/Users/sokari/.cache/act actionName=./.github/actions containerActionDir=/Users/sokari/IdeaProjects/allure-firebase/.github/actions [Github Actions use case/test-action-local] [DEBUG] image 'act-github-actions-dockeraction:latest' for architecture 'linux/amd64' will be built from context '/Users/sokari/IdeaProjects/allure-firebase/.github/actions/ [Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' [Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' [Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' [Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.show-retries}}' rewritten to 'format('{0}', github.event.inputs.show-retries)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.show-retries)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.show-retries)' evaluated to '%!t(string=)' [Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.show-history}}' rewritten to 'format('{0}', github.event.inputs.show-history)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.show-history)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.show-history)' evaluated to '%!t(string=)' [Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.v3}}' rewritten to 'format('{0}', github.event.inputs.v3)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.v3)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.v3)' evaluated to '%!t(string=true)' [Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.storage-bucket}}' rewritten to 'format('{0}', github.event.inputs.storage-bucket)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.storage-bucket)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.storage-bucket)' evaluated to '%!t(string=gatedaccessdev.appspot.com)' [Github Actions use case/test-action-local] [DEBUG] expression '${{ github.event.inputs.website-id }}' rewritten to 'format('{0}', github.event.inputs.website-id)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.website-id)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.website-id)' evaluated to '%!t(string=act-allure)' [Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.website-expires}}' rewritten to 'format('{0}', github.event.inputs.website-expires)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.website-expires)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.website-expires)' evaluated to '%!t(string=)' [Github Actions use case/test-action-local] [DEBUG] expression '${{secrets.SLACK_CHANNEL_ID}}' rewritten to 'format('{0}', secrets.SLACK_CHANNEL_ID)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', secrets.SLACK_CHANNEL_ID)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', secrets.SLACK_CHANNEL_ID)' evaluated to '%!t(string=***)' [Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.keep-history}}' rewritten to 'format('{0}', github.event.inputs.keep-history)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.keep-history)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.keep-history)' evaluated to '%!t(string=true)' [Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.keep-results}}' rewritten to 'format('{0}', github.event.inputs.keep-results)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.keep-results)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.keep-results)' evaluated to '%!t(string=true)' [Github Actions use case/test-action-local] [DEBUG] expression '${{github.event.inputs.prefix}}' rewritten to 'format('{0}', github.event.inputs.prefix)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('{0}', github.event.inputs.prefix)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('{0}', github.event.inputs.prefix)' evaluated to '%!t(string=act-allure)' [Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' [Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' [Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] expression 'storage_bucket=${{ inputs.storage_bucket }}' rewritten to 'format('storage_bucket={0}', inputs.storage_bucket)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('storage_bucket={0}', inputs.storage_bucket)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('storage_bucket={0}', inputs.storage_bucket)' evaluated to '%!t(string=storage_bucket=gatedaccessdev.appspot.com)' [Github Actions use case/test-action-local] [DEBUG] expression 'report_id=${{ inputs.report_id }}' rewritten to 'format('report_id={0}', inputs.report_id)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('report_id={0}', inputs.report_id)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('report_id={0}', inputs.report_id)' evaluated to '%!t(string=report_id=act-allure)' [Github Actions use case/test-action-local] [DEBUG] expression 'website_expires=${{ inputs.website_expires }}' rewritten to 'format('website_expires={0}', inputs.website_expires)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('website_expires={0}', inputs.website_expires)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('website_expires={0}', inputs.website_expires)' evaluated to '%!t(string=website_expires=)' [Github Actions use case/test-action-local] [DEBUG] expression 'keep_history=${{ inputs.keep_history }}' rewritten to 'format('keep_history={0}', inputs.keep_history)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('keep_history={0}', inputs.keep_history)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('keep_history={0}', inputs.keep_history)' evaluated to '%!t(string=keep_history=true)' [Github Actions use case/test-action-local] [DEBUG] expression 'keep_results=${{ inputs.keep_results }}' rewritten to 'format('keep_results={0}', inputs.keep_results)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('keep_results={0}', inputs.keep_results)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('keep_results={0}', inputs.keep_results)' evaluated to '%!t(string=keep_results=true)' [Github Actions use case/test-action-local] [DEBUG] expression 'slack_channel_id=${{ inputs.slack_channel_id }}' rewritten to 'format('slack_channel_id={0}', inputs.slack_channel_id)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('slack_channel_id={0}', inputs.slack_channel_id)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('slack_channel_id={0}', inputs.slack_channel_id)' evaluated to '%!t(string=slack_channel_id=***)' [Github Actions use case/test-action-local] [DEBUG] expression 'allure_results_path=${{ inputs.allure_results_path }}' rewritten to 'format('allure_results_path={0}', inputs.allure_results_path)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('allure_results_path={0}', inputs.allure_results_path)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('allure_results_path={0}', inputs.allure_results_path)' evaluated to '%!t(string=allure_results_path=assets/allure-results)' [Github Actions use case/test-action-local] [DEBUG] expression 'show_retries=${{ inputs.show_retries }}' rewritten to 'format('show_retries={0}', inputs.show_retries)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('show_retries={0}', inputs.show_retries)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('show_retries={0}', inputs.show_retries)' evaluated to '%!t(string=show_retries=)' [Github Actions use case/test-action-local] [DEBUG] expression 'show_history=${{ inputs.show_history }}' rewritten to 'format('show_history={0}', inputs.show_history)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('show_history={0}', inputs.show_history)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('show_history={0}', inputs.show_history)' evaluated to '%!t(string=show_history=)' [Github Actions use case/test-action-local] [DEBUG] expression 'prefix=${{ inputs.prefix}}' rewritten to 'format('prefix={0}', inputs.prefix)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('prefix={0}', inputs.prefix)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('prefix={0}', inputs.prefix)' evaluated to '%!t(string=prefix=act-allure)' [Github Actions use case/test-action-local] [DEBUG] expression 'v3=${{inputs.v3}}' rewritten to 'format('v3={0}', inputs.v3)' [Github Actions use case/test-action-local] [DEBUG] evaluating expression 'format('v3={0}', inputs.v3)' [Github Actions use case/test-action-local] [DEBUG] expression 'format('v3={0}', inputs.v3)' evaluated to '%!t(string=v3=true)' [Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' [Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' [Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] 🐳 docker build -t act-github-actions-dockeraction:latest --platform linux/amd64 /Users/sokari/IdeaProjects/allure-firebase/.github/actions/ [Github Actions use case/test-action-local] [DEBUG] Building image from '/Users/sokari/IdeaProjects/allure-firebase/.github/actions/' [Github Actions use case/test-action-local] [DEBUG] Creating image from context dir '/Users/sokari/IdeaProjects/allure-firebase/.github/actions/' with tag 'act-github-actions-dockeraction:latest' and platform 'linux/amd64' [Github Actions use case/test-action-local] 🐳 docker pull image=act-github-actions-dockeraction:latest platform=linux/amd64 username= forcePull=false [Github Actions use case/test-action-local] [DEBUG] 🐳 docker pull act-github-actions-dockeraction:latest [Github Actions use case/test-action-local] [DEBUG] Image exists? false [Github Actions use case/test-action-local] [DEBUG] pulling image 'docker.io/library/act-github-actions-dockeraction:latest' (linux/amd64) [Github Actions use case/test-action-local] using DockerAuthConfig authentication for docker pull [Github Actions use case/test-action-local] ❌ Failure - Main Allure Deployer Action [Github Actions use case/test-action-local] Error response from daemon: pull access denied for act-github-actions-dockeraction, repository does not exist or may require 'docker login': denied: requested access to the resource is denied [Github Actions use case/test-action-local] [DEBUG] skipping post step for 'actions/checkout@v4.1.5': no action model available [Github Actions use case/test-action-local] Cleaning up container for job test-action-local [Github Actions use case/test-action-local] [DEBUG] Removed container: 479af981758375aeed0fe8b2312ab82269d35d43a47d4003890a02848dd17c9c [Github Actions use case/test-action-local] [DEBUG] 🐳 docker volume rm act-Github-Actions-use-case-test-action-local-2dba318b4dcd37ec6d1af10e428406629eb2ed70d204c2cec52e4d112ba97f83 [Github Actions use case/test-action-local] [DEBUG] 🐳 docker volume rm act-Github-Actions-use-case-test-action-local-2dba318b4dcd37ec6d1af10e428406629eb2ed70d204c2cec52e4d112ba97f83-env [Github Actions use case/test-action-local] 🏁 Job failed [Github Actions use case/test-action-local] [DEBUG] Loading revision from git directory [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 [Github Actions use case/test-action-local] [DEBUG] HEAD points to 'b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322' [Github Actions use case/test-action-local] [DEBUG] using github ref: refs/heads/main [Github Actions use case/test-action-local] [DEBUG] Found revision: b83e9d3c74038c6b4b09e16c5ef76cb9e04bb322 ``` ### Additional information _No response_
Author
Owner

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

I may have the same issue, seems to happen with ubuntu-latest (on day of this comment), using checkout@v3 or v4

<!-- gh-comment-id:2566101515 --> @brschick commented on GitHub (Dec 31, 2024): I may have the same issue, seems to happen with ubuntu-latest (on day of this comment), using checkout@v3 or v4
Author
Owner

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

Original issue is an usage error here, while using --container-architecture (aka docker platform flag)

docker build -t act-github-actions-dockeraction:latest -f dockerfiles/action.Dockerfile .

Act ignores the --pull=false, due to linux/arm64 != linux/amd64.

Use the platform option with value linux/amd64 for docker build.

I may have the same issue, seems to happen with ubuntu-latest (on day of this comment), using checkout@v3 or v4

Your issue cannot be classified e.g. lack of logs and your description implies this is unrelated.

<!-- gh-comment-id:2566326909 --> @ChristopherHX commented on GitHub (Dec 31, 2024): Original issue is an usage error here, while using `--container-architecture` (aka docker platform flag) > ```shell > docker build -t act-github-actions-dockeraction:latest -f dockerfiles/action.Dockerfile . > ``` Act ignores the `--pull=false`, due to `linux/arm64` != `linux/amd64`. Use the platform option with value `linux/amd64` for docker build. > I may have the same issue, seems to happen with ubuntu-latest (on day of this comment), using checkout@v3 or v4 Your issue cannot be classified e.g. lack of logs and your description implies this is unrelated.
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#1176
No description provided.