status
stringclasses 1
value | repo_name
stringclasses 13
values | repo_url
stringclasses 13
values | issue_id
int64 1
104k
| updated_files
stringlengths 11
1.76k
| title
stringlengths 4
369
| body
stringlengths 0
254k
⌀ | issue_url
stringlengths 38
55
| pull_url
stringlengths 38
53
| before_fix_sha
stringlengths 40
40
| after_fix_sha
stringlengths 40
40
| report_datetime
unknown | language
stringclasses 5
values | commit_datetime
unknown |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
closed | nektos/act | https://github.com/nektos/act | 1,885 | ["go.mod", "go.sum"] | failed to identify reference (tag/branch) for the checked-out revision | ### Bug report info
```plain text
act version: 0.2.46
GOOS: linux
GOARCH: amd64
NumCPU: 128
Docker host: DOCKER_HOST environment variable is not set
Sockets found:
/var/run/docker.sock
Config files:
/home/andre-silva/.actrc:
-P ubuntu-latest=catthehacker/ubuntu:full-latest
-P ubuntu-latest=catthehacker/ubuntu:full-20.04
-P ubuntu-18.04=catthehacker/ubuntu:full-18.04
Build info:
Go version: go1.18.10
Module path: github.com/nektos/act
Main version: (devel)
Main path: github.com/nektos/act
Main checksum:
Build settings:
-compiler: gc
-ldflags: -s -w -X main.version=0.2.46 -X main.commit=b0d0cec71f2240fc629dcaa1889ed8c4ad52beb9 -X main.date=2023-06-01T02:39:24Z -X main.builtBy=goreleaser
CGO_ENABLED: 0
GOARCH: amd64
GOOS: linux
GOAMD64: v1
vcs: git
vcs.revision: b0d0cec71f2240fc629dcaa1889ed8c4ad52beb9
vcs.time: 2023-06-01T02:39:05Z
vcs.modified: false
Docker Engine:
Engine version: 20.10.21
Engine runtime: runc
Cgroup version: 1
Cgroup driver: cgroupfs
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Ubuntu 20.04.6 LTS
OS type: linux
OS version: 20.04
OS arch: x86_64
OS kernel: 5.4.0-146-generic
OS CPU: 128
OS memory: 515580 MB
Security options:
name=apparmor
name=seccomp,profile=default
```
### Command used with act
```sh
act -P ubuntu-latest=catthehacker/ubuntu:full-latest --bind --pull=false --container-options '-u {os.getuid()}' -v --rm --cache-server-path /tmp/{uuid.uuid4()}
```
### Describe issue
Sometines (not always), when running `act` in parallel there occur failures in checking out either the repository or some actions (e.g, `setup-java`, `setup-python`).
We have tried and this also occurs in older version (`0.2.44`, `0.2.45`), with and without the cache server feature (and using the workaround suggested in https://github.com/nektos/act/issues/1825#issuecomment-1606063316)
### Link to GitHub repository
https://github.com/Nfsaavedra/crawlergpt-test-repo
### Workflow content
```yml
name: test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup JDK${{ matrix.java-version }}
uses: actions/setup-java@v3
with:
java-version: 8
distribution: 'temurin'
- name: Build and run tests
run: mvn test
```
### Relevant log output
```sh
stdout
[DEBUG] executing remote job container: [node /var/run/act/actions/actions-setup-java@v3/dist/cleanup/index.js]
[7cfa0dd0-4522-4e9e-a878-d412f78fe00a/test] 🐳 docker exec cmd=[node /var/run/act/actions/actions-setup-java@v3/dist/cleanup/index.js] user= workdir=
[7cfa0dd0-4522-4e9e-a878-d412f78fe00a/test] [DEBUG] Exec command '[node /var/run/act/actions/actions-setup-java@v3/dist/cleanup/index.js]'
[7cfa0dd0-4522-4e9e-a878-d412f78fe00a/test] [DEBUG] Working directory '/tmp/01649026-bc2d-4827-b9ce-c1719a1626d9'
[7cfa0dd0-4522-4e9e-a878-d412f78fe00a/test] ✅ Success - Post Setup JDK
[7cfa0dd0-4522-4e9e-a878-d412f78fe00a/test] [DEBUG] skipping post step for 'actions/checkout@v3': no action model available
[7cfa0dd0-4522-4e9e-a878-d412f78fe00a/test] [DEBUG] Removed container: 768da5a678a609a6dff400dafbaf92b5c59b4efb5f952ad2ee03742033c79499
[7cfa0dd0-4522-4e9e-a878-d412f78fe00a/test] [DEBUG] 🐳 docker volume rm act-7cfa0dd0-4522-4e9e-a878-d412f78fe00a-test-3d0c43acad5aea917fd27c1680375781e3cb8b2ece65197f633f1056adb5edb9-env
[7cfa0dd0-4522-4e9e-a878-d412f78fe00a/test] 🏁 Job failed
[7cfa0dd0-4522-4e9e-a878-d412f78fe00a/test] [DEBUG] Loading revision from git directory
[7cfa0dd0-4522-4e9e-a878-d412f78fe00a/test] [DEBUG] Found revision: 5871e6f8f072b4b3e07d4753c55c6c6302419b1e
[7cfa0dd0-4522-4e9e-a878-d412f78fe00a/test] [DEBUG] HEAD points to '5871e6f8f072b4b3e07d4753c55c6c6302419b1e'
[7cfa0dd0-4522-4e9e-a878-d412f78fe00a/test] unable to get git ref: failed to identify reference (tag/branch) for the checked-out revision '5871e6f8f072b4b3e07d4753c55c6c6302419b1e'
[7cfa0dd0-4522-4e9e-a878-d412f78fe00a/test] [DEBUG] Found revision: 5871e6f8f072b4b3e07d4753c55c6c6302419b1e
stderr
time=\"2023-06-26T10:01:01+02:00\" level=debug msg=\"Loading environment from /tmp/01649026-bc2d-4827-b9ce-c1719a1626d9/.env\"
time=\"2023-06-26T10:01:01+02:00\" level=debug msg=\"Loading action inputs from /tmp/01649026-bc2d-4827-b9ce-c1719a1626d9/.input\"
time=\"2023-06-26T10:01:01+02:00\" level=debug msg=\"Loading secrets from /tmp/01649026-bc2d-4827-b9ce-c1719a1626d9/.secrets\"
time=\"2023-06-26T10:01:01+02:00\" level=debug msg=\"Conditional GET for notices etag=4bd065a2-f056-4b52-82b1-b5c71f0213a7\"
time=\"2023-06-26T10:01:01+02:00\" level=debug msg=\"Evaluated matrix inclusions: map[]\"
time=\"2023-06-26T10:01:01+02:00\" level=debug msg=\"Loading workflow '/tmp/01649026-bc2d-4827-b9ce-c1719a1626d9/.github/workflows/tests-crawler.yml'\"
time=\"2023-06-26T10:01:01+02:00\" level=debug msg=\"Reading workflow '/tmp/01649026-bc2d-4827-b9ce-c1719a1626d9/.github/workflows/tests-crawler.yml'\"
time=\"2023-06-26T10:01:01+02:00\" level=debug msg=\"Preparing plan with all jobs\"
time=\"2023-06-26T10:01:01+02:00\" level=debug msg=\"Using the only detected workflow event: push\"
time=\"2023-06-26T10:01:01+02:00\" level=debug msg=\"Planning jobs for event: push\"\ntime=\"2023-06-26T10:01:01+02:00\" level=debug msg=\"gc: 2023-06-26 10:01:01.083276234 +0200 CEST m=+0.014729264\" module=artifactcache
time=\"2023-06-26T10:01:01+02:00\" level=debug msg=\"Final matrix after applying user inclusions '[map[]]'\"
time=\"2023-06-26T10:01:01+02:00\" level=debug msg=\"Loading revision from git directory\"\ntime=\"2023-06-26T10:01:01+02:00\" level=debug msg=\"Found revision: 5871e6f8f072b4b3e07d4753c55c6c6302419b1e\"
time=\"2023-06-26T10:01:01+02:00\" level=debug msg=\"HEAD points to '5871e6f8f072b4b3e07d4753c55c6c6302419b1e'\"
time=\"2023-06-26T10:01:01+02:00\" level=warning msg=\"unable to get git ref: failed to identify reference (tag/branch) for the checked-out revision '5871e6f8f072b4b3e07d4753c55c6c6302419b1e'\"
time=\"2023-06-26T10:01:01+02:00\" level=debug msg=\"Found revision: 5871e6f8f072b4b3e07d4753c55c6c6302419b1e\"
time=\"2023-06-26T10:01:01+02:00\" level=debug msg=\"Saving notices etag=4bd065a2-f056-4b52-82b1-b5c71f0213a7\"
time=\"2023-06-26T10:01:01+02:00\" level=debug msg=\"No new notices\"
Error: Job 'test' failed\n
```
### Additional information
_No response_ | https://github.com/nektos/act/issues/1885 | https://github.com/nektos/act/pull/1724 | f2bd194c7fa282fb35f31bcafe9bf1875da71fc7 | c5ce502f9f9e98ea76a09858075e3ee91da6bd10 | "2023-06-26T08:07:29Z" | go | "2023-04-10T18:58:51Z" |
closed | nektos/act | https://github.com/nektos/act | 1,874 | ["go.mod", "go.sum"] | How to clone repository instead of copying from local directory? | ### Bug report info
```plain text
a@a-virtual-machine:/mnt/hgfs/Remote/cashare-react-ui$ ./bin/act --bug-report
act version: 0.2.46
GOOS: linux
GOARCH: amd64
NumCPU: 6
Docker host: DOCKER_HOST environment variable is not set
Sockets found:
/var/run/docker.sock
Config files:
/home/a/.actrc:
-P ubuntu-latest=node:16-buster-slim
-P ubuntu-22.04=node:16-bullseye-slim
-P ubuntu-20.04=node:16-buster-slim
-P ubuntu-18.04=node:16-buster-slim
Build info:
Go version: go1.18.10
Module path: github.com/nektos/act
Main version: (devel)
Main path: github.com/nektos/act
Main checksum:
Build settings:
-compiler: gc
-ldflags: -s -w -X main.version=0.2.46 -X main.commit=b0d0cec71f2240fc629dcaa1889ed8c4ad52beb9 -X main.date=2023-06-01T02:39:24Z -X main.builtBy=goreleaser
CGO_ENABLED: 0
GOARCH: amd64
GOOS: linux
GOAMD64: v1
vcs: git
vcs.revision: b0d0cec71f2240fc629dcaa1889ed8c4ad52beb9
vcs.time: 2023-06-01T02:39:05Z
vcs.modified: false
Docker Engine:
Engine version: 24.0.2
Engine runtime: runc
Cgroup version: 2
Cgroup driver: systemd
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Ubuntu 22.10
OS type: linux
OS version: 22.10
OS arch: x86_64
OS kernel: 5.19.0-45-generic
OS CPU: 6
OS memory: 7936 MB
Security options:
name=apparmor
name=seccomp,profile=builtin
name=cgroupns
```
### Command used with act
```sh
./bin/act
```
### Describe issue
Entire node_modules directory gets copies each time an action runs
I'd like it to repeat what github actions do - clone and run `npm i`
### Link to GitHub repository
_No response_
### Workflow content
```yml
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Node.js CI
on:
push:
branches: [ "master", "staging" ]
jobs:
web-deploy:
name: 🎉 Deploy
runs-on: ubuntu-latest
steps:
- name: 🚚 Get latest code
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '12'
- name: 🔨 Build Project
run: |
npm install
yarn build
```
### Relevant log output
```sh
a@a-virtual-machine:/mnt/hgfs/Remote/cashare-react-ui$ ./bin/act
[Node.js CI/🎉 Deploy ] 🚀 Start image=node:16-buster-slim
[Node.js CI/🎉 Deploy ] 🐳 docker pull image=node:16-buster-slim platform= username= forcePull=true
[Node.js CI/🎉 Deploy ] using DockerAuthConfig authentication for docker pull
[Node.js CI/🎉 Deploy ] 🐳 docker create image=node:16-buster-slim platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[]
[Node.js CI/🎉 Deploy ] 🐳 docker run image=node:16-buster-slim platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[]
[Node.js CI/🎉 Deploy ] ☁ git clone 'https://github.com/actions/setup-node' # ref=v2
[Node.js CI/🎉 Deploy ] ⭐ Run Main 🚚 Get latest code
[Node.js CI/🎉 Deploy ] 🐳 docker cp src=/mnt/hgfs/Remote/cashare-react-ui/. dst=/mnt/hgfs/Remote/cashare-react-ui
```
### Additional information
I've encountered mentions of "local actions" in other issues but can't see any docs on that | https://github.com/nektos/act/issues/1874 | https://github.com/nektos/act/pull/1724 | f2bd194c7fa282fb35f31bcafe9bf1875da71fc7 | c5ce502f9f9e98ea76a09858075e3ee91da6bd10 | "2023-06-20T12:08:48Z" | go | "2023-04-10T18:58:51Z" |
closed | nektos/act | https://github.com/nektos/act | 1,862 | ["cmd/input.go", "cmd/root.go", "pkg/runner/run_context.go", "pkg/runner/runner.go"] | Allow to change location of workspaces when using -self-hosted | ### Act version
nektos/v0.2.45
### Feature description
When running `act` manually or as runner invoked through [Gitea actions](https://gitea.com/gitea/act_runner) the workspace will end up at `~/.cache/act` with no way to change this.
It would provide additional flexibility if there was a cli flag to move this directory though, e.g. to use a ram disk or some other custom location. This would be similar to how the location of the cache server can also be specified via `--cache-server-path`. | https://github.com/nektos/act/issues/1862 | https://github.com/nektos/act/pull/1863 | 24348ff1eec2ba2bec4a29fd4d544cb1788c9a1e | 74c27db4dd685b1465832c4de73786e397e2a3ce | "2023-06-12T18:38:38Z" | go | "2023-06-15T01:16:00Z" |
closed | nektos/act | https://github.com/nektos/act | 1,825 | ["pkg/artifactcache/handler.go", "pkg/artifactcache/handler_test.go"] | running two act commands in parallel results in timeout | ### Bug report info
```plain text
❯ act --bug-report
act version: 0.2.45
GOOS: linux
GOARCH: amd64
NumCPU: 16
Docker host: DOCKER_HOST environment variable is not set
Sockets found:
/var/run/docker.sock
Config files:
Build info:
Go version: go1.20.4
Module path: github.com/nektos/act
Main version: (devel)
Main path: github.com/nektos/act
Main checksum:
Build settings:
-buildmode: pie
-compiler: gc
-trimpath: true
CGO_ENABLED: 1
GOARCH: amd64
GOOS: linux
GOAMD64: v1
vcs: git
vcs.revision: 25dd7a13c00002e8fad19eca9f03a67d4ff8163a
vcs.time: 2023-05-02T14:22:58Z
vcs.modified: true
Docker Engine:
Engine version: 24.0.0
Engine runtime: runc
Cgroup version: 2
Cgroup driver: systemd
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Arch Linux
OS type: linux
OS version:
OS arch: x86_64
OS kernel: 6.3.3-arch1-1
OS CPU: 16
OS memory: 31532 MB
Security options:
name=seccomp,profile=builtin
name=cgroupns
```
### Command used with act
```sh
act -P ubuntu-latest=catthehacker/ubuntu:full-latest --rm --bind --container-options '-u 1000:1000' -W .github/workflows/tests.yml
```
### Describe issue
I am trying to run two act commands in parallel (not necessarily on the same project, we also tried running different workflows from different projects in parallel).
The first command runs as usual.
However, the second and later commands always end up in the same error: `Error: timeout.
Does act support parallel executions of different workflows? I could not find any mention to that in the documentation nor the issues.
### Link to GitHub repository
https://github.com/ASSERT-KTH/flacoco
### Workflow content
```yml
name: tests
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
java-version: [ 8 , 11 , 16 , 17 ]
compiler-version: [ 1.1 , 1.2 , 1.3 , 1.4 , 5 , 6 , 7 , 8 , 9 , 10 , 11 , 12 , 13 , 14 , 15 , 16 , 17 ]
os: [ ubuntu-latest , macos-latest , windows-latest ]
steps:
- name: Checkout
uses: actions/[email protected]
if: ${{ matrix.compiler-version <= matrix.java-version && (matrix.java-version < 14 || matrix.compiler-version >= 7) && (matrix.java-version < 11 || matrix.compiler-version >= 6) }}
- name: Setup JDK${{ matrix.java-version }}
uses: actions/setup-java@v3
if: ${{ matrix.compiler-version <= matrix.java-version && (matrix.java-version < 14 || matrix.compiler-version >= 7) && (matrix.java-version < 11 || matrix.compiler-version >= 6) }}
with:
java-version: ${{ matrix.java-version }}
distribution: 'temurin'
- name: Install example projects
run: ./.github/install_examples.sh
if: ${{ matrix.compiler-version <= matrix.java-version && (matrix.java-version < 14 || matrix.compiler-version >= 7) && (matrix.java-version < 11 || matrix.compiler-version >= 6) }}
shell: bash
env:
SRC_VERSION: ${{ matrix.compiler-version }}
- name: Build and run tests
run: mvn --batch-mode clean test
if: ${{ matrix.compiler-version <= matrix.java-version && (matrix.java-version < 14 || matrix.compiler-version >= 7) && (matrix.java-version < 11 || matrix.compiler-version >= 6) }}
env:
SRC_VERSION: ${{ matrix.compiler-version }}
- name: Codecov
uses: codecov/[email protected]
if: ${{ matrix.compiler-version == 8 && matrix.java-version == 8 && matrix.os == 'ubuntu-latest' }}
```
### Relevant log output
```sh
❯ act -P ubuntu-latest=catthehacker/ubuntu:full-latest --rm --bind --container-options '-u 1000:1000' -W .github/workflows/tests.yml -v
DEBU[0000] Loading environment from /home/andre/Repos/flacoco/.env
DEBU[0000] Loading action inputs from /home/andre/Repos/flacoco/.input
DEBU[0000] Loading secrets from /home/andre/Repos/flacoco/.secrets
DEBU[0000] Evaluated matrix inclusions: map[]
DEBU[0000] Loading workflow '/home/andre/Repos/flacoco/.github/workflows/tests.yml'
DEBU[0000] Reading workflow '/home/andre/Repos/flacoco/.github/workflows/tests.yml'
DEBU[0000] Conditional GET for notices etag=0d767207-f640-4fe2-81f0-b0185bc1bc73
DEBU[0000] Preparing plan with all jobs
DEBU[0000] Using default workflow event: push
DEBU[0000] Planning jobs for event: push
DEBU[0000] Saving notices etag=0d767207-f640-4fe2-81f0-b0185bc1bc73
DEBU[0000] No new notices
Error: timeout
```
### Additional information
_No response_ | https://github.com/nektos/act/issues/1825 | https://github.com/nektos/act/pull/1879 | 310cb79e81e07ef11985b2f934092b82b167ccf1 | e597046195774991a75ff66506fdfcc3fc903364 | "2023-05-27T09:08:31Z" | go | "2023-07-10T16:57:06Z" |
closed | nektos/act | https://github.com/nektos/act | 1,823 | ["pkg/artifactcache/handler.go"] | Cache `restore-keys` not matched in creation reverse order | ### Bug report info
```plain text
act version: 0.2.45
GOOS: linux
GOARCH: amd64
NumCPU: 8
Docker host: DOCKER_HOST environment variable is not set
Sockets found:
/var/run/docker.sock
Config files:
/home/vladum/.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.19.3
Module path: github.com/nektos/act
Main version: v0.2.45
Main path: github.com/nektos/act
Main checksum: h1:I1yFTwBa5f2XOhsZFicj7W4cY40joNNrgah8mh0l7lg=
Build settings:
-compiler: gc
CGO_ENABLED: 1
CGO_CFLAGS:
CGO_CPPFLAGS:
CGO_CXXFLAGS:
CGO_LDFLAGS:
GOARCH: amd64
GOOS: linux
GOAMD64: v1
Docker Engine:
Engine version: 23.0.5
Engine runtime: runc
Cgroup version: 2
Cgroup driver: systemd
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Ubuntu 22.04.2 LTS
OS type: linux
OS version: 22.04
OS arch: x86_64
OS kernel: 5.19.0-41-generic
OS CPU: 8
OS memory: 31763 MB
Security options:
name=apparmor
name=seccomp,profile=builtin
name=cgroupns
```
### Command used with act
```sh
act push
```
### Describe issue
First, thanks a lot for adding cache support! CC @wolfogre
Now, on the bug...
GitHub Actions cache [docs](https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#matching-a-cache-key) says the following:
> When a key doesn't match directly, the action searches for keys prefixed with the restore key. If there are multiple partial matches for a restore key, the action returns the most recently created cache.
I don't think this happens in `act`.
This behavior is important when implementing the cache update trick documented [here](https://github.com/actions/cache/blob/6a1a45d/tips-and-workarounds.md#update-a-cache). In summary, we want to restore the **latest** cache entry and write to a new one.
Side note: In the repro I posted, `github.run_id` is replaced by seconds since the epoch because `run_id` would be always 1 in `act`. This is not important for this bug, but it would be nice to get a unique `run_id` - maybe there's a way and I don't know it.
In the workflow I posted, the expectation is that `file` will keep getting dates appended to it every time the workflow is triggered. This happens on GitHub, but not on `act`.
Anyway, I think the fix is trivial: change `findCache` to `SortBy("CreatedAt").Reverse()` instead of the current `SortBy("Key")`.
Happy to contribute if someone more familiar with the code confirms this is the right approach.
Thanks!
### Link to GitHub repository
_No response_
### Workflow content
```yml
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: generate incrementing counter
id: counter
run: echo "value=$(date +%s)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
with:
key: test-${{ steps.counter.outputs.value }}
path: file
restore-keys: test-
- name: read file loaded from cache
run: cat file || true
- name: append to file to be cached
run: echo $(date) >> file
```
### Relevant log output
```sh
n/a
```
### Additional information
_No response_ | https://github.com/nektos/act/issues/1823 | https://github.com/nektos/act/pull/2153 | 15bb54f14e96734963b78310f0cb8ed0c67e25bb | 7f7d84b10ffbfbb699c0d95c17e94ce9a610ac44 | "2023-05-25T22:14:11Z" | go | "2024-01-20T12:11:50Z" |
closed | nektos/act | https://github.com/nektos/act | 1,821 | [".github/actions/run-tests/action.yml", "cmd/input.go", "cmd/root.go", "pkg/runner/logger.go", "pkg/runner/runner.go"] | Hide workflow and job names from output using flag | ### Act version
0.2.45
### Feature description
When running act it displays the workflow name and job name down the left hand side in the output. While this is great default behavior sometimes it would be good to not display this information (especially if you have long workflow and job names).
Would it be possible to hide this information from the output if you provide act with a flag?
Example: Hide the area in the red box

Thanks for your work on this awesome project!
| https://github.com/nektos/act/issues/1821 | https://github.com/nektos/act/pull/1920 | 4810f69367a141f9cc282d21ab61bb598d5ec584 | 83b0a5b1f2cbc19338fa57659c51695744e89730 | "2023-05-25T06:58:52Z" | go | "2023-07-19T21:45:44Z" |
closed | nektos/act | https://github.com/nektos/act | 1,819 | ["pkg/container/docker_run.go", "pkg/container/host_environment.go"] | The runner.arch environment variables need to be updated | The runner.arch environment variables are upper case in github runners and are used by actions like https://github.com/sigstore/cosign-installer to install scripts. | https://github.com/nektos/act/issues/1819 | https://github.com/nektos/act/pull/1818 | 16c574cd266ffe11ae48a37ccf3f6582ce90de21 | 11dd2ac7457bd22080b9d8e5277327110563919a | "2023-05-22T20:57:01Z" | go | "2023-05-23T12:26:47Z" |
closed | nektos/act | https://github.com/nektos/act | 1,769 | ["pkg/container/docker_pull.go"] | Error: Error response from daemon: Head "https://registry-1.docker.io/v2/catthehacker/ubuntu/manifests/act-latest": unauthorized: incorrect username or password | ### Bug report info
```plain text
act version: 0.2.44
GOOS: windows
GOARCH: amd64
NumCPU: 16
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
\\.\pipe\docker_engine
Config files:
C:\Users\PavelAgejkin\.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.18.10
Module path: github.com/nektos/act
Main version: (devel)
Main path: github.com/nektos/act
Main checksum:
Build settings:
-compiler: gc
-ldflags: -s -w -X main.version=0.2.44 -X main.commit=220d6f1251aea75c378e5a98546f43cd918e1892 -X main.date=2023-04-01T02:18:17Z -X main.builtBy=goreleaser
CGO_ENABLED: 0
GOARCH: amd64
GOOS: windows
GOAMD64: v1
vcs: git
vcs.revision: 220d6f1251aea75c378e5a98546f43cd918e1892
vcs.time: 2023-04-01T02:17:52Z
vcs.modified: false
Docker Engine:
Engine version: 20.10.24
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: x86_64
OS kernel: 5.15.90.1-microsoft-standard-WSL2
OS CPU: 2
OS memory: 2913 MB
Security options:
name=seccomp,profile=default
name=cgroupns
```
### Command used with act
```sh
act pull_request
```
### Describe issue
I have installed act long time ago and it worked as expected, but now when I try to execute act I get error:
```
[dotnet builder/DotNetBuilder] � Start image=catthehacker/ubuntu:act-latest
[dotnet builder/DotNetBuilder] � docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
Error: Error response from daemon: Head "https://registry-1.docker.io/v2/catthehacker/ubuntu/manifests/act-latest": unauthorized: incorrect username or password
```
I tried fixes from https://github.com/nektos/act/issues/1248
`docker login ghcr.io` and `docker logout ghcr.io`
But still same issue
### Link to GitHub repository
_No response_
### Workflow content
```yml
name: dotnet builder
on:
pull_request_target:
types: [ opened, edited, reopened, synchronize ]
pull_request:
types: [ opened, edited, reopened, synchronize ]
push:
branches-ignore:
- 'sync/**'
jobs:
DotNetBuilder:
runs-on: ubuntu-latest
steps:
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: |
echo "$GITHUB_CONTEXT"
- name: git checkout PR
if: github.event_name == 'pull_request' || github.event_name == 'pull_request_target'
run: |
cd $GITHUB_WORKSPACE
git init
git fetch --force \
--progress \
-- https://user:${{ secrets.GITHUB_TOKEN }}@github.com/*********/************** \
+refs/heads/release:refs/remotes/origin/release \
+refs/heads/develop:refs/remotes/origin/develop \
+refs/heads/{{ github.event.pull_request.base.ref }}:refs/remotes/origin/{{ github.event.pull_request.base.ref }} \
+refs/pull/${{ github.event.pull_request.number }}/*:refs/remotes/origin/pr/${{ github.event.pull_request.number }}/*
git checkout origin/pr/${{ github.event.pull_request.number }}/merge
git show-ref
```
### Relevant log output
```sh
λ act pull_request -v
time="2023-04-25T17:49:02+03:00" level=debug msg="Loading environment from C:\\Projects\\MyProject\\.env"
time="2023-04-25T17:49:02+03:00" level=debug msg="Conditional GET for notices etag=7f63cf74-b2af-4e60-912f-c5531fdabaf0"
time="2023-04-25T17:49:02+03:00" level=debug msg="Loading action inputs from C:\\Projects\\MyProject\\.input"
time="2023-04-25T17:49:02+03:00" level=debug msg="Loading secrets from C:\\Projects\\MyProject\\.secrets"
time="2023-04-25T17:49:02+03:00" level=debug msg="Evaluated matrix inclusions: map[]"
time="2023-04-25T17:49:02+03:00" level=debug msg="Loading workflows from 'C:\\Projects\\MyProject\\.github\\workflows'"
time="2023-04-25T17:49:02+03:00" level=debug msg="Loading workflows recursively"
time="2023-04-25T17:49:02+03:00" level=debug msg="Found workflow 'builder.yml' in 'C:\\Projects\\MyProject\\.github\\workflows\\builder.yml'"
time="2023-04-25T17:49:02+03:00" level=debug msg="Found workflow 'pr.json' in 'C:\\Projects\\MyProject\\.github\\workflows\\pr.json'"
time="2023-04-25T17:49:02+03:00" level=debug msg="Found workflow 'syncComposer.yml' in 'C:\\Projects\\MyProject\\.github\\workflows\\syncComposer.yml'"
time="2023-04-25T17:49:02+03:00" level=debug msg="Found workflow 'syncDev.yml' in 'C:\\Projects\\MyProject\\.github\\workflows\\syncDev.yml'"
time="2023-04-25T17:49:02+03:00" level=debug msg="Found workflow 'template.yml' in 'C:\\Projects\\MyProject\\.github\\workflows\\template.yml'"
time="2023-04-25T17:49:02+03:00" level=debug msg="Found workflow 'updateNuGet.yml' in 'C:\\Projects\\MyProject\\.github\\workflows\\updateNuGet.yml'"
time="2023-04-25T17:49:02+03:00" level=debug msg="Reading workflow 'C:\\Projects\\MyProject\\.github\\workflows\\builder.yml'"
time="2023-04-25T17:49:02+03:00" level=debug msg="Reading workflow 'C:\\Projects\\MyProject\\.github\\workflows\\syncComposer.yml'"
time="2023-04-25T17:49:02+03:00" level=debug msg="Reading workflow 'C:\\Projects\\MyProject\\.github\\workflows\\syncDev.yml'"
time="2023-04-25T17:49:02+03:00" level=debug msg="Reading workflow 'C:\\Projects\\MyProject\\.github\\workflows\\template.yml'"
time="2023-04-25T17:49:02+03:00" level=debug msg="Reading workflow 'C:\\Projects\\MyProject\\.github\\workflows\\updateNuGet.yml'"
time="2023-04-25T17:49:02+03:00" level=debug msg="Using first passed in arguments event for filtering: pull_request"
time="2023-04-25T17:49:02+03:00" level=debug msg="Preparing plan for a event: pull_request"
time="2023-04-25T17:49:02+03:00" level=debug msg="Using first passed in arguments event: pull_request"
time="2023-04-25T17:49:02+03:00" level=debug msg="Planning jobs for event: pull_request"
time="2023-04-25T17:49:02+03:00" level=debug msg="Final matrix after applying user inclusions '[map[]]'"
time="2023-04-25T17:49:02+03:00" level=debug msg="Found revision: 6034231b5ca9026a8e4c48be90664de8fba0b4c6"
[dotnet builder/DotNetBuilder] [DEBUG] evaluating expression 'success()'
[dotnet builder/DotNetBuilder] [DEBUG] expression 'success()' evaluated to 'true'
[dotnet builder/DotNetBuilder] � Start image=catthehacker/ubuntu:act-latest
[dotnet builder/DotNetBuilder] � docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
[dotnet builder/DotNetBuilder] [DEBUG] � docker pull catthehacker/ubuntu:act-latest
[dotnet builder/DotNetBuilder] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
time="2023-04-25T17:49:03+03:00" level=debug msg="Saving notices etag=7f63cf74-b2af-4e60-912f-c5531fdabaf0"
time="2023-04-25T17:49:03+03:00" level=debug msg="No new notices"
Error: Error response from daemon: Head "https://registry-1.docker.io/v2/catthehacker/ubuntu/manifests/act-latest": toomanyrequests: too many failed login attempts for username or IP address
```
```
### Additional information
_No response_ | https://github.com/nektos/act/issues/1769 | https://github.com/nektos/act/pull/1774 | 4721abfa6dbc661922d34d20b9f60aa14eb30b34 | aa212773804561eaee04c3b4a7d9399dfbb9cad1 | "2023-04-25T14:49:20Z" | go | "2023-05-03T16:44:26Z" |
closed | nektos/act | https://github.com/nektos/act | 1,766 | ["pkg/container/host_environment.go"] | Windows build backslash issue | ### Bug report info
```plain text
act version: 0.2.44
GOOS: windows
GOARCH: amd64
NumCPU: 8
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
\\.\pipe\docker_engine
Config files:
C:\Users\headk\.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.18.10
Module path: github.com/nektos/act
Main version: (devel)
Main path: github.com/nektos/act
Main checksum:
Build settings:
-compiler: gc
-ldflags: -s -w -X main.version=0.2.44 -X main.commit=220d6f1251aea75c378e5a98546f43cd918e1892 -X main.date=2023-04-01T02:18:17Z -X main.builtBy=goreleaser
CGO_ENABLED: 0
GOARCH: amd64
GOOS: windows
GOAMD64: v1
vcs: git
vcs.revision: 220d6f1251aea75c378e5a98546f43cd918e1892
vcs.time: 2023-04-01T02:17:52Z
vcs.modified: false
Docker Engine:
Engine version: 20.10.24
Engine runtime:
Cgroup version:
Cgroup driver:
Storage driver: windowsfilter
Registry URI: https://index.docker.io/v1/
OS: Windows 10 Pro Version 2009 (OS Build 19045.2846)
OS type: windows
OS version: 10.0.19045
OS arch: x86_64
OS kernel: 10.0 19045 (19041.1.amd64fre.vb_release.191206-1406)
OS CPU: 8
OS memory: 32748 MB
Security options:
```
### Command used with act
```sh
act push -P windows-2019=-self-hosted
```
### Describe issue
Build fails because the folder used is `C:Usersheadk.cacheact8828939fe4ffb927act/workflow/2` when it should be `C:/Users/headk/.cache/act/8828939fe4ffb927/act/workflow/2`.
It looks like it's removing backslashes from the path.
### Link to GitHub repository
_No response_
### Workflow content
```yml
name: amd64_windows_gcc
on: [push, pull_request]
jobs:
amd64_windows_gcc:
runs-on: windows-2019
timeout-minutes: 5
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v3
- uses: msys2/setup-msys2@v2
with:
install: gcc make
- run: make
```
### Relevant log output
```sh
| Database directory: /var/lib/pacman/
| :: Do you want to remove unused repositories? [Y/n]
| removing unused sync repositories...
[amd64_windows_gcc/amd64_windows_gcc] ❓ ::endgroup::
[amd64_windows_gcc/amd64_windows_gcc] ✅ Success - Main msys2/setup-msys2@v2
[amd64_windows_gcc/amd64_windows_gcc] ⚙ ::set-env:: MSYSTEM=MINGW64
[amd64_windows_gcc/amd64_windows_gcc] ⚙ ::add-path:: C:\Users\headk\.cache\act\8828939fe4ffb927\tmp\setup-msys2
[amd64_windows_gcc/amd64_windows_gcc] ⭐ Run Main gcc -v
| /usr/bin/bash: C:Usersheadk.cacheact8828939fe4ffb927act/workflow/2: No such file or directory
[amd64_windows_gcc/amd64_windows_gcc] ❌ Failure - Main gcc -v
[amd64_windows_gcc/amd64_windows_gcc] exit status 1
[amd64_windows_gcc/amd64_windows_gcc] 🏁 Job failed
Error: Job 'amd64_windows_gcc' failed
```
### Additional information
_No response_ | https://github.com/nektos/act/issues/1766 | https://github.com/nektos/act/pull/1777 | 8913375af89792be37603c3c6429372964bf86b1 | f84a566ded8d03bc4daee36bb7df2502a8351409 | "2023-04-25T03:16:34Z" | go | "2023-05-03T19:12:36Z" |
closed | nektos/act | https://github.com/nektos/act | 1,726 | ["pkg/model/github_context.go", "pkg/runner/run_context.go"] | The --github-instance parameter does not set the ${{ github.server_url }} argument. | ### Bug report info
```plain text
act version: 0.2.44
GOOS: linux
GOARCH: amd64
NumCPU: 16
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
Config files:
/home/joshua-b/.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.18.10
Module path: github.com/nektos/act
Main version: (devel)
Main path: github.com/nektos/act
Main checksum:
Build settings:
-compiler: gc
-ldflags: -s -w -X main.version=0.2.44 -X main.commit=220d6f1251aea75c378e5a98546f43cd918e1892 -X main.date=2023-04-01T02:18:17Z -X main.builtBy=goreleaser
CGO_ENABLED: 0
GOARCH: amd64
GOOS: linux
GOAMD64: v1
vcs: git
vcs.revision: 220d6f1251aea75c378e5a98546f43cd918e1892
vcs.time: 2023-04-01T02:17:52Z
vcs.modified: false
Docker Engine:
Engine version: 20.10.22
Engine runtime: runc
Cgroup version: 1
Cgroup driver: cgroupfs
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Docker Desktop
OS type: linux
OS version:
OS arch: x86_64
OS kernel: 5.10.102.1-microsoft-standard-WSL2
OS CPU: 16
OS memory: 15879 MB
Security options:
name=seccomp,profile=default
```
### Command used with act
```sh
act --github-instance github.mycompanany.com
```
### Describe issue
The variable `${{ github.server_url }}` is empty by default, and assigning a value to `--github-instance` does not fill it.
I'd expect `${{ github.server_url }}` to be something like `https://github.com` by default and then change if you assigned something to `--github-instance`.
### Link to GitHub repository
_No response_
### Workflow content
```yml
name: Test Server URL
on: push
jobs:
build:
runs-on: ubuntu-18.04
steps:
- run: |
echo ${{ github.server_url }}
```
### Relevant log output
```sh
N/A
```
### Additional information
_No response_ | https://github.com/nektos/act/issues/1726 | https://github.com/nektos/act/pull/1727 | 148a54502167880f90dbf2f68ff44478679f41dd | c0130ed030e0f267b7b7b5b3ad5e1dfcc08980d8 | "2023-04-11T18:52:02Z" | go | "2023-04-13T13:09:28Z" |
closed | nektos/act | https://github.com/nektos/act | 1,685 | ["pkg/runner/step_run.go", "pkg/runner/testdata/workdir/push.yml"] | working-directory is not respected when coming from matrix | ### Bug report info
```plain text
act version: 0.2.43
GOOS: darwin
GOARCH: amd64
NumCPU: 16
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
/Users/kgeusebroek/.docker/run/docker.sock
Config files:
/Users/kgeusebroek/.actrc:
-P ubuntu-latest=catthehacker/ubuntu:act-latest
-P ubuntu-20.04=catthehacker/ubuntu:act-20.04
-P ubuntu-18.04=catthehacker/ubuntu:act-18.04
ubuntu-16.04=catthehacker/ubuntu:act-16.04
Build info:
Go version: go1.20.1
Module path: command-line-arguments
Main version:
Main path:
Main checksum:
Build settings:
-buildmode: exe
-compiler: gc
-ldflags: -X main.version=0.2.43
CGO_ENABLED: 1
CGO_CFLAGS:
CGO_CPPFLAGS:
CGO_CXXFLAGS:
CGO_LDFLAGS:
GOARCH: amd64
GOOS: darwin
GOAMD64: v1
Docker Engine:
Engine version: 20.10.22
Engine runtime: runc
Cgroup version: 2
Cgroup driver: cgroupfs
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Docker Desktop
OS type: linux
OS version:
OS arch: x86_64
OS kernel: 5.15.49-linuxkit
OS CPU: 8
OS memory: 9962 MB
Security options:
name=seccomp,profile=default
name=cgroupns
```
### Command used with act
```sh
act -P ubuntu-latest=catthehacker/ubuntu:full-latest -W./.github/workflows/test-ci.yml
```
### Describe issue
When configuring the working-directory from a matrix only the first value is used at every run. It seems to cache the value and use it in the next runs.
### Link to GitHub repository
_No response_
### Workflow content
```yml
on: push
jobs:
workdir-from-matrix:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
work_dir: ["/tmp", "/root"]
steps:
- run: '[[ "$(pwd)" == "${{ matrix.work_dir }}" ]]'
working-directory: ${{ matrix.work_dir }}
```
### Relevant log output
```sh
DEBU[0000] Loading workflow '/Users/kgeusebroek/dev/godatadriven/projects/whirl/.github/workflows/bug.yml'
DEBU[0000] Reading workflow '/Users/kgeusebroek/dev/godatadriven/projects/whirl/.github/workflows/bug.yml'
DEBU[0000] Conditional GET for notices etag=758d0b6e-b9e0-40db-89c5-f5b87e233664
DEBU[0000] Preparing plan with all jobs
DEBU[0000] Using the only detected workflow event: push
DEBU[0000] Planning jobs for event: push
DEBU[0000] Loading revision from git directory
DEBU[0000] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
DEBU[0000] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
DEBU[0000] Loading revision from git directory
DEBU[0000] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
DEBU[0000] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
DEBU[0000]
DEBU[0000] Loading revision from git directory
DEBU[0000] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
DEBU[0000] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
DEBU[0000] Loading revision from git directory
DEBU[0000] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
DEBU[0000] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-1] [DEBUG] evaluating expression 'success()'
[bug.yml/workdir-from-matrix-1] [DEBUG] expression 'success()' evaluated to 'true'
[bug.yml/workdir-from-matrix-1] 🚀 Start image=catthehacker/ubuntu:full-latest
[bug.yml/workdir-from-matrix-1] 🐳 docker pull image=catthehacker/ubuntu:full-latest platform= username= forcePull=true
[bug.yml/workdir-from-matrix-1] [DEBUG] 🐳 docker pull catthehacker/ubuntu:full-latest
[bug.yml/workdir-from-matrix-1] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:full-latest' ()
DEBU[0001] Saving notices etag=bca04bad-f783-48a6-90b8-ef8441be1811
[bug.yml/workdir-from-matrix-1] [DEBUG] Pulling from catthehacker/ubuntu :: full-latest
[bug.yml/workdir-from-matrix-1] [DEBUG] Digest: sha256:598b616a8c7ce86d98ee63871cec532f4ff645125b563a8798f2ae1c98928ec7 ::
[bug.yml/workdir-from-matrix-1] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:full-latest ::
[bug.yml/workdir-from-matrix-1] 🐳 docker create image=catthehacker/ubuntu:full-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[]
[bug.yml/workdir-from-matrix-1] [DEBUG] Common container.Config ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:false AttachStderr:false ExposedPorts:map[] Tty:true OpenStdin:false StdinOnce:false Env:[RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8] Cmd:[] Healthcheck:<nil> ArgsEscaped:false Image:catthehacker/ubuntu:full-latest Volumes:map[] WorkingDir:/Users/kgeusebroek/dev/godatadriven/projects/whirl Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]}
[bug.yml/workdir-from-matrix-1] [DEBUG] Common container.HostConfig ==> &{Binds:[/var/run/docker.sock:/var/run/docker.sock] ContainerIDFile: LogConfig:{Type: Config:map[]} NetworkMode:host PortBindings:map[] RestartPolicy:{Name: MaximumRetryCount:0} AutoRemove:false VolumeDriver: VolumesFrom:[] ConsoleSize:[0 0] 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:/toolcache ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-bug-yml-workdir-from-matrix-1-2cd8ebcd3807c2db44e7f51e9e15049b55152574fa1cf0b2fc5bff19d4539923-env Target:/var/run/act ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-bug-yml-workdir-from-matrix-1-2cd8ebcd3807c2db44e7f51e9e15049b55152574fa1cf0b2fc5bff19d4539923 Target:/Users/kgeusebroek/dev/godatadriven/projects/whirl ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>}] MaskedPaths:[] ReadonlyPaths:[] Init:<nil>}
[bug.yml/workdir-from-matrix-1] [DEBUG] Created container name=act-bug-yml-workdir-from-matrix-1-2cd8ebcd3807c2db44e7f51e9e15049b55152574fa1cf0b2fc5bff19d4539923 id=a90cc564d1036c3c2084b75c09bf38d8d166e7bee17ccb3cc0c010a47af67736 from image catthehacker/ubuntu:full-latest (platform: )
[bug.yml/workdir-from-matrix-1] [DEBUG] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8]
[bug.yml/workdir-from-matrix-1] 🐳 docker run image=catthehacker/ubuntu:full-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[]
[bug.yml/workdir-from-matrix-1] [DEBUG] Starting container: a90cc564d1036c3c2084b75c09bf38d8d166e7bee17ccb3cc0c010a47af67736
[bug.yml/workdir-from-matrix-1] [DEBUG] Started container: a90cc564d1036c3c2084b75c09bf38d8d166e7bee17ccb3cc0c010a47af67736
[bug.yml/workdir-from-matrix-1] [DEBUG] Writing entry to tarball workflow/event.json len:2
[bug.yml/workdir-from-matrix-1] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[bug.yml/workdir-from-matrix-1] [DEBUG] Extracting content to '/var/run/act/'
[bug.yml/workdir-from-matrix-1] [DEBUG] Loading revision from git directory
[bug.yml/workdir-from-matrix-1] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-1] [DEBUG] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
[bug.yml/workdir-from-matrix-1] [DEBUG] using github ref: refs/heads/master
[bug.yml/workdir-from-matrix-1] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-1] [DEBUG] expression '[[ "$(pwd)" == "${{ matrix.work_dir }}" ]]' rewritten to 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)'
[bug.yml/workdir-from-matrix-1] [DEBUG] evaluating expression 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)'
[bug.yml/workdir-from-matrix-1] [DEBUG] expression 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)' evaluated to '%!t(string=[[ "$(pwd)" == "/tmp" ]])'
[bug.yml/workdir-from-matrix-1] 🧪 Matrix: map[work_dir:/tmp]
[bug.yml/workdir-from-matrix-1] [DEBUG] expression '[[ "$(pwd)" == "${{ matrix.work_dir }}" ]]' rewritten to 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)'
[bug.yml/workdir-from-matrix-1] [DEBUG] evaluating expression 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)'
[bug.yml/workdir-from-matrix-1] [DEBUG] expression 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)' evaluated to '%!t(string=[[ "$(pwd)" == "/tmp" ]])'
[bug.yml/workdir-from-matrix-1] [DEBUG] Loading revision from git directory
[bug.yml/workdir-from-matrix-1] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-1] [DEBUG] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
[bug.yml/workdir-from-matrix-1] [DEBUG] using github ref: refs/heads/master
[bug.yml/workdir-from-matrix-1] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-1] [DEBUG] Loading revision from git directory
[bug.yml/workdir-from-matrix-1] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-1] [DEBUG] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
[bug.yml/workdir-from-matrix-1] [DEBUG] using github ref: refs/heads/master
[bug.yml/workdir-from-matrix-1] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-1] [DEBUG] Loading revision from git directory
[bug.yml/workdir-from-matrix-1] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-1] [DEBUG] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
[bug.yml/workdir-from-matrix-1] [DEBUG] using github ref: refs/heads/master
[bug.yml/workdir-from-matrix-1] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-1] [DEBUG] setupEnv => map[ACT:true CI:true GITHUB_ACTION:0 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:workdir-from-matrix GITHUB_REF:refs/heads/master GITHUB_REF_NAME:master GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:godatadriven/whirl GITHUB_REPOSITORY_OWNER:godatadriven GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:df2b558a6e28d76b50274824fc60ebbf0ac14f31 GITHUB_TOKEN: GITHUB_WORKFLOW:bug.yml GITHUB_WORKSPACE:/Users/kgeusebroek/dev/godatadriven/projects/whirl ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
[bug.yml/workdir-from-matrix-1] [DEBUG] Loading revision from git directory
[bug.yml/workdir-from-matrix-1] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-1] [DEBUG] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
[bug.yml/workdir-from-matrix-1] [DEBUG] using github ref: refs/heads/master
[bug.yml/workdir-from-matrix-1] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-1] [DEBUG] Loading revision from git directory
[bug.yml/workdir-from-matrix-1] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-1] [DEBUG] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
[bug.yml/workdir-from-matrix-1] [DEBUG] using github ref: refs/heads/master
[bug.yml/workdir-from-matrix-1] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-1] [DEBUG] evaluating expression ''
[bug.yml/workdir-from-matrix-1] [DEBUG] expression '' evaluated to 'true'
[bug.yml/workdir-from-matrix-1] [DEBUG] expression '[[ "$(pwd)" == "${{ matrix.work_dir }}" ]]' rewritten to 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)'
[bug.yml/workdir-from-matrix-1] [DEBUG] evaluating expression 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)'
[bug.yml/workdir-from-matrix-1] [DEBUG] expression 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)' evaluated to '%!t(string=[[ "$(pwd)" == "/tmp" ]])'
[bug.yml/workdir-from-matrix-1] ⭐ Run Main [[ "$(pwd)" == "/tmp" ]]
[bug.yml/workdir-from-matrix-1] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0
[bug.yml/workdir-from-matrix-1] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0
[bug.yml/workdir-from-matrix-1] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0
[bug.yml/workdir-from-matrix-1] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[bug.yml/workdir-from-matrix-1] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0
[bug.yml/workdir-from-matrix-1] [DEBUG] Extracting content to '/var/run/act'
[bug.yml/workdir-from-matrix-1] [DEBUG] Loading revision from git directory
[bug.yml/workdir-from-matrix-1] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-1] [DEBUG] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
[bug.yml/workdir-from-matrix-1] [DEBUG] using github ref: refs/heads/master
[bug.yml/workdir-from-matrix-1] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-1] [DEBUG] Loading revision from git directory
[bug.yml/workdir-from-matrix-1] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-1] [DEBUG] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
[bug.yml/workdir-from-matrix-1] [DEBUG] using github ref: refs/heads/master
[bug.yml/workdir-from-matrix-1] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-1] [DEBUG] expression '${{ matrix.work_dir }}' rewritten to 'format('{0}', matrix.work_dir)'
[bug.yml/workdir-from-matrix-1] [DEBUG] evaluating expression 'format('{0}', matrix.work_dir)'
[bug.yml/workdir-from-matrix-1] [DEBUG] expression 'format('{0}', matrix.work_dir)' evaluated to '%!t(string=/tmp)'
[bug.yml/workdir-from-matrix-1] [DEBUG] Loading revision from git directory
[bug.yml/workdir-from-matrix-1] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-1] [DEBUG] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
[bug.yml/workdir-from-matrix-1] [DEBUG] using github ref: refs/heads/master
[bug.yml/workdir-from-matrix-1] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-1] [DEBUG] Loading revision from git directory
[bug.yml/workdir-from-matrix-1] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-1] [DEBUG] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
[bug.yml/workdir-from-matrix-1] [DEBUG] using github ref: refs/heads/master
[bug.yml/workdir-from-matrix-1] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-1] [DEBUG] expression '[[ "$(pwd)" == "${{ matrix.work_dir }}" ]]' rewritten to 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)'
[bug.yml/workdir-from-matrix-1] [DEBUG] evaluating expression 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)'
[bug.yml/workdir-from-matrix-1] [DEBUG] expression 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)' evaluated to '%!t(string=[[ "$(pwd)" == "/tmp" ]])'
[bug.yml/workdir-from-matrix-1] [DEBUG] Wrote command
[[ "$(pwd)" == "/tmp" ]]
to 'workflow/0'
[bug.yml/workdir-from-matrix-1] [DEBUG] Writing entry to tarball workflow/0 len:26
[bug.yml/workdir-from-matrix-1] [DEBUG] Extracting content to '/var/run/act'
[bug.yml/workdir-from-matrix-1] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=/tmp
[bug.yml/workdir-from-matrix-1] [DEBUG] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0]'
[bug.yml/workdir-from-matrix-1] [DEBUG] Working directory '/tmp'
[bug.yml/workdir-from-matrix-1] ✅ Success - Main [[ "$(pwd)" == "/tmp" ]]
[bug.yml/workdir-from-matrix-1] [DEBUG] expression '[[ "$(pwd)" == "${{ matrix.work_dir }}" ]]' rewritten to 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)'
[bug.yml/workdir-from-matrix-1] [DEBUG] evaluating expression 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)'
[bug.yml/workdir-from-matrix-1] [DEBUG] expression 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)' evaluated to '%!t(string=[[ "$(pwd)" == "/tmp" ]])'
[bug.yml/workdir-from-matrix-1] [DEBUG] Removed container: a90cc564d1036c3c2084b75c09bf38d8d166e7bee17ccb3cc0c010a47af67736
[bug.yml/workdir-from-matrix-1] [DEBUG] 🐳 docker volume rm act-bug-yml-workdir-from-matrix-1-2cd8ebcd3807c2db44e7f51e9e15049b55152574fa1cf0b2fc5bff19d4539923
[bug.yml/workdir-from-matrix-1] [DEBUG] 🐳 docker volume rm act-bug-yml-workdir-from-matrix-1-2cd8ebcd3807c2db44e7f51e9e15049b55152574fa1cf0b2fc5bff19d4539923-env
[bug.yml/workdir-from-matrix-1] 🏁 Job succeeded
[bug.yml/workdir-from-matrix-1] [DEBUG] Loading revision from git directory
[bug.yml/workdir-from-matrix-1] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-1] [DEBUG] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
[bug.yml/workdir-from-matrix-1] [DEBUG] using github ref: refs/heads/master
[bug.yml/workdir-from-matrix-1] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-2] [DEBUG] evaluating expression 'success()'
[bug.yml/workdir-from-matrix-2] [DEBUG] expression 'success()' evaluated to 'true'
[bug.yml/workdir-from-matrix-2] 🚀 Start image=catthehacker/ubuntu:full-latest
[bug.yml/workdir-from-matrix-2] 🐳 docker pull image=catthehacker/ubuntu:full-latest platform= username= forcePull=true
[bug.yml/workdir-from-matrix-2] [DEBUG] 🐳 docker pull catthehacker/ubuntu:full-latest
[bug.yml/workdir-from-matrix-2] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:full-latest' ()
[bug.yml/workdir-from-matrix-2] [DEBUG] Pulling from catthehacker/ubuntu :: full-latest
[bug.yml/workdir-from-matrix-2] [DEBUG] Digest: sha256:598b616a8c7ce86d98ee63871cec532f4ff645125b563a8798f2ae1c98928ec7 ::
[bug.yml/workdir-from-matrix-2] [DEBUG] Status: Image is up to date for catthehacker/ubuntu:full-latest ::
[bug.yml/workdir-from-matrix-2] 🐳 docker create image=catthehacker/ubuntu:full-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[]
[bug.yml/workdir-from-matrix-2] [DEBUG] Common container.Config ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:false AttachStderr:false ExposedPorts:map[] Tty:true OpenStdin:false StdinOnce:false Env:[RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8] Cmd:[] Healthcheck:<nil> ArgsEscaped:false Image:catthehacker/ubuntu:full-latest Volumes:map[] WorkingDir:/Users/kgeusebroek/dev/godatadriven/projects/whirl Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]}
[bug.yml/workdir-from-matrix-2] [DEBUG] Common container.HostConfig ==> &{Binds:[/var/run/docker.sock:/var/run/docker.sock] ContainerIDFile: LogConfig:{Type: Config:map[]} NetworkMode:host PortBindings:map[] RestartPolicy:{Name: MaximumRetryCount:0} AutoRemove:false VolumeDriver: VolumesFrom:[] ConsoleSize:[0 0] 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-bug-yml-workdir-from-matrix-2-fa818fcc4a712f08b649b63a55bb07d735cca8fbae2f11c8e9eccc0355b561c9 Target:/Users/kgeusebroek/dev/godatadriven/projects/whirl ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-toolcache Target:/toolcache ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>} {Type:volume Source:act-bug-yml-workdir-from-matrix-2-fa818fcc4a712f08b649b63a55bb07d735cca8fbae2f11c8e9eccc0355b561c9-env Target:/var/run/act ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil> ClusterOptions:<nil>}] MaskedPaths:[] ReadonlyPaths:[] Init:<nil>}
[bug.yml/workdir-from-matrix-2] [DEBUG] Created container name=act-bug-yml-workdir-from-matrix-2-fa818fcc4a712f08b649b63a55bb07d735cca8fbae2f11c8e9eccc0355b561c9 id=ebc5f3a5d886326b28abcb0c5858cb71331cbe9ad3e314e34322726df00160a2 from image catthehacker/ubuntu:full-latest (platform: )
[bug.yml/workdir-from-matrix-2] [DEBUG] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8]
[bug.yml/workdir-from-matrix-2] 🐳 docker run image=catthehacker/ubuntu:full-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[]
[bug.yml/workdir-from-matrix-2] [DEBUG] Starting container: ebc5f3a5d886326b28abcb0c5858cb71331cbe9ad3e314e34322726df00160a2
[bug.yml/workdir-from-matrix-2] [DEBUG] Started container: ebc5f3a5d886326b28abcb0c5858cb71331cbe9ad3e314e34322726df00160a2
[bug.yml/workdir-from-matrix-2] [DEBUG] Writing entry to tarball workflow/event.json len:2
[bug.yml/workdir-from-matrix-2] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[bug.yml/workdir-from-matrix-2] [DEBUG] Extracting content to '/var/run/act/'
[bug.yml/workdir-from-matrix-2] [DEBUG] Loading revision from git directory
[bug.yml/workdir-from-matrix-2] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-2] [DEBUG] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
[bug.yml/workdir-from-matrix-2] [DEBUG] using github ref: refs/heads/master
[bug.yml/workdir-from-matrix-2] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-2] [DEBUG] expression '[[ "$(pwd)" == "${{ matrix.work_dir }}" ]]' rewritten to 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)'
[bug.yml/workdir-from-matrix-2] [DEBUG] evaluating expression 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)'
[bug.yml/workdir-from-matrix-2] [DEBUG] expression 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)' evaluated to '%!t(string=[[ "$(pwd)" == "/root" ]])'
[bug.yml/workdir-from-matrix-2] 🧪 Matrix: map[work_dir:/root]
[bug.yml/workdir-from-matrix-2] [DEBUG] expression '[[ "$(pwd)" == "${{ matrix.work_dir }}" ]]' rewritten to 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)'
[bug.yml/workdir-from-matrix-2] [DEBUG] evaluating expression 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)'
[bug.yml/workdir-from-matrix-2] [DEBUG] expression 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)' evaluated to '%!t(string=[[ "$(pwd)" == "/root" ]])'
[bug.yml/workdir-from-matrix-2] [DEBUG] Loading revision from git directory
[bug.yml/workdir-from-matrix-2] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-2] [DEBUG] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
[bug.yml/workdir-from-matrix-2] [DEBUG] using github ref: refs/heads/master
[bug.yml/workdir-from-matrix-2] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-2] [DEBUG] Loading revision from git directory
[bug.yml/workdir-from-matrix-2] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-2] [DEBUG] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
[bug.yml/workdir-from-matrix-2] [DEBUG] using github ref: refs/heads/master
[bug.yml/workdir-from-matrix-2] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-2] [DEBUG] Loading revision from git directory
[bug.yml/workdir-from-matrix-2] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-2] [DEBUG] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
[bug.yml/workdir-from-matrix-2] [DEBUG] using github ref: refs/heads/master
[bug.yml/workdir-from-matrix-2] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-2] [DEBUG] setupEnv => map[ACT:true CI:true GITHUB_ACTION:0 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:workdir-from-matrix GITHUB_REF:refs/heads/master GITHUB_REF_NAME:master GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:godatadriven/whirl GITHUB_REPOSITORY_OWNER:godatadriven GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:df2b558a6e28d76b50274824fc60ebbf0ac14f31 GITHUB_TOKEN: GITHUB_WORKFLOW:bug.yml GITHUB_WORKSPACE:/Users/kgeusebroek/dev/godatadriven/projects/whirl ImageOS:ubuntu20 RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID:]
[bug.yml/workdir-from-matrix-2] [DEBUG] Loading revision from git directory
[bug.yml/workdir-from-matrix-2] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-2] [DEBUG] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
[bug.yml/workdir-from-matrix-2] [DEBUG] using github ref: refs/heads/master
[bug.yml/workdir-from-matrix-2] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-2] [DEBUG] Loading revision from git directory
[bug.yml/workdir-from-matrix-2] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-2] [DEBUG] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
[bug.yml/workdir-from-matrix-2] [DEBUG] using github ref: refs/heads/master
[bug.yml/workdir-from-matrix-2] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-2] [DEBUG] evaluating expression ''
[bug.yml/workdir-from-matrix-2] [DEBUG] expression '' evaluated to 'true'
[bug.yml/workdir-from-matrix-2] [DEBUG] expression '[[ "$(pwd)" == "${{ matrix.work_dir }}" ]]' rewritten to 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)'
[bug.yml/workdir-from-matrix-2] [DEBUG] evaluating expression 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)'
[bug.yml/workdir-from-matrix-2] [DEBUG] expression 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)' evaluated to '%!t(string=[[ "$(pwd)" == "/root" ]])'
[bug.yml/workdir-from-matrix-2] ⭐ Run Main [[ "$(pwd)" == "/root" ]]
[bug.yml/workdir-from-matrix-2] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0
[bug.yml/workdir-from-matrix-2] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0
[bug.yml/workdir-from-matrix-2] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0
[bug.yml/workdir-from-matrix-2] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[bug.yml/workdir-from-matrix-2] [DEBUG] Writing entry to tarball workflow/SUMMARY.md len:0
[bug.yml/workdir-from-matrix-2] [DEBUG] Extracting content to '/var/run/act'
[bug.yml/workdir-from-matrix-2] [DEBUG] Loading revision from git directory
[bug.yml/workdir-from-matrix-2] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-2] [DEBUG] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
[bug.yml/workdir-from-matrix-2] [DEBUG] using github ref: refs/heads/master
[bug.yml/workdir-from-matrix-2] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-2] [DEBUG] Loading revision from git directory
[bug.yml/workdir-from-matrix-2] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-2] [DEBUG] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
[bug.yml/workdir-from-matrix-2] [DEBUG] using github ref: refs/heads/master
[bug.yml/workdir-from-matrix-2] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-2] [DEBUG] Loading revision from git directory
[bug.yml/workdir-from-matrix-2] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-2] [DEBUG] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
[bug.yml/workdir-from-matrix-2] [DEBUG] using github ref: refs/heads/master
[bug.yml/workdir-from-matrix-2] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-2] [DEBUG] Loading revision from git directory
[bug.yml/workdir-from-matrix-2] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-2] [DEBUG] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
[bug.yml/workdir-from-matrix-2] [DEBUG] using github ref: refs/heads/master
[bug.yml/workdir-from-matrix-2] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-2] [DEBUG] expression '[[ "$(pwd)" == "${{ matrix.work_dir }}" ]]' rewritten to 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)'
[bug.yml/workdir-from-matrix-2] [DEBUG] evaluating expression 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)'
[bug.yml/workdir-from-matrix-2] [DEBUG] expression 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)' evaluated to '%!t(string=[[ "$(pwd)" == "/root" ]])'
[bug.yml/workdir-from-matrix-2] [DEBUG] Wrote command
[[ "$(pwd)" == "/root" ]]
to 'workflow/0'
[bug.yml/workdir-from-matrix-2] [DEBUG] Writing entry to tarball workflow/0 len:27
[bug.yml/workdir-from-matrix-2] [DEBUG] Extracting content to '/var/run/act'
[bug.yml/workdir-from-matrix-2] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=/tmp
[bug.yml/workdir-from-matrix-2] [DEBUG] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0]'
[bug.yml/workdir-from-matrix-2] [DEBUG] Working directory '/tmp'
[bug.yml/workdir-from-matrix-2] ❌ Failure - Main [[ "$(pwd)" == "/root" ]]
[bug.yml/workdir-from-matrix-2] exitcode '1': failure
[bug.yml/workdir-from-matrix-2] [DEBUG] expression '[[ "$(pwd)" == "${{ matrix.work_dir }}" ]]' rewritten to 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)'
[bug.yml/workdir-from-matrix-2] [DEBUG] evaluating expression 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)'
[bug.yml/workdir-from-matrix-2] [DEBUG] expression 'format('[[ "$(pwd)" == "{0}" ]]', matrix.work_dir)' evaluated to '%!t(string=[[ "$(pwd)" == "/root" ]])'
[bug.yml/workdir-from-matrix-2] 🏁 Job failed
[bug.yml/workdir-from-matrix-2] [DEBUG] Loading revision from git directory
[bug.yml/workdir-from-matrix-2] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
[bug.yml/workdir-from-matrix-2] [DEBUG] HEAD points to 'df2b558a6e28d76b50274824fc60ebbf0ac14f31'
[bug.yml/workdir-from-matrix-2] [DEBUG] using github ref: refs/heads/master
[bug.yml/workdir-from-matrix-2] [DEBUG] Found revision: df2b558a6e28d76b50274824fc60ebbf0ac14f31
Error: Job 'workdir-from-matrix' failed
```
### Additional information
_No response_ | https://github.com/nektos/act/issues/1685 | https://github.com/nektos/act/pull/1686 | 351ae99bc1b205c61b02d4fb04c06f8287b57f9f | 75ffa205c4dc02b1b8a57d247694a357ea9e1495 | "2023-03-17T14:12:16Z" | go | "2023-03-28T12:24:03Z" |
closed | nektos/act | https://github.com/nektos/act | 1,678 | ["go.mod", "go.sum"] | Support customizing the location of `~/.actrc` file | ### Act version
0.2.43
### Feature description
For some reason, we don't wanna the `.actrc` file in our home folder.
It would be great if we use an environment variable to control it's location. e.g. `ACT_CONFIG_FILE` | https://github.com/nektos/act/issues/1678 | https://github.com/nektos/act/pull/1233 | c67abf2401ba57097e862b524b86de7171f1c609 | 4deb21344d40dd4c029d5c1048a7f1d557ab8774 | "2023-03-12T15:07:26Z" | go | "2022-06-30T02:19:13Z" |
closed | nektos/act | https://github.com/nektos/act | 1,658 | ["cmd/root.go", "pkg/container/docker_run.go"] | `Error: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?` on macOS while docker commands are working | ### Bug report info
```plain text
act version: 0.2.43
GOOS: darwin
GOARCH: amd64
NumCPU: 8
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/Users/lena/.docker/run/docker.sock
Config files:
/Users/lena/.actrc:
-P ubuntu-latest=catthehacker/ubuntu:act-latest
-P ubuntu-22.04=catthehacker/ubuntu:act-22.04
-P ubuntu-20.04=catthehacker/ubuntu:act-20.04
-P ubuntu-18.04=catthehacker/ubuntu:act-18.04
Build info:
Go version: go1.20.1
Module path: command-line-arguments
Main version:
Main path:
Main checksum:
Build settings:
-buildmode: exe
-compiler: gc
-ldflags: -X main.version=0.2.43
CGO_ENABLED: 1
CGO_CFLAGS:
CGO_CPPFLAGS:
CGO_CXXFLAGS:
CGO_LDFLAGS:
GOARCH: amd64
GOOS: darwin
GOAMD64: v1
Error: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
```
### Command used with act
```sh
act
```
### Describe issue
I expected it to not print `Error: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?`, because commands like `docker ps` do work:
```
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
b55271169ff4 docker/getting-started "/docker-entrypoint.…" 2 minutes ago Up 2 minutes 0.0.0.0:80->80/tcp funny_euclid
```
### Link to GitHub repository
https://github.com/LenaWil/Squire/commit/d038cc03cd0b075071a2ab001ed226c1b3953225
### Workflow content
```yml
name: Lint Black (official)
# Without review-dog… maybe it’s a bit of waste to make them run twice, but anyway.
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: psf/black@stable
```
### Relevant log output
```sh
DEBU[0000] Loading environment from /Users/lena/Documents/Knights/Squire/.env
DEBU[0000] Loading action inputs from /Users/lena/Documents/Knights/Squire/.input
DEBU[0000] Loading secrets from /Users/lena/Documents/Knights/Squire/.secrets
DEBU[0000] Loading workflows from '/Users/lena/Documents/Knights/Squire/.github/workflows'
DEBU[0000] Loading workflows recursively
DEBU[0000] Found workflow 'black-review-dog.yml' in '/Users/lena/Documents/Knights/Squire/.github/workflows/black-review-dog.yml'
DEBU[0000] Found workflow 'black.yml' in '/Users/lena/Documents/Knights/Squire/.github/workflows/black.yml'
DEBU[0000] Found workflow 'run_tests.yml' in '/Users/lena/Documents/Knights/Squire/.github/workflows/run_tests.yml'
DEBU[0000] Reading workflow '/Users/lena/Documents/Knights/Squire/.github/workflows/black-review-dog.yml'
DEBU[0000] Conditional GET for notices etag=89b55634-e474-4cff-a075-2c41abcfb8c3
DEBU[0000] Reading workflow '/Users/lena/Documents/Knights/Squire/.github/workflows/black.yml'
DEBU[0000] Reading workflow '/Users/lena/Documents/Knights/Squire/.github/workflows/run_tests.yml'
DEBU[0000] Preparing plan with all jobs
DEBU[0000] Using the only detected workflow event: pull_request
DEBU[0000] Planning jobs for event: pull_request
DEBU[0000] Found revision: d038cc03cd0b075071a2ab001ed226c1b3953225
DEBU[0000] Found revision: d038cc03cd0b075071a2ab001ed226c1b3953225
DEBU[0000] Found revision: d038cc03cd0b075071a2ab001ed226c1b3953225
DEBU[0000] Found revision: d038cc03cd0b075071a2ab001ed226c1b3953225
DEBU[0000]
DEBU[0000] Found revision: d038cc03cd0b075071a2ab001ed226c1b3953225
ERRO[0000] failed to obtain container engine info: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
[black-reviewdog/lint ] [DEBUG] evaluating expression 'success()'
[black-reviewdog/lint ] [DEBUG] expression 'success()' evaluated to 'true'
[black-reviewdog/lint ] 🚀 Start image=catthehacker/ubuntu:act-latest
[black-reviewdog/lint ] 🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
[black-reviewdog/lint ] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest
[black-reviewdog/lint ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
[Lint Black (official)/lint] [DEBUG] evaluating expression 'success()'
[Lint Black (official)/lint] [DEBUG] expression 'success()' evaluated to 'true'
[Lint Black (official)/lint] 🚀 Start image=catthehacker/ubuntu:act-latest
[Lint Black (official)/lint] 🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=true
[Lint Black (official)/lint] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest
[Lint Black (official)/lint] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
[Test Squire/Test Code ] [DEBUG] evaluating expression 'success()'
[Test Squire/Test Code ] [DEBUG] expression 'success()' evaluated to 'true'
[Test Squire/Test Code ] [DEBUG] expression '${{ matrix.ubuntu }}' rewritten to 'format('{0}', matrix.ubuntu)'
[Test Squire/Test Code ] [DEBUG] evaluating expression 'format('{0}', matrix.ubuntu)'
[Test Squire/Test Code ] [DEBUG] expression 'format('{0}', matrix.ubuntu)' evaluated to '%!t(string=ubuntu-20.04)'
[Test Squire/Test Code ] [DEBUG] expression '${{ matrix.ubuntu }}' rewritten to 'format('{0}', matrix.ubuntu)'
[Test Squire/Test Code ] [DEBUG] evaluating expression 'format('{0}', matrix.ubuntu)'
[Test Squire/Test Code ] [DEBUG] expression 'format('{0}', matrix.ubuntu)' evaluated to '%!t(string=ubuntu-20.04)'
[Test Squire/Test Code ] [DEBUG] expression '${{ matrix.ubuntu }}' rewritten to 'format('{0}', matrix.ubuntu)'
[Test Squire/Test Code ] [DEBUG] evaluating expression 'format('{0}', matrix.ubuntu)'
[Test Squire/Test Code ] [DEBUG] expression 'format('{0}', matrix.ubuntu)' evaluated to '%!t(string=ubuntu-20.04)'
[Test Squire/Test Code ] 🚀 Start image=catthehacker/ubuntu:act-20.04
[Test Squire/Test Code ] 🐳 docker pull image=catthehacker/ubuntu:act-20.04 platform= username= forcePull=true
[Test Squire/Test Code ] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-20.04
[Test Squire/Test Code ] [DEBUG] pulling image 'docker.io/catthehacker/ubuntu:act-20.04' ()
Error: Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
```
### Additional information
(On a repo with GitHub workflow actions, this one: https://github.com/LenaWil/Squire/commit/d038cc03cd0b075071a2ab001ed226c1b3953225 )
There are more workflows, and looking at the debug log it might run some of them? But without verbose mode it prints two error messages. | https://github.com/nektos/act/issues/1658 | https://github.com/nektos/act/pull/1745 | 37152664940eea09a6775daf5eff8ee0d7f31442 | b6718fdf5d2fdc3e61798f4ac749b53548cbbfae | "2023-03-02T12:16:45Z" | go | "2023-04-23T19:02:56Z" |
closed | nektos/act | https://github.com/nektos/act | 1,643 | ["pkg/exprparser/interpreter.go", "pkg/exprparser/interpreter_test.go"] | Unable to use CI from `rclone/rclone` | ### Bug report info
```plain text
act version: 0.2.42
GOOS: linux
GOARCH: amd64
NumCPU: 4
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
Config files:
/home/hunter/.actrc:
-P ubuntu-latest=catthehacker/ubuntu:act-latest
-P ubuntu-22.04=catthehacker/ubuntu:act-22.04
-P ubuntu-20.04=catthehacker/ubuntu:act-20.04
-P ubuntu-18.04=catthehacker/ubuntu:act-18.04
Build info:
Go version: go1.20.1
Module path: github.com/nektos/act
Main version: (devel)
Main path: github.com/nektos/act
Main checksum:
Build settings:
-buildmode: pie
-compiler: gc
-trimpath: true
CGO_ENABLED: 1
GOARCH: amd64
GOOS: linux
GOAMD64: v1
vcs: git
vcs.revision: b86b4a7db3dfc81de963e9b064c63bf1187b16a5
vcs.time: 2022-10-17T05:34:26Z
vcs.modified: true
Docker Engine:
Engine version: 20.10.16
Engine runtime: runc
Cgroup version: 2
Cgroup driver: systemd
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Ubuntu 22.10
OS type: linux
OS version: 22.10
OS arch: x86_64
OS kernel: 5.19.0-31-generic
OS CPU: 4
OS memory: 3332 MB
Security options:
name=apparmor
name=seccomp,profile=default
name=cgroupns
```
### Command used with act
```sh
act --job lint
```
### Describe issue
I expected `rclone/rclone`'s CI to to run, but instead I get the following error:
```
Error: ❌ Error in if-expression: "if: ${{ github.event.inputs.manual == 'true' || (github.repository == 'rclone/rclone' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name)) }}" (TODO: evaluateCompare not implemented! left: invalid, right: invalid)
```
### Link to GitHub repository
https://github.com/rclone/rclone
### Workflow content
```yml
---
# Github Actions build for rclone
# -*- compile-command: "yamllint -f parsable build.yml" -*-
name: build
# Trigger the workflow on push or pull request
on:
push:
branches:
- '*'
tags:
- '*'
pull_request:
workflow_dispatch:
inputs:
manual:
description: Manual run (bypass default conditions)
type: boolean
required: true
default: true
jobs:
build:
if: ${{ github.event.inputs.manual == 'true' || (github.repository == 'rclone/rclone' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name)) }}
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
job_name: ['linux', 'linux_386', 'mac_amd64', 'mac_arm64', 'windows', 'other_os', 'go1.18', 'go1.19']
include:
- job_name: linux
os: ubuntu-latest
go: '1.20'
gotags: cmount
build_flags: '-include "^linux/"'
check: true
quicktest: true
racequicktest: true
librclonetest: true
deploy: true
- job_name: linux_386
os: ubuntu-latest
go: '1.20'
goarch: 386
gotags: cmount
quicktest: true
- job_name: mac_amd64
os: macos-11
go: '1.20'
gotags: 'cmount'
build_flags: '-include "^darwin/amd64" -cgo'
quicktest: true
racequicktest: true
deploy: true
- job_name: mac_arm64
os: macos-11
go: '1.20'
gotags: 'cmount'
build_flags: '-include "^darwin/arm64" -cgo -macos-arch arm64 -cgo-cflags=-I/usr/local/include -cgo-ldflags=-L/usr/local/lib'
deploy: true
- job_name: windows
os: windows-latest
go: '1.20'
gotags: cmount
cgo: '0'
build_flags: '-include "^windows/"'
build_args: '-buildmode exe'
quicktest: true
deploy: true
- job_name: other_os
os: ubuntu-latest
go: '1.20'
build_flags: '-exclude "^(windows/|darwin/|linux/)"'
compile_all: true
deploy: true
- job_name: go1.18
os: ubuntu-latest
go: '1.18'
quicktest: true
racequicktest: true
- job_name: go1.19
os: ubuntu-latest
go: '1.19'
quicktest: true
racequicktest: true
name: ${{ matrix.job_name }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
check-latest: true
- name: Set environment variables
shell: bash
run: |
echo 'GOTAGS=${{ matrix.gotags }}' >> $GITHUB_ENV
echo 'BUILD_FLAGS=${{ matrix.build_flags }}' >> $GITHUB_ENV
echo 'BUILD_ARGS=${{ matrix.build_args }}' >> $GITHUB_ENV
if [[ "${{ matrix.goarch }}" != "" ]]; then echo 'GOARCH=${{ matrix.goarch }}' >> $GITHUB_ENV ; fi
if [[ "${{ matrix.cgo }}" != "" ]]; then echo 'CGO_ENABLED=${{ matrix.cgo }}' >> $GITHUB_ENV ; fi
- name: Install Libraries on Linux
shell: bash
run: |
sudo modprobe fuse
sudo chmod 666 /dev/fuse
sudo chown root:$USER /etc/fuse.conf
sudo apt-get install fuse3 libfuse-dev rpm pkg-config
if: matrix.os == 'ubuntu-latest'
- name: Install Libraries on macOS
shell: bash
run: |
brew update
brew install --cask macfuse
if: matrix.os == 'macos-11'
- name: Install Libraries on Windows
shell: powershell
run: |
$ProgressPreference = 'SilentlyContinue'
choco install -y winfsp zip
echo "CPATH=C:\Program Files\WinFsp\inc\fuse;C:\Program Files (x86)\WinFsp\inc\fuse" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
if ($env:GOARCH -eq "386") {
choco install -y mingw --forcex86 --force
echo "C:\\ProgramData\\chocolatey\\lib\\mingw\\tools\\install\\mingw32\\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
}
# Copy mingw32-make.exe to make.exe so the same command line
# can be used on Windows as on macOS and Linux
$path = (get-command mingw32-make.exe).Path
Copy-Item -Path $path -Destination (Join-Path (Split-Path -Path $path) 'make.exe')
if: matrix.os == 'windows-latest'
- name: Print Go version and environment
shell: bash
run: |
printf "Using go at: $(which go)\n"
printf "Go version: $(go version)\n"
printf "\n\nGo environment:\n\n"
go env
printf "\n\nRclone environment:\n\n"
make vars
printf "\n\nSystem environment:\n\n"
env
- name: Go module cache
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Build rclone
shell: bash
run: |
make
- name: Rclone version
shell: bash
run: |
rclone version
- name: Run tests
shell: bash
run: |
make quicktest
if: matrix.quicktest
- name: Race test
shell: bash
run: |
make racequicktest
if: matrix.racequicktest
- name: Run librclone tests
shell: bash
run: |
make -C librclone/ctest test
make -C librclone/ctest clean
librclone/python/test_rclone.py
if: matrix.librclonetest
- name: Compile all architectures test
shell: bash
run: |
make
make compile_all
if: matrix.compile_all
- name: Deploy built binaries
shell: bash
run: |
if [[ "${{ matrix.os }}" == "ubuntu-latest" ]]; then make release_dep_linux ; fi
if [[ "${{ matrix.os }}" == "windows-latest" ]]; then make release_dep_windows ; fi
make ci_beta
env:
RCLONE_CONFIG_PASS: ${{ secrets.RCLONE_CONFIG_PASS }}
# working-directory: '$(modulePath)'
# Deploy binaries if enabled in config && not a PR && not a fork
if: matrix.deploy && github.head_ref == '' && github.repository == 'rclone/rclone'
lint:
if: ${{ github.event.inputs.manual == 'true' || (github.repository == 'rclone/rclone' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name)) }}
timeout-minutes: 30
name: "lint"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Code quality test
uses: golangci/golangci-lint-action@v3
with:
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
version: latest
# Run govulncheck on the latest go version, the one we build binaries with
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: '1.20'
check-latest: true
- name: Install govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
- name: Scan for vulnerabilities
run: govulncheck ./...
android:
if: ${{ github.event.inputs.manual == 'true' || (github.repository == 'rclone/rclone' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name)) }}
timeout-minutes: 30
name: "android-all"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
# Upgrade together with NDK version
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.20'
- name: Go module cache
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Set global environment variables
shell: bash
run: |
echo "VERSION=$(make version)" >> $GITHUB_ENV
- name: build native rclone
run: |
make
- name: install gomobile
run: |
go install golang.org/x/mobile/cmd/gobind@latest
go install golang.org/x/mobile/cmd/gomobile@latest
env PATH=$PATH:~/go/bin gomobile init
echo "RCLONE_NDK_VERSION=21" >> $GITHUB_ENV
- name: arm-v7a gomobile build
run: env PATH=$PATH:~/go/bin gomobile bind -androidapi ${RCLONE_NDK_VERSION} -v -target=android/arm -javapkg=org.rclone -ldflags '-s -X github.com/rclone/rclone/fs.Version='${VERSION} github.com/rclone/rclone/librclone/gomobile
- name: arm-v7a Set environment variables
shell: bash
run: |
echo "CC=$(echo $ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/armv7a-linux-androideabi${RCLONE_NDK_VERSION}-clang)" >> $GITHUB_ENV
echo "CC_FOR_TARGET=$CC" >> $GITHUB_ENV
echo 'GOOS=android' >> $GITHUB_ENV
echo 'GOARCH=arm' >> $GITHUB_ENV
echo 'GOARM=7' >> $GITHUB_ENV
echo 'CGO_ENABLED=1' >> $GITHUB_ENV
echo 'CGO_LDFLAGS=-fuse-ld=lld -s -w' >> $GITHUB_ENV
- name: arm-v7a build
run: go build -v -tags android -trimpath -ldflags '-s -X github.com/rclone/rclone/fs.Version='${VERSION} -o build/rclone-android-${RCLONE_NDK_VERSION}-armv7a .
- name: arm64-v8a Set environment variables
shell: bash
run: |
echo "CC=$(echo $ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android${RCLONE_NDK_VERSION}-clang)" >> $GITHUB_ENV
echo "CC_FOR_TARGET=$CC" >> $GITHUB_ENV
echo 'GOOS=android' >> $GITHUB_ENV
echo 'GOARCH=arm64' >> $GITHUB_ENV
echo 'CGO_ENABLED=1' >> $GITHUB_ENV
echo 'CGO_LDFLAGS=-fuse-ld=lld -s -w' >> $GITHUB_ENV
- name: arm64-v8a build
run: go build -v -tags android -trimpath -ldflags '-s -X github.com/rclone/rclone/fs.Version='${VERSION} -o build/rclone-android-${RCLONE_NDK_VERSION}-armv8a .
- name: x86 Set environment variables
shell: bash
run: |
echo "CC=$(echo $ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/i686-linux-android${RCLONE_NDK_VERSION}-clang)" >> $GITHUB_ENV
echo "CC_FOR_TARGET=$CC" >> $GITHUB_ENV
echo 'GOOS=android' >> $GITHUB_ENV
echo 'GOARCH=386' >> $GITHUB_ENV
echo 'CGO_ENABLED=1' >> $GITHUB_ENV
echo 'CGO_LDFLAGS=-fuse-ld=lld -s -w' >> $GITHUB_ENV
- name: x86 build
run: go build -v -tags android -trimpath -ldflags '-s -X github.com/rclone/rclone/fs.Version='${VERSION} -o build/rclone-android-${RCLONE_NDK_VERSION}-x86 .
- name: x64 Set environment variables
shell: bash
run: |
echo "CC=$(echo $ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/x86_64-linux-android${RCLONE_NDK_VERSION}-clang)" >> $GITHUB_ENV
echo "CC_FOR_TARGET=$CC" >> $GITHUB_ENV
echo 'GOOS=android' >> $GITHUB_ENV
echo 'GOARCH=amd64' >> $GITHUB_ENV
echo 'CGO_ENABLED=1' >> $GITHUB_ENV
echo 'CGO_LDFLAGS=-fuse-ld=lld -s -w' >> $GITHUB_ENV
- name: x64 build
run: go build -v -tags android -trimpath -ldflags '-s -X github.com/rclone/rclone/fs.Version='${VERSION} -o build/rclone-android-${RCLONE_NDK_VERSION}-x64 .
- name: Upload artifacts
run: |
make ci_upload
env:
RCLONE_CONFIG_PASS: ${{ secrets.RCLONE_CONFIG_PASS }}
# Upload artifacts if not a PR && not a fork
if: github.head_ref == '' && github.repository == 'rclone/rclone'
```
### Relevant log output
```sh
# act --job lint -v
DEBU[0000] Loading environment from /home/hunter/Documents/Git/GitHub/hwittenborn/rclone/.env
DEBU[0000] Loading action inputs from /home/hunter/Documents/Git/GitHub/hwittenborn/rclone/.input
DEBU[0000] Loading secrets from /home/hunter/Documents/Git/GitHub/hwittenborn/rclone/.secrets
DEBU[0000] Loading workflows from '/home/hunter/Documents/Git/GitHub/hwittenborn/rclone/.github/workflows'
DEBU[0000] Loading workflows recursively
DEBU[0000] Found workflow 'build.yml' in '/home/hunter/Documents/Git/GitHub/hwittenborn/rclone/.github/workflows/build.yml'
DEBU[0000] Found workflow 'build_publish_docker_image.yml' in '/home/hunter/Documents/Git/GitHub/hwittenborn/rclone/.github/workflows/build_publish_docker_image.yml'
DEBU[0000] Conditional GET for notices etag=b3871570-1ec1-463f-b2b1-b3aa7a697986
DEBU[0000] Found workflow 'build_publish_release_docker_image.yml' in '/home/hunter/Documents/Git/GitHub/hwittenborn/rclone/.github/workflows/build_publish_release_docker_image.yml'
DEBU[0000] Reading workflow '/home/hunter/Documents/Git/GitHub/hwittenborn/rclone/.github/workflows/build.yml'
DEBU[0000] Reading workflow '/home/hunter/Documents/Git/GitHub/hwittenborn/rclone/.github/workflows/build_publish_docker_image.yml'
DEBU[0000] Reading workflow '/home/hunter/Documents/Git/GitHub/hwittenborn/rclone/.github/workflows/build_publish_release_docker_image.yml'
DEBU[0000] Preparing plan with a job: lint
DEBU[0000] Using default workflow event: push
DEBU[0000] Planning job: lint
DEBU[0000] Loading revision from git directory
DEBU[0000] Found revision: 46e590a9ac3b1388d498713befb8ee53cb82675e
DEBU[0000] HEAD points to '46e590a9ac3b1388d498713befb8ee53cb82675e'
DEBU[0000] using github ref: refs/heads/auth-templates
DEBU[0000] Found revision: 46e590a9ac3b1388d498713befb8ee53cb82675e
[build/lint] [DEBUG] evaluating expression '${{ github.event.inputs.manual == 'true' || (github.repository == 'rclone/rclone' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name)) }}'
[build/lint] [DEBUG] expression '${{ github.event.inputs.manual == 'true' || (github.repository == 'rclone/rclone' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name)) }}' evaluated to '%!t(<nil>)'
Error: ❌ Error in if-expression: "if: ${{ github.event.inputs.manual == 'true' || (github.repository == 'rclone/rclone' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name)) }}" (TODO: evaluateCompare not implemented! left: invalid, right: invalid)
```
### Additional information
_No response_ | https://github.com/nektos/act/issues/1643 | https://github.com/nektos/act/pull/1645 | 44b510f48cac6a58654bf920ee26cc6e1d36ac3a | 973dd7f7ef3a26e46ed6c3353eb381e544d27b7b | "2023-02-23T01:02:11Z" | go | "2023-03-03T08:16:33Z" |
closed | nektos/act | https://github.com/nektos/act | 1,639 | ["go.mod", "go.sum"] | Unable to install Python Poetry packages | ### Bug report info
```plain text
act version: 0.2.42
GOOS: linux
GOARCH: amd64
NumCPU: 8
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
Config files:
/home/administrator/.actrc:
-P ubuntu-22.04=runner:latest
Build info:
Go version: go1.18.10
Module path: github.com/nektos/act
Main version: (devel)
Main path: github.com/nektos/act
Main checksum:
Build settings:
-compiler: gc
-ldflags: -s -w -X main.version=0.2.42 -X main.commit=72d03214c5ed8985bf23dc15440fa5301e9d13bf -X main.date=2023-02-02T00:57:22Z -X main.builtBy=goreleaser
CGO_ENABLED: 0
GOARCH: amd64
GOOS: linux
GOAMD64: v1
vcs: git
vcs.revision: 72d03214c5ed8985bf23dc15440fa5301e9d13bf
vcs.time: 2023-02-02T00:56:57Z
vcs.modified: false
Docker Engine:
Engine version: 20.10.17
Engine runtime: runc
Cgroup version: 1
Cgroup driver: cgroupfs
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Ubuntu 20.04.4 LTS
OS type: linux
OS version: 20.04
OS arch: x86_64
OS kernel: 5.15.79.1-microsoft-standard-WSL2
OS CPU: 8
OS memory: 15935 MB
Security options:
name=seccomp,profile=default
```
### Command used with act
```sh
act -P ubuntu-latest=andrewriggsatkins/python-github-action-runner:latest -j poetry
```
### Describe issue
When running the below command, it is expected that the Python packages defined in a local `.toml` file are installed using Poetry.
```bash
python3 -m poetry install
```
I can confirm the following (works/doesn't work):
- [x] Installation of Poetry using the following - `python3 -m pip install poetry`
- [x] Export of the Poetry Python packages - `python3 -m poetry export --without-hashes --with dev --format=requirements.txt > requirements.txt`
- [x] Install exported Poetry Python packages with Pip - `python3 -m pip install -r ./requirements.txt`
- [ ] Installation of Poetry Packages - `python3 -m poetry install`
### Link to GitHub repository
_No response_
### Workflow content
```yml
name: Poetry
on:
push:
branches:
- main
pull_request:
jobs:
poetry:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Poetry
run: python3 -m pip install poetry
- name: Install Poetry Packages
run: python3 -m poetry install
```
### Relevant log output
```sh
[Poetry/poetry] ✅ Success - Main Install Poetry
[Poetry/poetry] ⭐ Run Main Install Poetry Packages
[Poetry/poetry] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/2] user= workdir=
| Creating virtualenv program-oVhNZiiP-py3.10 in /root/.cache/pypoetry/virtualenvs
| Using virtualenv: /root/.cache/pypoetry/virtualenvs/program-oVhNZiiP-py3.10
| Installing dependencies from lock file
|
| Finding the necessary packages for the current system
|
| Package operations: 122 installs, 1 update, 0 removals
|
[Poetry/poetry] ❌ Failure - Main Install Poetry Packages
[Poetry/poetry] exitcode '1': failure
[Poetry/poetry] 🏁 Job failed
Error: Job 'poetry' failed
```
### Additional information
_No response_ | https://github.com/nektos/act/issues/1639 | https://github.com/nektos/act/pull/1233 | c67abf2401ba57097e862b524b86de7171f1c609 | 4deb21344d40dd4c029d5c1048a7f1d557ab8774 | "2023-02-20T13:49:22Z" | go | "2022-06-30T02:19:13Z" |
closed | nektos/act | https://github.com/nektos/act | 1,621 | ["pkg/runner/run_context.go", "pkg/runner/run_context_test.go", "pkg/runner/step_test.go"] | github.job property is empty | ### Bug report info
```plain text
act version: 0.2.42
GOOS: windows
GOARCH: amd64
NumCPU: 16
Docker host: tcp://192.168.99.111:2376
Sockets found:
Config files:
C:\Users\User\.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
Build info:
Go version: go1.18.10
Module path: github.com/nektos/act
Main version: (devel)
Main path: github.com/nektos/act
Main checksum:
Build settings:
-compiler: gc
-ldflags: -s -w -X main.version=0.2.42 -X main.commit=72d03214c5ed8985bf23dc15440fa5301e9d13bf -X main.date=2023-02-02T00:57:22Z -X main.builtBy=goreleaser
CGO_ENABLED: 0
GOARCH: amd64
GOOS: windows
GOAMD64: v1
vcs: git
vcs.revision: 72d03214c5ed8985bf23dc15440fa5301e9d13bf
vcs.time: 2023-02-02T00:56:57Z
vcs.modified: false
Docker Engine:
Engine version: 23.0.0
Engine runtime: runc
Cgroup version: 1
Cgroup driver: cgroupfs
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Boot2Docker 23.0.0 (TCL 13.1)
OS type: linux
OS version: 23.0.0
OS arch: x86_64
OS kernel: 5.15.91-boot2docker
OS CPU: 4
OS memory: 7963 MB
Security options:
name=seccomp,profile=builtin
```
### Command used with act
```sh
act -r
```
### Describe issue
When running the workflow with act the `github.job` property is empty but should contain the job ID according https://docs.github.com/en/actions/learn-github-actions/contexts#github-context
### Link to GitHub repository
_No response_
### Workflow content
```yml
name: Build
on: [workflow_dispatch]
jobs:
test:
runs-on: "ubuntu-20.04"
steps:
- name: "Log job name"
run: |
echo "github.job=[${{ github.job }}]"
echo "GITHUB_JOB=[$GITHUB_JOB]"
```
### Relevant log output
```sh
[Build/test] � Start image=catthehacker/ubuntu:act-20.04
[Build/test] � docker pull image=catthehacker/ubuntu:act-20.04 platform= username= forcePull=true
[Build/test] � docker create image=catthehacker/ubuntu:act-20.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[]
[Build/test] � docker run image=catthehacker/ubuntu:act-20.04 platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[]
[Build/test] ⭐ Run Main Log job name
[Build/test] � docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=
| github.job=[]
| GITHUB_JOB=[test]
[Build/test] ✅ Success - Main Log job name
[Build/test] � Job succeeded
```
### Additional information
_No response_ | https://github.com/nektos/act/issues/1621 | https://github.com/nektos/act/pull/1646 | 04d12b0206a62cc48a765ed29f2a1ad732d33b3b | 5500c928ebb6c4e7dcfb37c29c7100dd7e721b68 | "2023-02-09T14:21:01Z" | go | "2023-02-27T19:10:31Z" |
closed | nektos/act | https://github.com/nektos/act | 1,595 | ["cmd/root.go", "pkg/artifacts/server_test.go", "pkg/model/planner.go", "pkg/model/workflow_test.go", "pkg/runner/reusable_workflow.go", "pkg/runner/runner_test.go", "pkg/runner/testdata/issue-1595/missing.yml", "pkg/runner/testdata/issue-1595/no-event.yml", "pkg/runner/testdata/issue-1595/no-first.yml"] | Unable to build dependency graph | ### Bug report info
```plain text
act version: 0.2.41
GOOS: darwin
GOARCH: amd64
NumCPU: 12
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
/Users/srepollock/.docker/run/docker.sock
Config files:
Build info:
Go version: go1.19.5
Module path: command-line-arguments
Main version:
Main path:
Main checksum:
Build settings:
-compiler: gc
-ldflags: -X main.version=0.2.41
CGO_ENABLED: 1
CGO_CFLAGS:
CGO_CPPFLAGS:
CGO_CXXFLAGS:
CGO_LDFLAGS:
GOARCH: amd64
GOOS: darwin
GOAMD64: v1
Docker Engine:
Engine version: 20.10.22
Engine runtime: runc
Cgroup version: 2
Cgroup driver: cgroupfs
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Docker Desktop
OS type: linux
OS version:
OS arch: x86_64
OS kernel: 5.15.49-linuxkit
OS CPU: 4
OS memory: 3933 MB
Security options:
name=seccomp,profile=default
name=cgroupns
```
### Command used with act
```sh
act --verbose
```
### Describe issue
I expected the module to run any of my programs
### Link to GitHub repository
_No response_
### Workflow content
```yml
n/a
```
### Relevant log output
```sh
DEBU[0000] Loading environment from /redacted/.env
DEBU[0000] Loading action inputs from /redacted/.input
DEBU[0000] Loading secrets from /redacted/.secrets
DEBU[0000] Loading workflows from '/redacted/.github/workflows'
DEBU[0000] Loading workflows recursively
DEBU[0000] Found workflow 'build.yml' in '/redacted/.github/workflows/build.yml'
DEBU[0000] Found workflow 'release.yml' in '/redacted/.github/workflows/release.yml'
DEBU[0000] Found workflow 'test.yml' in '/redacted/.github/workflows/test.yml'
DEBU[0000] Reading workflow '/redacted/.github/workflows/build.yml'
DEBU[0000] Reading workflow '/redacted/.github/workflows/release.yml'
DEBU[0000] Reading workflow '/redacted/.github/workflows/test.yml'
DEBU[0000] Preparing plan with all jobs
FATA[0000] Unable to build dependency graph!
```
### Additional information
_No response_ | https://github.com/nektos/act/issues/1595 | https://github.com/nektos/act/pull/1619 | 21ea3d0d5fc92cf9ae93c62c0af7ec3a5da36541 | be4a1477a5b73b3e17f79891ec6147413acb4df7 | "2023-02-01T21:06:11Z" | go | "2023-02-16T16:41:59Z" |
closed | nektos/act | https://github.com/nektos/act | 1,594 | ["pkg/runner/action.go"] | Local workflow broken after ACT upgrade | ### Bug report info
```plain text
This just happened after upgrading act to its latest version.
act version: 0.2.41
GOOS: darwin
GOARCH: amd64
NumCPU: 12
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
/Users/andy/.docker/run/docker.sock
Config files:
/Users/andy/.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.19.5
Module path: command-line-arguments
Main version:
Main path:
Main checksum:
Build settings:
-compiler: gc
-ldflags: -X main.version=0.2.41
CGO_ENABLED: 1
CGO_CFLAGS:
CGO_CPPFLAGS:
CGO_CXXFLAGS:
CGO_LDFLAGS:
GOARCH: amd64
GOOS: darwin
GOAMD64: v1
Docker Engine:
Engine version: 20.10.22
Engine runtime: runc
Cgroup version: 2
Cgroup driver: cgroupfs
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Docker Desktop
OS type: linux
OS version:
OS arch: x86_64
OS kernel: 5.15.49-linuxkit
OS CPU: 8
OS memory: 11978 MB
Security options:
name=seccomp,profile=default
name=cgroupns
```
```
### Command used with act
```sh
act -W .github/workflows/handle_pr_insecure.yaml
```
### Describe issue
Error response from daemon: pull access denied for act-aquasecurity-trivy-action-master-dockeraction, repository does not exist or may require 'docker login': denied: requested access to the resource is denied
### Link to GitHub repository
_No response_
### Workflow content
```yml
n/a
```
### Relevant log output
```sh
n/a
```
### Additional information
_No response_ | https://github.com/nektos/act/issues/1594 | https://github.com/nektos/act/pull/1599 | 72d03214c5ed8985bf23dc15440fa5301e9d13bf | f91b2aa5dbcb16075f49c96a6108d0d418382f4d | "2023-02-01T18:08:09Z" | go | "2023-02-02T17:24:35Z" |
closed | nektos/act | https://github.com/nektos/act | 1,567 | [".github/actions/run-tests/action.yml", ".github/workflows/checks.yml"] | Reduce logs in act CI | ### Act version
master
### Feature description
## Overview
Reduce the log footprint in the CI (currently using github action).
The logs from the CI workflow `test-linux` reaches over 70K log lines.
It could help putting some of them in a log file
## Details
The current CI prints a lot of informations: the go test logs (test name, test result,...) and the logs from `act` itself.
We reach over 70K log lines in each run, just for the step `go test`. We could reduce that by putting the logs from `act` into a dedicated file.
## Limitations
The issue/limitation with this is that if we need the logs from `act` in order to understand a failing test we need to be able to retrieve that log file for that test (yes, having a log file for each test is better :wink: ).
That means we must some how upload that files to some packages storage and have it cleaned after some time (15 days is enough ?? ) that require extra work on the CI (cron jobs running that list packages and clean log files that are too old).
We can find other solutions for that, as long as we split the logs from the `go test` command from the `act` logs we'll make the CI output much easier to read. | https://github.com/nektos/act/issues/1567 | https://github.com/nektos/act/pull/1580 | 09e9f6a1ac00592b0341d73d6c642dd4aeb83a02 | 932863bef508868168954ef69572750cf87f463f | "2023-01-18T14:52:46Z" | go | "2023-01-25T08:14:51Z" |
closed | nektos/act | https://github.com/nektos/act | 1,559 | ["README.md", "cmd/input.go", "cmd/root.go", "pkg/artifacts/server.go", "pkg/artifacts/server_test.go", "pkg/runner/run_context.go", "pkg/runner/runner.go"] | Embedded artifact server inaccessible on clients with Zscaler Client Connector running | ### Bug report info
```plain text
act version: 0.2.35
GOOS: darwin
GOARCH: amd64
NumCPU: 16
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
Config files:
/Users/robin/.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.19.4
Module path: command-line-arguments
Main version:
Main path:
Main checksum:
Build settings:
-compiler: gc
-ldflags: -X main.version=0.2.35
CGO_ENABLED: 1
CGO_CFLAGS:
CGO_CPPFLAGS:
CGO_CXXFLAGS:
CGO_LDFLAGS:
GOARCH: amd64
GOOS: darwin
GOAMD64: v1
Docker Engine:
Engine version: 20.10.21
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: x86_64
OS kernel: 5.15.49-linuxkit
OS CPU: 4
OS memory: 7959 MB
Security options:
name=seccomp,profile=default
name=cgroupns
```
### Command used with act
```sh
act workflow_dispatch -W .github/workflows/test.yml --artifact-server-path .
```
### Describe issue
On client devices with the Zscaler Client Connector installed, the outbound IP is always `100.64.0.1` (CGNAT). Unfortunately, on non-Linux devices, this address is unroutable from Docker Desktop's embedded VM or the containers running on it, thus making the embedded artifact server inaccessible.
### Link to GitHub repository
_No response_
### Workflow content
```yml
name: Test
on:
workflow_dispatch: {}
jobs:
release:
runs-on: ubuntu-latest
steps:
- run: touch test-artifact
- uses: actions/upload-artifact@v3
with:
name: artifacts
path: test-artifact
```
### Relevant log output
```sh
DEBU[0000] Loading environment from /tmp/act-test/.env
DEBU[0000] Loading secrets from /tmp/act-test/.secrets
DEBU[0000] Loading workflow '/tmp/act-test/.github/workflows/test.yml'
DEBU[0000] Reading workflow '/tmp/act-test/.github/workflows/test.yml'
DEBU[0000] Using first passed in arguments event for filtering: workflow_dispatch
DEBU[0000] Preparing plan for a event: workflow_dispatch
DEBU[0000] Using first passed in arguments event: workflow_dispatch
DEBU[0000] Planning jobs for event: workflow_dispatch
DEBU[0000] Artifacts base path '.'
INFO[0000] Start server on http://100.64.0.1:34567
WARN[0000] unable to get git repo: unable to find git repo
WARN[0000] unable to get git ref: unable to find git repo
WARN[0000] unable to get git revision: unable to find git repo
[Test/release] [DEBUG] evaluating expression 'success()'
[Test/release] [DEBUG] expression 'success()' evaluated to 'true'
[Test/release] 🚀 Start image=catthehacker/ubuntu:act-latest
[Test/release] 🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=false
[Test/release] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest
[Test/release] [DEBUG] Image exists? true
[Test/release] 🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[]
[Test/release] [DEBUG] Common container.Config ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:false AttachStderr:false ExposedPorts:map[] Tty:true OpenStdin:false StdinOnce:false Env:[RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8] Cmd:[] Healthcheck:<nil> ArgsEscaped:false Image:catthehacker/ubuntu:act-latest Volumes:map[] WorkingDir:/tmp/act-test Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]}
[Test/release] [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:[] 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: ConsoleSize:[0 0] 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:/toolcache ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil>} {Type:volume Source:act-Test-release-env Target:/var/run/act ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil>} {Type:volume Source:act-Test-release Target:/tmp/act-test ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil>}] MaskedPaths:[] ReadonlyPaths:[] Init:<nil>}
[Test/release] [DEBUG] Created container name=act-Test-release id=7a348bfdaedc96e00a1296721658cb4e56b96515c3316d74e6a7a0330a94443a from image catthehacker/ubuntu:act-latest (platform: )
[Test/release] [DEBUG] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8]
[Test/release] 🐳 docker run image=catthehacker/ubuntu:act-latest platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[]
[Test/release] [DEBUG] Starting container: 7a348bfdaedc96e00a1296721658cb4e56b96515c3316d74e6a7a0330a94443a
[Test/release] [DEBUG] Started container: 7a348bfdaedc96e00a1296721658cb4e56b96515c3316d74e6a7a0330a94443a
[Test/release] [DEBUG] Writing entry to tarball workflow/event.json len:2
[Test/release] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[Test/release] [DEBUG] Extracting content to '/var/run/act/'
[Test/release] unable to get git repo: unable to find git repo
[Test/release] unable to get git ref: unable to find git repo
[Test/release] unable to get git revision: unable to find git repo
[Test/release] unable to get git repo: unable to find git repo
[Test/release] unable to get git ref: unable to find git repo
[Test/release] unable to get git revision: unable to find git repo
[Test/release] ☁ git clone 'https://github.com/actions/upload-artifact' # ref=v3
[Test/release] [DEBUG] cloning https://github.com/actions/upload-artifact to /Users/user/.cache/act/actions-upload-artifact@v3
[Test/release] [DEBUG] Unable to pull refs/heads/v3: worktree contains unstaged changes
[Test/release] [DEBUG] Cloned https://github.com/actions/upload-artifact to /Users/user/.cache/act/actions-upload-artifact@v3
[Test/release] [DEBUG] Checked out v3
[Test/release] [DEBUG] Read action &{Upload a Build Artifact GitHub Upload a build artifact that can be used by subsequent workflow steps map[if-no-files-found:{The desired behavior if no files are found using the provided path.
Available Options:
warn: Output a warning but do not fail the action
error: Fail the action with an error message
ignore: Do not output any warnings or errors, the action does not fail
false warn} name:{Artifact name false artifact} path:{A file, directory or wildcard pattern that describes what to upload true } retention-days:{Duration after which artifact will expire in days. 0 means using default retention.
Minimum 1 day. Maximum 90 days unless changed from the repository settings page.
false }] map[] {node16 map[] dist/index.js always() always() [] []} { }} from 'Unknown'
[Test/release] unable to get git repo: unable to find git repo
[Test/release] unable to get git ref: unable to find git repo
[Test/release] unable to get git revision: unable to find git repo
[Test/release] unable to get git repo: unable to find git repo
[Test/release] unable to get git ref: unable to find git repo
[Test/release] unable to get git revision: unable to find git repo
[Test/release] unable to get git repo: unable to find git repo
[Test/release] unable to get git ref: unable to find git repo
[Test/release] unable to get git revision: unable to find git repo
[Test/release] [DEBUG] setupEnv => map[ACT:true ACTIONS_RUNTIME_TOKEN:token ACTIONS_RUNTIME_URL:http://100.64.0.1:34567/ AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 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_ENV:/var/run/act/workflow/envs.txt GITHUB_EVENT_NAME:workflow_dispatch GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:release GITHUB_REF:refs/heads/master GITHUB_REF_NAME:master GITHUB_REF_TYPE:branch GITHUB_REPOSITORY: GITHUB_REPOSITORY_OWNER: GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA: GITHUB_TOKEN: GITHUB_WORKFLOW:Test GITHUB_WORKSPACE:/tmp/act-test IMAGE_OS:ubuntu22 ImageOS:ubuntu20 LSB_OS_VERSION:2204 LSB_RELEASE:22.04 PATH:/opt/hostedtoolcache/node/16.19.0/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[Test/release] unable to get git repo: unable to find git repo
[Test/release] unable to get git ref: unable to find git repo
[Test/release] unable to get git revision: unable to find git repo
[Test/release] unable to get git repo: unable to find git repo
[Test/release] unable to get git ref: unable to find git repo
[Test/release] unable to get git revision: unable to find git repo
[Test/release] [DEBUG] evaluating expression ''
[Test/release] [DEBUG] expression '' evaluated to 'true'
[Test/release] ⭐ Run Main touch test-artifact
[Test/release] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0
[Test/release] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0
[Test/release] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0
[Test/release] [DEBUG] Extracting content to '/var/run/act'
[Test/release] unable to get git repo: unable to find git repo
[Test/release] unable to get git ref: unable to find git repo
[Test/release] unable to get git revision: unable to find git repo
[Test/release] unable to get git repo: unable to find git repo
[Test/release] unable to get git ref: unable to find git repo
[Test/release] unable to get git revision: unable to find git repo
[Test/release] unable to get git repo: unable to find git repo
[Test/release] unable to get git ref: unable to find git repo
[Test/release] unable to get git revision: unable to find git repo
[Test/release] unable to get git repo: unable to find git repo
[Test/release] unable to get git ref: unable to find git repo
[Test/release] unable to get git revision: unable to find git repo
[Test/release] [DEBUG] Wrote command
touch test-artifact
to 'workflow/0'
[Test/release] [DEBUG] Writing entry to tarball workflow/0 len:21
[Test/release] [DEBUG] Extracting content to '/var/run/act'
[Test/release] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=
[Test/release] [DEBUG] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0]'
[Test/release] [DEBUG] Working directory '/tmp/act-test'
[Test/release] ✅ Success - Main touch test-artifact
[Test/release] unable to get git repo: unable to find git repo
[Test/release] unable to get git ref: unable to find git repo
[Test/release] unable to get git revision: unable to find git repo
[Test/release] unable to get git repo: unable to find git repo
[Test/release] unable to get git ref: unable to find git repo
[Test/release] unable to get git revision: unable to find git repo
[Test/release] unable to get git repo: unable to find git repo
[Test/release] unable to get git ref: unable to find git repo
[Test/release] unable to get git revision: unable to find git repo
[Test/release] [DEBUG] setupEnv => map[ACT:true ACTIONS_RUNTIME_TOKEN:token ACTIONS_RUNTIME_URL:http://100.64.0.1:34567/ AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_PATH: GITHUB_ACTION_REF:v3 GITHUB_ACTION_REPOSITORY:actions/upload-artifact GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt GITHUB_EVENT_NAME:workflow_dispatch GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:release GITHUB_REF:refs/heads/master GITHUB_REF_NAME:master GITHUB_REF_TYPE:branch GITHUB_REPOSITORY: GITHUB_REPOSITORY_OWNER: GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA: GITHUB_TOKEN: GITHUB_WORKFLOW:Test GITHUB_WORKSPACE:/tmp/act-test IMAGE_OS:ubuntu22 INPUT_NAME:artifacts INPUT_PATH:test-artifact ImageOS:ubuntu20 LSB_OS_VERSION:2204 LSB_RELEASE:22.04 PATH:/opt/hostedtoolcache/node/16.19.0/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[Test/release] unable to get git repo: unable to find git repo
[Test/release] unable to get git ref: unable to find git repo
[Test/release] unable to get git revision: unable to find git repo
[Test/release] unable to get git repo: unable to find git repo
[Test/release] unable to get git ref: unable to find git repo
[Test/release] unable to get git revision: unable to find git repo
[Test/release] [DEBUG] evaluating expression ''
[Test/release] [DEBUG] expression '' evaluated to 'true'
[Test/release] ⭐ Run Main actions/upload-artifact@v3
[Test/release] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0
[Test/release] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0
[Test/release] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0
[Test/release] [DEBUG] Extracting content to '/var/run/act'
[Test/release] unable to get git repo: unable to find git repo
[Test/release] unable to get git ref: unable to find git repo
[Test/release] unable to get git revision: unable to find git repo
[Test/release] [DEBUG] About to run action &{Upload a Build Artifact GitHub Upload a build artifact that can be used by subsequent workflow steps map[if-no-files-found:{The desired behavior if no files are found using the provided path.
Available Options:
warn: Output a warning but do not fail the action
error: Fail the action with an error message
ignore: Do not output any warnings or errors, the action does not fail
false warn} name:{Artifact name false artifact} path:{A file, directory or wildcard pattern that describes what to upload true } retention-days:{Duration after which artifact will expire in days. 0 means using default retention.
Minimum 1 day. Maximum 90 days unless changed from the repository settings page.
false }] map[] {node16 map[] dist/index.js always() always() [] []} { }}
[Test/release] unable to get git repo: unable to find git repo
[Test/release] unable to get git ref: unable to find git repo
[Test/release] unable to get git revision: unable to find git repo
[Test/release] unable to get git repo: unable to find git repo
[Test/release] unable to get git ref: unable to find git repo
[Test/release] unable to get git revision: unable to find git repo
[Test/release] [DEBUG] type=remote-action actionDir=/Users/user/.cache/act/actions-upload-artifact@v3 actionPath= workdir=/tmp/act-test actionCacheDir=/Users/user/.cache/act actionName=actions-upload-artifact@v3 containerActionDir=/var/run/act/actions/actions-upload-artifact@v3
[Test/release] [DEBUG] Removing /Users/user/.cache/act/actions-upload-artifact@v3/.gitignore before docker cp
[Test/release] [DEBUG] /var/run/act/actions/actions-upload-artifact@v3
[Test/release] 🐳 docker cp src=/Users/user/.cache/act/actions-upload-artifact@v3/ dst=/var/run/act/actions/actions-upload-artifact@v3/
[Test/release] [DEBUG] Writing tarball /var/folders/jy/ymjz39d57gdg3gv481q552dr0000gn/T/act4048109990 from /Users/user/.cache/act/actions-upload-artifact@v3/
[Test/release] [DEBUG] Stripping prefix:/Users/user/.cache/act/actions-upload-artifact@v3/ src:/Users/user/.cache/act/actions-upload-artifact@v3/
[Test/release] [DEBUG] Extracting content from '/var/folders/jy/ymjz39d57gdg3gv481q552dr0000gn/T/act4048109990' to '/var/run/act/actions/actions-upload-artifact@v3/'
[Test/release] [DEBUG] executing remote job container: [node /var/run/act/actions/actions-upload-artifact@v3/dist/index.js]
[Test/release] 🐳 docker exec cmd=[node /var/run/act/actions/actions-upload-artifact@v3/dist/index.js] user= workdir=
[Test/release] [DEBUG] Exec command '[node /var/run/act/actions/actions-upload-artifact@v3/dist/index.js]'
[Test/release] [DEBUG] Working directory '/tmp/act-test'
[Test/release] 💬 ::debug::followSymbolicLinks 'true'
[Test/release] 💬 ::debug::implicitDescendants 'true'
[Test/release] 💬 ::debug::omitBrokenSymbolicLinks 'true'
[Test/release] 💬 ::debug::followSymbolicLinks 'true'
[Test/release] 💬 ::debug::implicitDescendants 'true'
[Test/release] 💬 ::debug::matchDirectories 'true'
[Test/release] 💬 ::debug::omitBrokenSymbolicLinks 'true'
[Test/release] 💬 ::debug::Search path '/tmp/act-test/test-artifact'
[Test/release] 💬 ::debug::File:/tmp/act-test/test-artifact was found using the provided searchPath
| With the provided path, there will be 1 file uploaded
[Test/release] 💬 ::debug::Root artifact directory is /tmp/act-test
| Starting artifact upload
| For more detailed logs during the artifact upload process, enable step-debugging: https://docs.github.com/actions/monitoring-and-troubleshooting-workflows/enabling-debug-logging#enabling-step-debug-logging
| Artifact name is valid!
[Test/release] 💬 ::debug::Artifact Url: http://100.64.0.1:34567/_apis/pipelines/workflows/1/artifacts?api-version=6.0-preview
| Create Artifact Container - Attempt 1 of 5 failed with error: socket hang up
| Create Artifact Container - Attempt 2 of 5 failed with error: socket hang up
| Create Artifact Container - Attempt 3 of 5 failed with error: socket hang up
| Create Artifact Container - Attempt 4 of 5 failed with error: socket hang up
| Create Artifact Container - Attempt 5 of 5 failed with error: socket hang up
[Test/release] ❗ ::error::Create Artifact Container failed: socket hang up
[Test/release] ❌ Failure - Main actions/upload-artifact@v3
[Test/release] exitcode '1': failure
[Test/release] 🏁 Job failed
[Test/release] unable to get git repo: unable to find git repo
[Test/release] unable to get git ref: unable to find git repo
[Test/release] unable to get git revision: unable to find git repo
Error: Job 'release' failed
```
### Additional information
I've already developed a patch to address this issue: PR incoming. | https://github.com/nektos/act/issues/1559 | https://github.com/nektos/act/pull/1560 | 93907931df737bdd21ecc624f4983fb1b365357a | d064863f9bb65cde863c8cb20fea50e0f139032c | "2023-01-13T16:38:30Z" | go | "2023-01-16T14:12:20Z" |
closed | nektos/act | https://github.com/nektos/act | 1,546 | ["pkg/model/github_context.go"] | unable to find git repo | ### Discussed in https://github.com/nektos/act/discussions/1545
<div type='discussions-op-text'>
<sup>Originally posted by **tornado404** January 4, 2023</sup>
# error
I got a error as following
```
[pushImage/bimg] unable to get git repo: unable to find git repo
[pushImage/bimg] unable to get git ref: unable to find git repo
[pushImage/bimg] unable to get git revision: unable to find git repo
[pushImage/bimg] unable to get git repo: unable to find git repo
[pushImage/bimg] unable to get git ref: unable to find git repo
[pushImage/bimg] unable to get git revision: unable to find git repo
[pushImage/bimg] [DEBUG] evaluating expression 'always()'
[pushImage/bimg] [DEBUG] expression 'always()' evaluated to 'true'
[pushImage/bimg] ⭐ Run Pre Get tag info
[pushImage/bimg] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0
[pushImage/bimg] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0
[pushImage/bimg] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0
[pushImage/bimg] [DEBUG] Extracting content to '/var/run/act'
[pushImage/bimg] [DEBUG] run pre step for 'Get tag info'
[pushImage/bimg] unable to get git repo: unable to find git repo
[pushImage/bimg] unable to get git ref: unable to find git repo
[pushImage/bimg] unable to get git revision: unable to find git repo
[pushImage/bimg] unable to get git repo: unable to find git repo
[pushImage/bimg] unable to get git ref: unable to find git repo
[pushImage/bimg] unable to get git revision: unable to find git repo
[pushImage/bimg] unable to get git repo: unable to find git repo
[pushImage/bimg] unable to get git ref: unable to find git repo
[pushImage/bimg] unable to get git revision: unable to find git repo
[pushImage/bimg] ✅ Success - Pre Get tag info
[pushImage/bimg] unable to get git repo: unable to find git repo
[pushImage/bimg] unable to get git ref: unable to find git repo
[pushImage/bimg] unable to get git revision: unable to find git repo
[pushImage/bimg] ☁ git clone 'https://github.com/pr-mpt/actions-commit-hash' # ref=v2
[pushImage/bimg] [DEBUG] cloning https://github.com/pr-mpt/actions-commit-hash to /root/.cache/act/pr-mpt-actions-commit-hash@v2
[pushImage/bimg] Unable to resolve v2: unsupported object type
[pushImage/bimg] Unable to resolve v2: unsupported object type
[pushImage/bimg] [DEBUG] skipping post step for 'Build and push pfs-csi-plugin'; step was not executed
[pushImage/bimg] [DEBUG] skipping post step for 'Build and push ***-server'; step was not executed
[pushImage/bimg] [DEBUG] skipping post step for 'Login to DockerHub'; step was not executed
[pushImage/bimg] [DEBUG] skipping post step for 'get commit hash'; step was not executed
[pushImage/bimg] [DEBUG] skipping post step for 'Get tag info'; step was not executed
[pushImage/bimg] [DEBUG] skipping post step for 'Uploading assets'; step was not executed
[pushImage/bimg] [DEBUG] skipping post step for 'Checkout code'; step was not executed
[pushImage/bimg] [DEBUG] skipping post step for 'Install go'; step was not executed
[pushImage/bimg] [DEBUG] Removed container: cddf11fec1344b5aa6bddddcafaac4eb4b86d4534b045e13f7ca88039a742524
[pushImage/bimg] [DEBUG] 🐳 docker volume rm act-pushImage-bimg
[pushImage/bimg] [DEBUG] 🐳 docker volume rm act-pushImage-bimg-env
[pushImage/bimg] 🏁 Job succeeded
[pushImage/bimg] unable to get git repo: unable to find git repo
[pushImage/bimg] unable to get git ref: unable to find git repo
[pushImage/bimg] unable to get git revision: unable to find git repo
Error: unsupported object type
```
# repeat error
```
cat>/home/tmp/release.json<<EOF
{
"push": {
"head": {
"ref": "develop"
},
"base": {
"ref": "develop"
}
}
}
EOF
cat>/home/tmp/my.secrets<<EOF
GITHUB_TOKEN=xxx
DOCKERHUB_USERNAME=xxx
DOCKERHUB_TOKEN=xxx
EOF
```
my command is `act --secret-file /home/tmp/my.secrets --artifact-server-path /tmp/dc --verbose -e /home/tmp/release.json -j bimg`
What's wrong about the event content? I have evet got the following action to fetch the full content of event, but not works.
```
- name: Dump GitHub context
id: github_context_step
run: echo '${{ toJSON(github) }}'
```
```
{
"after": "61a8b3560d0b5242427772b0035416b427ca5c92",
"base_ref": null,
"before": "0000000000000000000000000000000000000000",
"commits": [
{
"committer": {
"email": "[email protected]",
"name": "GitHub",
"username": "web-flow"
},
"distinct": true,
"id": "a71f3700fd1988faf4b3da2ed1d31122d641d52e",
"message": "security fix, fix python cli pyyaml from 5.3 to 5.4 (#984)",
"timestamp": "2022-12-30T16:45:35+08:00",
"tree_id": "baa51edf94d8546e87bfedf6a6df4b6fb35e794c",
"url": "https://github.com/tornado404/PaddleFlow/commit/a71f3700fd1988faf4b3da2ed1d31122d641d52e"
},
{
"author": {
"email": "[email protected]",
"name": "zhongzichao",
"username": "tornado404"
},
"committer": {
"email": "[email protected]",
"name": "GitHub",
"username": "web-flow"
},
"distinct": true,
"id": "fa1448ca764d88110bcd0289058147f4cc34586e",
"message": "reduce relations between job and task Listener (#983)\n\n* reduce relations between job and task Listener\r\n* only change the registerTaskListener\r\n* fix taskclient without jobClient.AddEventListener\r\n* create only one go routine\r\n* create only one go routine\r\n* return nil\r\n* adjust log level for sync job informer",
"timestamp": "2023-01-03T11:01:52+08:00",
"tree_id": "7e83e0043196e086cbb405229138f3f48b6520ac",
"url": "https://github.com/tornado404/PaddleFlow/commit/fa1448ca764d88110bcd0289058147f4cc34586e"
},
{
"author": {
"email": "[email protected]",
"name": "zhongzichao",
"username": "tornado404"
},
"committer": {
"email": "[email protected]",
"name": "zhongzichao",
"username": "tornado404"
},
"distinct": true,
"id": "70b354347a4978eec8d5169603edb0f743532810",
"message": "improve dockerfile and release",
"timestamp": "2023-01-04T10:32:03+08:00",
"tree_id": "e5ec9ceb3d21bd751be8b12b106bf124cbab7f2f",
"url": "https://github.com/tornado404/PaddleFlow/commit/70b354347a4978eec8d5169603edb0f743532810"
},
{
"author": {
"email": "[email protected]",
"name": "zhongzichao",
"username": "tornado404"
},
"committer": {
"email": "[email protected]",
"name": "zhongzichao",
"username": "tornado404"
},
"distinct": true,
"id": "61a8b3560d0b5242427772b0035416b427ca5c92",
"message": "improve dockerfile and release",
"timestamp": "2023-01-04T14:44:53+08:00",
"tree_id": "f8c6c465b44e197b4a5cf9f3becc25647d10535f",
"url": "https://github.com/tornado404/PaddleFlow/commit/61a8b3560d0b5242427772b0035416b427ca5c92"
}
],
"compare": "https://github.com/tornado404/PaddleFlow/compare/a71f3700fd19^...61a8b3560d0b",
"created": true,
"deleted": false,
"forced": false,
"head_commit": {
"author": {
"email": "[email protected]",
"name": "zhongzichao",
"username": "tornado404"
},
"committer": {
"email": "[email protected]",
"name": "zhongzichao",
"username": "tornado404"
},
"distinct": true,
"id": "61a8b3560d0b5242427772b0035416b427ca5c92",
"message": "improve dockerfile and release",
"timestamp": "2023-01-04T14:44:53+08:00",
"tree_id": "f8c6c465b44e197b4a5cf9f3becc25647d10535f",
"url": "https://github.com/tornado404/PaddleFlow/commit/61a8b3560d0b5242427772b0035416b427ca5c92"
},
"pusher": {
"email": "[email protected]",
"name": "tornado404"
},
"ref": "refs/heads/fix_dockerfile",
"repository": {
"allow_forking": true,
"archive_url": "https://api.github.com/repos/tornado404/PaddleFlow/{archive_format}{/ref}",
"archived": false,
"assignees_url": "https://api.github.com/repos/tornado404/PaddleFlow/assignees{/user}",
"blobs_url": "https://api.github.com/repos/tornado404/PaddleFlow/git/blobs{/sha}",
"branches_url": "https://api.github.com/repos/tornado404/PaddleFlow/branches{/branch}",
"clone_url": "https://github.com/tornado404/PaddleFlow.git",
"collaborators_url": "https://api.github.com/repos/tornado404/PaddleFlow/collaborators{/collaborator}",
"comments_url": "https://api.github.com/repos/tornado404/PaddleFlow/comments{/number}",
"commits_url": "https://api.github.com/repos/tornado404/PaddleFlow/commits{/sha}",
"compare_url": "https://api.github.com/repos/tornado404/PaddleFlow/compare/{base}...{head}",
"contents_url": "https://api.github.com/repos/tornado404/PaddleFlow/contents/{+path}",
"contributors_url": "https://api.github.com/repos/tornado404/PaddleFlow/contributors",
"created_at": 1647433161,
"default_branch": "develop",
"deployments_url": "https://api.github.com/repos/tornado404/PaddleFlow/deployments",
"description": null,
"disabled": false,
"downloads_url": "https://api.github.com/repos/tornado404/PaddleFlow/downloads",
"events_url": "https://api.github.com/repos/tornado404/PaddleFlow/events",
"fork": true,
"forks": 0,
"forks_count": 0,
"forks_url": "https://api.github.com/repos/tornado404/PaddleFlow/forks",
"full_name": "tornado404/PaddleFlow",
"git_commits_url": "https://api.github.com/repos/tornado404/PaddleFlow/git/commits{/sha}",
"git_refs_url": "https://api.github.com/repos/tornado404/PaddleFlow/git/refs{/sha}",
"git_tags_url": "https://api.github.com/repos/tornado404/PaddleFlow/git/tags{/sha}",
"git_url": "git://github.com/tornado404/PaddleFlow.git",
"has_discussions": false,
"has_downloads": true,
"has_issues": false,
"has_pages": false,
"has_projects": true,
"has_wiki": true,
"homepage": null,
"hooks_url": "https://api.github.com/repos/tornado404/PaddleFlow/hooks",
"html_url": "https://github.com/tornado404/PaddleFlow",
"id": 470570253,
"is_template": false,
"issue_comment_url": "https://api.github.com/repos/tornado404/PaddleFlow/issues/comments{/number}",
"issue_events_url": "https://api.github.com/repos/tornado404/PaddleFlow/issues/events{/number}",
"issues_url": "https://api.github.com/repos/tornado404/PaddleFlow/issues{/number}",
"keys_url": "https://api.github.com/repos/tornado404/PaddleFlow/keys{/key_id}",
"labels_url": "https://api.github.com/repos/tornado404/PaddleFlow/labels{/name}",
"language": "Go",
"languages_url": "https://api.github.com/repos/tornado404/PaddleFlow/languages",
"license": {
"key": "apache-2.0",
"name": "Apache License 2.0",
"node_id": "MDc6TGljZW5zZTI=",
"spdx_id": "Apache-2.0",
"url": "https://api.github.com/licenses/apache-2.0"
},
"master_branch": "develop",
"merges_url": "https://api.github.com/repos/tornado404/PaddleFlow/merges",
"milestones_url": "https://api.github.com/repos/tornado404/PaddleFlow/milestones{/number}",
"mirror_url": null,
"name": "PaddleFlow",
"node_id": "R_kgDOHAxVDQ",
"notifications_url": "https://api.github.com/repos/tornado404/PaddleFlow/notifications{?since,all,participating}",
"open_issues": 1,
"open_issues_count": 1,
"owner": {
"avatar_url": "https://avatars.githubusercontent.com/u/26156094?v=4",
"email": "[email protected]",
"events_url": "https://api.github.com/users/tornado404/events{/privacy}",
"followers_url": "https://api.github.com/users/tornado404/followers",
"following_url": "https://api.github.com/users/tornado404/following{/other_user}",
"gists_url": "https://api.github.com/users/tornado404/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/tornado404",
"id": 26156094,
"login": "tornado404",
"name": "tornado404",
"node_id": "MDQ6VXNlcjI2MTU2MDk0",
"organizations_url": "https://api.github.com/users/tornado404/orgs",
"received_events_url": "https://api.github.com/users/tornado404/received_events",
"repos_url": "https://api.github.com/users/tornado404/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/tornado404/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tornado404/subscriptions",
"type": "User",
"url": "https://api.github.com/users/tornado404"
},
"private": false,
"pulls_url": "https://api.github.com/repos/tornado404/PaddleFlow/pulls{/number}",
"pushed_at": 1672814783,
"releases_url": "https://api.github.com/repos/tornado404/PaddleFlow/releases{/id}",
"size": 12017,
"ssh_url": "[email protected]:tornado404/PaddleFlow.git",
"stargazers": 1,
"stargazers_count": 1,
"stargazers_url": "https://api.github.com/repos/tornado404/PaddleFlow/stargazers",
"statuses_url": "https://api.github.com/repos/tornado404/PaddleFlow/statuses/{sha}",
"subscribers_url": "https://api.github.com/repos/tornado404/PaddleFlow/subscribers",
"subscription_url": "https://api.github.com/repos/tornado404/PaddleFlow/subscription",
"svn_url": "https://github.com/tornado404/PaddleFlow",
"tags_url": "https://api.github.com/repos/tornado404/PaddleFlow/tags",
"teams_url": "https://api.github.com/repos/tornado404/PaddleFlow/teams",
"topics": [],
"trees_url": "https://api.github.com/repos/tornado404/PaddleFlow/git/trees{/sha}",
"updated_at": "2022-06-14T05:50:19Z",
"url": "https://github.com/tornado404/PaddleFlow",
"visibility": "public",
"watchers": 1,
"watchers_count": 1,
"web_commit_signoff_required": false
},
"sender": {
"avatar_url": "https://avatars.githubusercontent.com/u/26156094?v=4",
"events_url": "https://api.github.com/users/tornado404/events{/privacy}",
"followers_url": "https://api.github.com/users/tornado404/followers",
"following_url": "https://api.github.com/users/tornado404/following{/other_user}",
"gists_url": "https://api.github.com/users/tornado404/gists{/gist_id}",
"gravatar_id": "",
"html_url": "https://github.com/tornado404",
"id": 26156094,
"login": "tornado404",
"node_id": "MDQ6VXNlcjI2MTU2MDk0",
"organizations_url": "https://api.github.com/users/tornado404/orgs",
"received_events_url": "https://api.github.com/users/tornado404/received_events",
"repos_url": "https://api.github.com/users/tornado404/repos",
"site_admin": false,
"starred_url": "https://api.github.com/users/tornado404/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/tornado404/subscriptions",
"type": "User",
"url": "https://api.github.com/users/tornado404"
}
}
```</div> | https://github.com/nektos/act/issues/1546 | https://github.com/nektos/act/pull/2169 | 6dd67253bc4ca18ee7ec5e96b8967332fe94dda1 | 5e0d29d6655ffb51ba394edd236ddf8e362698e0 | "2023-01-04T07:47:43Z" | go | "2024-01-28T19:21:21Z" |
closed | nektos/act | https://github.com/nektos/act | 1,533 | ["pkg/runner/step.go"] | Add support for `>> $GITHUB_STEP_SUMMARY` | ### Act version
0.2.34
### Feature description
With the usage of `$GITHUB_STEP_SUMMARY` in workflows it's possible to generate markdown files as a summary of a job like this:
```bash
echo "{markdown content}" >> $GITHUB_STEP_SUMMARY
```
The usage is pretty similar to `$GITHUB_ENV` or `$GITHUB_OUTPUT`.
Ref.: https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#adding-a-job-summary
However, act fails on this point, because the `$GITHUB_STEP_SUMMARY` variable is not set:
```txt
/var/run/act/workflow/3: line 14: $GITHUB_STEP_SUMMARY: ambiguous redirect
```
I don't think that `act` should actually generate a markdown file as well, IMO it's enough to just ensure that the workflow doesn't fail if the syntax is used.
Thanks for the cool project :heart:
| https://github.com/nektos/act/issues/1533 | https://github.com/nektos/act/pull/1607 | b7a9eb9fbf86da76cbad35296ff11b64ee416d18 | 8790c9b8e6b67f1552b824ba56d5a851f7b394e5 | "2022-12-22T09:23:37Z" | go | "2023-02-23T15:24:44Z" |
closed | nektos/act | https://github.com/nektos/act | 1,528 | ["pkg/runner/runner_test.go", "pkg/runner/step_action_remote.go", "pkg/runner/testdata/path-handling/action.yml", "pkg/runner/testdata/path-handling/push.yml"] | PATH is overwritten | ### Bug report info
```plain text
act version: 0.2.34-18-g4989f44
GOOS: linux
GOARCH: amd64
NumCPU: 12
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
Config files:
/home/markusw/.actrc:
-P ubuntu-latest=node:12-buster-slim
-P ubuntu-20.04=node:12-buster-slim
-P ubuntu-18.04=node:12-buster-slim
-P ubuntu-16.04=node:12-stretch-slim
Build info:
Go version: go1.19.4
Module path: command-line-arguments
Main version:
Main path:
Main checksum:
Build settings:
-compiler: gc
-ldflags: -X main.version=0.2.34-18-g4989f44
CGO_ENABLED: 1
CGO_CFLAGS:
CGO_CPPFLAGS:
CGO_CXXFLAGS:
CGO_LDFLAGS:
GOARCH: amd64
GOOS: linux
GOAMD64: v1
Docker Engine:
Engine version: 20.10.21+dfsg1
Engine runtime: runc
Cgroup version: 2
Cgroup driver: systemd
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Debian GNU/Linux bookworm/sid
OS type: linux
OS version:
OS arch: x86_64
OS kernel: 6.0.0-5-amd64
OS CPU: 12
OS memory: 31734 MB
Security options:
name=apparmor
name=seccomp,profile=default
name=cgroupns
```
### Command used with act
```sh
act
```
### Describe issue
The PATH variable is overwritten (or reset) when an action is executed wich creates some output.
The workflow below prints the PATH in two places:
1. after `actions/setup-node` and the node bins are in the PATH
2. after the `fea/changelog-action`. In that place the PATH was reset.
The changelog actions is private, but in essence it just defines an output string. It does not install tools or modifies the PATH.
### Link to GitHub repository
_No response_
### Workflow content
```yml
name: test
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v3
with:
node-version: 18
- name: debug 0
run: |
echo PATH=$PATH
- id: changelog
uses: fea/changelog-action@v1
- name: debug 1
run: |
echo PATH=$PATH
```
### Relevant log output
```sh
[test/test] ⭐ Run Pre fea/changelog-action@v1
[test/test] ✅ Success - Pre fea/changelog-action@v1
[test/test] ⭐ Run Main actions/setup-node@v3
[test/test] 🐳 docker cp src=/home/markusw/.cache/act/actions-setup-node@v3/ dst=/var/run/act/actions/actions-setup-node@v3/
[test/test] 🐳 docker exec cmd=[node /var/run/act/actions/actions-setup-node@v3/dist/setup/index.js] user= workdir=
[test/test] 💬 ::debug::isExplicit:
[test/test] 💬 ::debug::explicit? false
[test/test] 💬 ::debug::evaluating 0 versions
[test/test] 💬 ::debug::match not found
| Attempting to download 18...
[test/test] 💬 ::debug::No manifest cached
[test/test] 💬 ::debug::Getting manifest from actions/node-versions@main
[test/test] 💬 ::debug::check 18.12.1 satisfies 18
[test/test] 💬 ::debug::x64===x64 && darwin===linux
[test/test] 💬 ::debug::x64===x64 && linux===linux
[test/test] 💬 ::debug::matched 18.12.1
| Acquiring 18.12.1 - x64 from https://github.com/actions/node-versions/releases/download/18.12.1-3486235546/node-18.12.1-linux-x64.tar.gz
[test/test] 💬 ::debug::Downloading https://github.com/actions/node-versions/releases/download/18.12.1-3486235546/node-18.12.1-linux-x64.tar.gz
[test/test] 💬 ::debug::Destination /tmp/13b3dc68-7093-4428-bcee-91a6101f7fc9
[test/test] 💬 ::debug::download complete
| Extracting ...
[test/test] 💬 ::debug::Checking tar --version
[test/test] 💬 ::debug::tar (GNU tar) 1.30%0ACopyright (C) 2017 Free Software Foundation, Inc.%0ALicense GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>.%0AThis is free software: you are free to change and redistribute it.%0AThere is NO WARRANTY, to the extent permitted by law.%0A%0AWritten by John Gilmore and Jay Fenlason.
| [command]/usr/bin/tar xz --strip 1 --warning=no-unknown-keyword -C /tmp/581a5375-8560-427c-a875-2cb808147a53 -f /tmp/13b3dc68-7093-4428-bcee-91a6101f7fc9
| Adding to the cache ...
[test/test] 💬 ::debug::Caching tool node 18.12.1 x64
[test/test] 💬 ::debug::source dir: /tmp/581a5375-8560-427c-a875-2cb808147a53
[test/test] 💬 ::debug::destination /opt/hostedtoolcache/node/18.12.1/x64
[test/test] 💬 ::debug::finished caching tool
| Done
[test/test] ❓ ::group::Environment details
| node: v18.12.1
|
| yarn: 1.22.19
|
| npm: 8.19.2
|
[test/test] ❓ ::endgroup::
[test/test] ❓ ##[add-matcher]/run/act/actions/actions-setup-node@v3/.github/tsc.json
[test/test] ❓ ##[add-matcher]/run/act/actions/actions-setup-node@v3/.github/eslint-stylish.json
[test/test] ❓ ##[add-matcher]/run/act/actions/actions-setup-node@v3/.github/eslint-compact.json
[test/test] ✅ Success - Main actions/setup-node@v3
[test/test] ⚙ ::set-output:: node-version=v18.12.1
[test/test] ⚙ ::add-path:: /opt/hostedtoolcache/node/18.12.1/x64/bin
[test/test] ⭐ Run Main debug 0
[test/test] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/1] user= workdir=
| PATH=/opt/hostedtoolcache/node/18.12.1/x64/bin:"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin":/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
[test/test] ✅ Success - Main debug 0
[test/test] ⭐ Run Main fea/changelog-action@v1
[test/test] 🐳 docker cp src=/home/markusw/.cache/act/fea-changelog-action@v1/ dst=/var/run/act/actions/fea-changelog-action@v1/
[test/test] ⭐ Run Main Create changelog
[test/test] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/changelog-composite-generate.sh] user= workdir=
| fatal: not a git repository (or any parent up to mount point /home/markusw/source/xxx/source)
| Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
| Processing commits
| fatal: not a git repository (or any parent up to mount point /home/markusw/source/xxx/source)
| Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
[test/test] ❓ ::group::Changelog
|
[test/test] ❓ ::endgroup::
[test/test] ⚙ ::set-output:: content=
[test/test] ✅ Success - Main Create changelog
[test/test] ⚙ ::set-output:: content=
[test/test] ✅ Success - Main fea/changelog-action@v1
[test/test] ⭐ Run Main debug 1
[test/test] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/3] user= workdir=
| PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin":/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
[test/test] ✅ Success - Main debug 1
[test/test] ⭐ Run Post fea/changelog-action@v1
[test/test] 🐳 docker cp src=/home/markusw/.cache/act/fea-changelog-action@v1/ dst=/var/run/act/actions/fea-changelog-action@v1/
[test/test] ✅ Success - Post fea/changelog-action@v1
[test/test] ⭐ Run Post actions/setup-node@v3
[test/test] 🐳 docker exec cmd=[node /var/run/act/actions/actions-setup-node@v3/dist/cache-save/index.js] user= workdir=
[test/test] 💬 ::debug::Caching for '' is not supported
[test/test] ✅ Success - Post actions/setup-node@v3
[test/test] 🏁 Job succeeded
```
### Additional information
_No response_ | https://github.com/nektos/act/issues/1528 | https://github.com/nektos/act/pull/1531 | 3f4a6dc4626eed03991e207b4d0e343b634edf9e | a53a1c20005614cefd3d6519abd7f76d91467132 | "2022-12-20T16:32:20Z" | go | "2023-01-10T21:55:05Z" |
closed | nektos/act | https://github.com/nektos/act | 1,518 | ["pkg/runner/job_executor.go", "pkg/runner/runner_test.go", "pkg/runner/testdata/matrix-exitcode/push.yml"] | Act does not exit correctly when a job in a matrix fails | ### Bug report info
```plain text
act version: 0.2.34-13-gbef9b5c
GOOS: linux
GOARCH: amd64
NumCPU: 12
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
Config files:
/home/markusw/.actrc:
-P ubuntu-latest=node:12-buster-slim
-P ubuntu-20.04=node:12-buster-slim
-P ubuntu-18.04=node:12-buster-slim
-P ubuntu-16.04=node:12-stretch-slim
Build info:
Go version: go1.19.4
Module path: command-line-arguments
Main version:
Main path:
Main checksum:
Build settings:
-compiler: gc
-ldflags: -X main.version=0.2.34-13-gbef9b5c
CGO_ENABLED: 1
CGO_CFLAGS:
CGO_CPPFLAGS:
CGO_CXXFLAGS:
CGO_LDFLAGS:
GOARCH: amd64
GOOS: linux
GOAMD64: v1
Docker Engine:
Engine version: 20.10.21+dfsg1
Engine runtime: runc
Cgroup version: 2
Cgroup driver: systemd
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Debian GNU/Linux bookworm/sid
OS type: linux
OS version:
OS arch: x86_64
OS kernel: 6.0.0-5-amd64
OS CPU: 12
OS memory: 31734 MB
Security options:
name=apparmor
name=seccomp,profile=default
name=cgroupns
```
### Command used with act
```sh
act -v
```
### Describe issue
When one job in a matrix of jobs fail, act might still exit with a zero exit code.
I would be expected to fail a job, if one job fails to succeed.
### Link to GitHub repository
_No response_
### Workflow content
```yml
name: test
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
val: ["true", "false"]
fail-fast: false
steps:
- run: |
echo hallo ${{ matrix.val }}
if [[ "${{ matrix.val }}" = "false" ]] ; then
exit 1
fi
```
### Relevant log output
```sh
DEBU[0000] Loading environment from /tmp/act-test/.env
DEBU[0000] Loading secrets from /tmp/act-test/.secrets
DEBU[0000] Loading workflows from '/tmp/act-test/.github/workflows'
DEBU[0000] Loading workflows recursively
DEBU[0000] Found workflow 'ci.yml' in '/tmp/act-test/.github/workflows/ci.yml'
DEBU[0000] Reading workflow '/tmp/act-test/.github/workflows/ci.yml'
DEBU[0000] Preparing plan with all jobs
DEBU[0000] Using the only detected workflow event: push
DEBU[0000] Planning jobs for event: push
DEBU[0000] Loading slug from git directory '/tmp/act-test/.git'
DEBU[0000] Loading revision from git directory '/tmp/act-test/.git'
DEBU[0000] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
DEBU[0000] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
DEBU[0000] using github ref: refs/heads/main
DEBU[0000] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
DEBU[0000] Loading slug from git directory '/tmp/act-test/.git'
DEBU[0000] Loading revision from git directory '/tmp/act-test/.git'
DEBU[0000] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
DEBU[0000] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
DEBU[0000] using github ref: refs/heads/main
DEBU[0000] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
DEBU[0000] false
DEBU[0000] Loading slug from git directory '/tmp/act-test/.git'
DEBU[0000] Loading revision from git directory '/tmp/act-test/.git'
DEBU[0000] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
DEBU[0000] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
DEBU[0000] using github ref: refs/heads/main
DEBU[0000] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
DEBU[0000] Loading slug from git directory '/tmp/act-test/.git'
DEBU[0000] Loading revision from git directory '/tmp/act-test/.git'
DEBU[0000] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
DEBU[0000] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
DEBU[0000] using github ref: refs/heads/main
DEBU[0000] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-2] [DEBUG] evaluating expression 'success()'
[test/test-1] [DEBUG] evaluating expression 'success()'
[test/test-1] [DEBUG] expression 'success()' evaluated to 'true'
[test/test-2] [DEBUG] expression 'success()' evaluated to 'true'
[test/test-1] 🚀 Start image=node:12-buster-slim
[test/test-2] 🚀 Start image=node:12-buster-slim
[test/test-1] 🐳 docker pull image=node:12-buster-slim platform= username= forcePull=false
[test/test-1] [DEBUG] 🐳 docker pull node:12-buster-slim
[test/test-2] 🐳 docker pull image=node:12-buster-slim platform= username= forcePull=false
[test/test-2] [DEBUG] 🐳 docker pull node:12-buster-slim
[test/test-2] [DEBUG] Image exists? true
[test/test-1] [DEBUG] Image exists? true
[test/test-1] 🐳 docker create image=node:12-buster-slim platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[]
[test/test-1] [DEBUG] Common container.Config ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:false AttachStderr:false ExposedPorts:map[] Tty:true OpenStdin:false StdinOnce:false Env:[RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8] Cmd:[] Healthcheck:<nil> ArgsEscaped:false Image:node:12-buster-slim Volumes:map[] WorkingDir:/tmp/act-test Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]}
[test/test-1] [DEBUG] Common container.HostConfig ==> &{Binds:[/var/run/docker.sock:/var/run/docker.sock] ContainerIDFile: LogConfig:{Type: Config:map[]} NetworkMode:host PortBindings:map[] RestartPolicy:{Name: MaximumRetryCount:0} AutoRemove:false VolumeDriver: VolumesFrom:[] 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: ConsoleSize:[0 0] 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:/toolcache ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil>} {Type:volume Source:act-test-test-1-env Target:/var/run/act ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil>} {Type:volume Source:act-test-test-1 Target:/tmp/act-test ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil>}] MaskedPaths:[] ReadonlyPaths:[] Init:<nil>}
[test/test-1] [DEBUG] Created container name=act-test-test-1 id=ee53168aeb5d2391d4f3fab7760a3daf1158d7d73d038e2ebbf27b4bf1e8c22a from image node:12-buster-slim (platform: )
[test/test-1] [DEBUG] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8]
[test/test-1] 🐳 docker run image=node:12-buster-slim platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[]
[test/test-1] [DEBUG] Starting container: ee53168aeb5d2391d4f3fab7760a3daf1158d7d73d038e2ebbf27b4bf1e8c22a
[test/test-2] [DEBUG] Removed container: 7626864bb03a75d79afc6a8d2d5ed053ee7a4a9608bc2cf7aeaac9eda88457b2
[test/test-2] [DEBUG] 🐳 docker volume rm act-test-test-2
[test/test-2] [DEBUG] 🐳 docker volume rm act-test-test-2-env
[test/test-2] 🐳 docker create image=node:12-buster-slim platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[]
[test/test-2] [DEBUG] Common container.Config ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:false AttachStderr:false ExposedPorts:map[] Tty:true OpenStdin:false StdinOnce:false Env:[RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8] Cmd:[] Healthcheck:<nil> ArgsEscaped:false Image:node:12-buster-slim Volumes:map[] WorkingDir:/tmp/act-test Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]}
[test/test-2] [DEBUG] Common container.HostConfig ==> &{Binds:[/var/run/docker.sock:/var/run/docker.sock] ContainerIDFile: LogConfig:{Type: Config:map[]} NetworkMode:host PortBindings:map[] RestartPolicy:{Name: MaximumRetryCount:0} AutoRemove:false VolumeDriver: VolumesFrom:[] 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: ConsoleSize:[0 0] 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-test-test-2-env Target:/var/run/act ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil>} {Type:volume Source:act-test-test-2 Target:/tmp/act-test ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil>} {Type:volume Source:act-toolcache Target:/toolcache ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil>}] MaskedPaths:[] ReadonlyPaths:[] Init:<nil>}
[test/test-2] [DEBUG] Created container name=act-test-test-2 id=8273ba9f984c8b3b765a3c09c28532b7edfb05e57ce453ab41247d82c1b6bba2 from image node:12-buster-slim (platform: )
[test/test-2] [DEBUG] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8]
[test/test-2] 🐳 docker run image=node:12-buster-slim platform= entrypoint=["tail" "-f" "/dev/null"] cmd=[]
[test/test-2] [DEBUG] Starting container: 8273ba9f984c8b3b765a3c09c28532b7edfb05e57ce453ab41247d82c1b6bba2
[test/test-1] [DEBUG] Started container: ee53168aeb5d2391d4f3fab7760a3daf1158d7d73d038e2ebbf27b4bf1e8c22a
[test/test-2] [DEBUG] Started container: 8273ba9f984c8b3b765a3c09c28532b7edfb05e57ce453ab41247d82c1b6bba2
[test/test-1] [DEBUG] Writing entry to tarball workflow/event.json len:2
[test/test-1] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[test/test-1] [DEBUG] Extracting content to '/var/run/act/'
[test/test-2] [DEBUG] Writing entry to tarball workflow/event.json len:2
[test/test-2] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[test/test-2] [DEBUG] Extracting content to '/var/run/act/'
[test/test-1] [DEBUG] Loading slug from git directory '/tmp/act-test/.git'
[test/test-1] [DEBUG] Loading revision from git directory '/tmp/act-test/.git'
[test/test-1] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-1] [DEBUG] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
[test/test-1] [DEBUG] using github ref: refs/heads/main
[test/test-1] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-1] [DEBUG] expression 'echo hallo ${{ matrix.val }}
if [[ "${{ matrix.val }}" = "false" ]] ; then
exit 1
fi
' rewritten to 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)'
[test/test-1] [DEBUG] evaluating expression 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)'
[test/test-1] [DEBUG] expression 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)' evaluated to '%!t(string=echo hallo true
if [[ "true" = "false" ]] ; then
exit 1
fi
)'
[test/test-1] 🧪 Matrix: map[val:true]
[test/test-1] [DEBUG] expression 'echo hallo ${{ matrix.val }}
if [[ "${{ matrix.val }}" = "false" ]] ; then
exit 1
fi
' rewritten to 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)'
[test/test-1] [DEBUG] evaluating expression 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)'
[test/test-1] [DEBUG] expression 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)' evaluated to '%!t(string=echo hallo true
if [[ "true" = "false" ]] ; then
exit 1
fi
)'
[test/test-1] [DEBUG] Loading slug from git directory '/tmp/act-test/.git'
[test/test-1] [DEBUG] Loading revision from git directory '/tmp/act-test/.git'
[test/test-1] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-1] [DEBUG] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
[test/test-1] [DEBUG] using github ref: refs/heads/main
[test/test-1] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-2] [DEBUG] Loading slug from git directory '/tmp/act-test/.git'
[test/test-2] [DEBUG] Loading revision from git directory '/tmp/act-test/.git'
[test/test-2] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-2] [DEBUG] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
[test/test-2] [DEBUG] using github ref: refs/heads/main
[test/test-2] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-2] [DEBUG] expression 'echo hallo ${{ matrix.val }}
if [[ "${{ matrix.val }}" = "false" ]] ; then
exit 1
fi
' rewritten to 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)'
[test/test-2] [DEBUG] evaluating expression 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)'
[test/test-2] [DEBUG] expression 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)' evaluated to '%!t(string=echo hallo false
if [[ "false" = "false" ]] ; then
exit 1
fi
)'
[test/test-2] 🧪 Matrix: map[val:false]
[test/test-2] [DEBUG] expression 'echo hallo ${{ matrix.val }}
if [[ "${{ matrix.val }}" = "false" ]] ; then
exit 1
fi
' rewritten to 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)'
[test/test-2] [DEBUG] evaluating expression 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)'
[test/test-2] [DEBUG] expression 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)' evaluated to '%!t(string=echo hallo false
if [[ "false" = "false" ]] ; then
exit 1
fi
)'
[test/test-2] [DEBUG] Loading slug from git directory '/tmp/act-test/.git'
[test/test-2] [DEBUG] Loading revision from git directory '/tmp/act-test/.git'
[test/test-2] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-2] [DEBUG] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
[test/test-2] [DEBUG] using github ref: refs/heads/main
[test/test-2] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-1] [DEBUG] Loading slug from git directory '/tmp/act-test/.git'
[test/test-1] [DEBUG] Loading revision from git directory '/tmp/act-test/.git'
[test/test-1] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-1] [DEBUG] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
[test/test-1] [DEBUG] using github ref: refs/heads/main
[test/test-1] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-1] [DEBUG] Loading slug from git directory '/tmp/act-test/.git'
[test/test-1] [DEBUG] Loading revision from git directory '/tmp/act-test/.git'
[test/test-1] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-1] [DEBUG] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
[test/test-1] [DEBUG] using github ref: refs/heads/main
[test/test-1] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-1] [DEBUG] setupEnv => map[ACT:true CI:true GITHUB_ACTION:0 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_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:file:///tmp/ GITHUB_REPOSITORY_OWNER:file: GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3fbf608129ab7703b44a4d8d36ea432f9f5f46ce GITHUB_TOKEN: GITHUB_WORKFLOW:test GITHUB_WORKSPACE:/tmp/act-test ImageOS:ubuntu20 NODE_VERSION:12.22.12 PATH:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: YARN_VERSION:1.22.18]
[test/test-1] [DEBUG] Loading slug from git directory '/tmp/act-test/.git'
[test/test-1] [DEBUG] Loading revision from git directory '/tmp/act-test/.git'
[test/test-1] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-1] [DEBUG] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
[test/test-1] [DEBUG] using github ref: refs/heads/main
[test/test-1] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-1] [DEBUG] Loading slug from git directory '/tmp/act-test/.git'
[test/test-1] [DEBUG] Loading revision from git directory '/tmp/act-test/.git'
[test/test-1] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-1] [DEBUG] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
[test/test-1] [DEBUG] using github ref: refs/heads/main
[test/test-1] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-1] [DEBUG] evaluating expression ''
[test/test-1] [DEBUG] expression '' evaluated to 'true'
[test/test-1] [DEBUG] expression 'echo hallo ${{ matrix.val }}
if [[ "${{ matrix.val }}" = "false" ]] ; then
exit 1
fi
' rewritten to 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)'
[test/test-1] [DEBUG] evaluating expression 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)'
[test/test-1] [DEBUG] expression 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)' evaluated to '%!t(string=echo hallo true
if [[ "true" = "false" ]] ; then
exit 1
fi
)'
[test/test-1] ⭐ Run Main echo hallo true
if [[ "true" = "false" ]] ; then
exit 1
fi
[test/test-1] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0
[test/test-1] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0
[test/test-1] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0
[test/test-1] [DEBUG] Extracting content to '/var/run/act'
[test/test-2] [DEBUG] Loading slug from git directory '/tmp/act-test/.git'
[test/test-2] [DEBUG] Loading revision from git directory '/tmp/act-test/.git'
[test/test-2] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-2] [DEBUG] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
[test/test-2] [DEBUG] using github ref: refs/heads/main
[test/test-2] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-2] [DEBUG] Loading slug from git directory '/tmp/act-test/.git'
[test/test-2] [DEBUG] Loading revision from git directory '/tmp/act-test/.git'
[test/test-2] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-2] [DEBUG] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
[test/test-2] [DEBUG] using github ref: refs/heads/main
[test/test-2] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-2] [DEBUG] setupEnv => map[ACT:true CI:true GITHUB_ACTION:0 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_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:file:///tmp/ GITHUB_REPOSITORY_OWNER:file: GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:3fbf608129ab7703b44a4d8d36ea432f9f5f46ce GITHUB_TOKEN: GITHUB_WORKFLOW:test GITHUB_WORKSPACE:/tmp/act-test ImageOS:ubuntu20 NODE_VERSION:12.22.12 PATH:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: YARN_VERSION:1.22.18]
[test/test-2] [DEBUG] Loading slug from git directory '/tmp/act-test/.git'
[test/test-2] [DEBUG] Loading revision from git directory '/tmp/act-test/.git'
[test/test-2] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-2] [DEBUG] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
[test/test-2] [DEBUG] using github ref: refs/heads/main
[test/test-2] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-2] [DEBUG] Loading slug from git directory '/tmp/act-test/.git'
[test/test-2] [DEBUG] Loading revision from git directory '/tmp/act-test/.git'
[test/test-2] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-2] [DEBUG] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
[test/test-2] [DEBUG] using github ref: refs/heads/main
[test/test-2] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-2] [DEBUG] evaluating expression ''
[test/test-2] [DEBUG] expression '' evaluated to 'true'
[test/test-2] [DEBUG] expression 'echo hallo ${{ matrix.val }}
if [[ "${{ matrix.val }}" = "false" ]] ; then
exit 1
fi
' rewritten to 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)'
[test/test-2] [DEBUG] evaluating expression 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)'
[test/test-2] [DEBUG] expression 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)' evaluated to '%!t(string=echo hallo false
if [[ "false" = "false" ]] ; then
exit 1
fi
)'
[test/test-2] ⭐ Run Main echo hallo false
if [[ "false" = "false" ]] ; then
exit 1
fi
[test/test-2] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0
[test/test-2] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0
[test/test-2] [DEBUG] Writing entry to tarball workflow/pathcmd.txt len:0
[test/test-2] [DEBUG] Extracting content to '/var/run/act'
[test/test-1] [DEBUG] Loading slug from git directory '/tmp/act-test/.git'
[test/test-1] [DEBUG] Loading revision from git directory '/tmp/act-test/.git'
[test/test-1] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-1] [DEBUG] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
[test/test-1] [DEBUG] using github ref: refs/heads/main
[test/test-1] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-1] [DEBUG] Loading slug from git directory '/tmp/act-test/.git'
[test/test-1] [DEBUG] Loading revision from git directory '/tmp/act-test/.git'
[test/test-1] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-1] [DEBUG] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
[test/test-1] [DEBUG] using github ref: refs/heads/main
[test/test-1] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-1] [DEBUG] Loading slug from git directory '/tmp/act-test/.git'
[test/test-1] [DEBUG] Loading revision from git directory '/tmp/act-test/.git'
[test/test-1] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-1] [DEBUG] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
[test/test-1] [DEBUG] using github ref: refs/heads/main
[test/test-1] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-1] [DEBUG] Loading slug from git directory '/tmp/act-test/.git'
[test/test-1] [DEBUG] Loading revision from git directory '/tmp/act-test/.git'
[test/test-1] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-1] [DEBUG] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
[test/test-1] [DEBUG] using github ref: refs/heads/main
[test/test-1] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-1] [DEBUG] expression 'echo hallo ${{ matrix.val }}
if [[ "${{ matrix.val }}" = "false" ]] ; then
exit 1
fi
' rewritten to 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)'
[test/test-1] [DEBUG] evaluating expression 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)'
[test/test-1] [DEBUG] expression 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)' evaluated to '%!t(string=echo hallo true
if [[ "true" = "false" ]] ; then
exit 1
fi
)'
[test/test-1] [DEBUG] Wrote command
echo hallo true
if [[ "true" = "false" ]] ; then
exit 1
fi
to 'workflow/0'
[test/test-1] [DEBUG] Writing entry to tarball workflow/0 len:63
[test/test-1] [DEBUG] Extracting content to '/var/run/act'
[test/test-2] [DEBUG] Loading slug from git directory '/tmp/act-test/.git'
[test/test-2] [DEBUG] Loading revision from git directory '/tmp/act-test/.git'
[test/test-2] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-2] [DEBUG] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
[test/test-2] [DEBUG] using github ref: refs/heads/main
[test/test-2] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-2] [DEBUG] Loading slug from git directory '/tmp/act-test/.git'
[test/test-2] [DEBUG] Loading revision from git directory '/tmp/act-test/.git'
[test/test-2] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-2] [DEBUG] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
[test/test-2] [DEBUG] using github ref: refs/heads/main
[test/test-2] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-2] [DEBUG] Loading slug from git directory '/tmp/act-test/.git'
[test/test-2] [DEBUG] Loading revision from git directory '/tmp/act-test/.git'
[test/test-2] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-2] [DEBUG] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
[test/test-2] [DEBUG] using github ref: refs/heads/main
[test/test-2] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-2] [DEBUG] Loading slug from git directory '/tmp/act-test/.git'
[test/test-2] [DEBUG] Loading revision from git directory '/tmp/act-test/.git'
[test/test-2] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-2] [DEBUG] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
[test/test-2] [DEBUG] using github ref: refs/heads/main
[test/test-2] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-2] [DEBUG] expression 'echo hallo ${{ matrix.val }}
if [[ "${{ matrix.val }}" = "false" ]] ; then
exit 1
fi
' rewritten to 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)'
[test/test-2] [DEBUG] evaluating expression 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)'
[test/test-2] [DEBUG] expression 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)' evaluated to '%!t(string=echo hallo false
if [[ "false" = "false" ]] ; then
exit 1
fi
)'
[test/test-2] [DEBUG] Wrote command
echo hallo false
if [[ "false" = "false" ]] ; then
exit 1
fi
to 'workflow/0'
[test/test-2] [DEBUG] Writing entry to tarball workflow/0 len:65
[test/test-2] [DEBUG] Extracting content to '/var/run/act'
[test/test-1] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=
[test/test-1] [DEBUG] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0]'
[test/test-1] [DEBUG] Working directory '/tmp/act-test'
[test/test-2] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=
[test/test-2] [DEBUG] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0]'
[test/test-2] [DEBUG] Working directory '/tmp/act-test'
| hallo true
[test/test-1] ✅ Success - Main echo hallo true
if [[ "true" = "false" ]] ; then
exit 1
fi
| hallo false
[test/test-2] ❌ Failure - Main echo hallo false
if [[ "false" = "false" ]] ; then
exit 1
fi
[test/test-2] exitcode '1': failure
[test/test-2] [DEBUG] expression 'echo hallo ${{ matrix.val }}
if [[ "${{ matrix.val }}" = "false" ]] ; then
exit 1
fi
' rewritten to 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)'
[test/test-2] [DEBUG] evaluating expression 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)'
[test/test-2] [DEBUG] expression 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)' evaluated to '%!t(string=echo hallo false
if [[ "false" = "false" ]] ; then
exit 1
fi
)'
[test/test-2] 🏁 Job failed
[test/test-2] [DEBUG] Loading slug from git directory '/tmp/act-test/.git'
[test/test-2] [DEBUG] Loading revision from git directory '/tmp/act-test/.git'
[test/test-2] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-2] [DEBUG] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
[test/test-2] [DEBUG] using github ref: refs/heads/main
[test/test-2] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-1] [DEBUG] expression 'echo hallo ${{ matrix.val }}
if [[ "${{ matrix.val }}" = "false" ]] ; then
exit 1
fi
' rewritten to 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)'
[test/test-1] [DEBUG] evaluating expression 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)'
[test/test-1] [DEBUG] expression 'format('echo hallo {0}
if [[ "{1}" = "false" ]] ; then
exit 1
fi
', matrix.val, matrix.val)' evaluated to '%!t(string=echo hallo true
if [[ "true" = "false" ]] ; then
exit 1
fi
)'
[test/test-1] [DEBUG] Removed container: ee53168aeb5d2391d4f3fab7760a3daf1158d7d73d038e2ebbf27b4bf1e8c22a
[test/test-1] [DEBUG] 🐳 docker volume rm act-test-test-1
[test/test-1] [DEBUG] 🐳 docker volume rm act-test-test-1-env
[test/test-1] 🏁 Job succeeded
[test/test-1] [DEBUG] Loading slug from git directory '/tmp/act-test/.git'
[test/test-1] [DEBUG] Loading revision from git directory '/tmp/act-test/.git'
[test/test-1] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
[test/test-1] [DEBUG] HEAD points to '3fbf608129ab7703b44a4d8d36ea432f9f5f46ce'
[test/test-1] [DEBUG] using github ref: refs/heads/main
[test/test-1] [DEBUG] Found revision: 3fbf608129ab7703b44a4d8d36ea432f9f5f46ce
```
### Additional information
_No response_ | https://github.com/nektos/act/issues/1518 | https://github.com/nektos/act/pull/1519 | f0c6fa11be88093fbcb7ecb1cbebfee8874008cc | b14398eff3d3a2692c976e250c4b91fbbeed00a5 | "2022-12-19T09:15:03Z" | go | "2023-01-10T21:31:12Z" |
closed | nektos/act | https://github.com/nektos/act | 1,509 | ["pkg/container/host_environment.go", "pkg/runner/run_context.go"] | RUNNER_OS should return macOS instead of darwin and wrong RUNNER_ARCH on MacOS M1 | ### Bug report info
```plain text
act --bug-report
act version: 0.2.34
GOOS: darwin
GOARCH: amd64
NumCPU: 8
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
/Users/yuriiuvarov/.docker/run/docker.sock
Config files:
/Users/yuriiuvarov/.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
.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.19.3
Module path: command-line-arguments
Main version:
Main path:
Main checksum:
Build settings:
-compiler: gc
-ldflags: -X main.version=0.2.34
CGO_ENABLED: 1
CGO_CFLAGS:
CGO_CPPFLAGS:
CGO_CXXFLAGS:
CGO_LDFLAGS:
GOARCH: amd64
GOOS: darwin
GOAMD64: v1
Docker Engine:
Engine version: 20.10.21
Engine runtime: runc
Cgroup version: 2
Cgroup driver: cgroupfs
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Docker Desktop
OS type: linux
OS version:
OS arch: aarch64
OS kernel: 5.15.49-linuxkit
OS CPU: 4
OS memory: 3933 MB
Security options:
name=seccomp,profile=default
name=cgroupns
```
### Command used with act
```sh
act -j build --platform macos-latest=-self-hosted
```
### Describe issue
Some Github actions depend on the `RUNNER_OS` and expect one of the defined values according to the https://docs.github.com/en/actions/learn-github-actions/environment-variables#default-environment-variables.
> The operating system of the runner executing the job. Possible values are `Linux`, `Windows`, or `macOS`
For example,[ flutter-action](https://github.com/subosito/flutter-action) [uses](https://github.com/subosito/flutter-action/blob/dbf1fa04f4d2e52c33185153d06cdb5443aa189d/setup.sh#L12-L14) `RUNNER_OS` to build a link to the flutter binary.
expected result: macOS,
actual result: darwin
Also, RUNNER_ARCH should be arm64(or x64 using rosetta at least) but it provides amd64, which is definitely wrong.
### Link to GitHub repository
_No response_
### Workflow content
```yml
name: Linter & Tests
on:
push:
branches: [ main, redesign-master ]
pull_request:
branches: [ main, redesign-master ]
jobs:
build:
runs-on: macos-latest
env:
REPO_DIR: ${{ github.workspace }}
steps:
- uses: actions/checkout@v3
- name: 'Test os'
run: echo $RUNNER_OS
- name: 'Set Flutter 3.3.9'
uses: subosito/flutter-action@v2
with:
architecture: arm64
flutter-version: 3.3.9
```
### Relevant log output
```sh
This exceeds the GitHub character limit, please find it here:
https://drive.google.com/file/d/1UYD4cZqcdBm2jMyOISvDMpJ6XJ44LGZq/view?usp=sharing
```
### Additional information
```
uname -a
Darwin Yuriis-MacBook-Pro.local 21.6.0 Darwin Kernel Version 21.6.0: Mon Aug 22 20:20:05 PDT 2022; root:xnu-8020.140.49~2/RELEASE_ARM64_T8101 arm64
```
| https://github.com/nektos/act/issues/1509 | https://github.com/nektos/act/pull/1510 | bef9b5c3c77bcdbc6c15169c0d55f635e27350ae | 6ab71ecebbc0d01a0e72aecd06a15277723b6031 | "2022-12-14T17:50:17Z" | go | "2022-12-19T14:58:55Z" |
closed | nektos/act | https://github.com/nektos/act | 1,489 | ["README.md"] | [Duplicate] Consider publishing act to winget packages repository | ### Act version
act version 0.2.34
### Feature description
This is a duplicate of issue #253.
Just thought to create this issue to raise attention since the original issue was closed by a bot.
The blocker that the issue was waiting on (i.e. https://github.com/microsoft/winget-cli/issues/140) has since been resolved (i.e. https://github.com/microsoft/winget-cli/pull/2500).
Instructions on how to support `winget` seem to be found here [Authoring Manifests](https://github.com/microsoft/winget-pkgs/blob/master/AUTHORING_MANIFESTS.md).
But need some help to dig further.
CC: @rodrigoscna, @rodrigoscna, @chrpai | https://github.com/nektos/act/issues/1489 | https://github.com/nektos/act/pull/1622 | 44333c758a9590666c1b5214c0bfc48b7d8fd290 | c378a7d28b5c20de9fbb4456544329d04ffb62a4 | "2022-12-02T06:07:57Z" | go | "2023-02-11T18:25:22Z" |
closed | nektos/act | https://github.com/nektos/act | 1,488 | ["pkg/model/workflow.go", "pkg/runner/step.go", "pkg/runner/testdata/environment-variables/push.yml"] | environment variables should be case sensitive | ### Bug report info
```plain text
act version: 0.2.34
GOOS: darwin
GOARCH: arm64
NumCPU: 10
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
/Users/jsoref/.docker/run/docker.sock
Config files:
/Users/jsoref/.actrc:
#-P ubuntu-latest=node:12.20.1-buster-slim
#-P ubuntu-20.04=node:12.20.1-buster-slim
#-P ubuntu-18.04=node:12.20.1-buster-slim
-P ubuntu-latest=catthehacker/ubuntu:act-latest
-P ubuntu-20.04=catthehacker/ubuntu:act-20.04
-P ubuntu-18.04=catthehacker/ubuntu:act-18.04
-P ubuntu-16.04=catthehacker/ubuntu:act-16.04
-P self-hosted=catthehacker/ubuntu:act-latest
Build info:
Go version: go1.19.3
Module path: command-line-arguments
Main version:
Main path:
Main checksum:
Build settings:
-compiler: gc
-ldflags: -X main.version=0.2.34
CGO_ENABLED: 1
CGO_CFLAGS:
CGO_CPPFLAGS:
CGO_CXXFLAGS:
CGO_LDFLAGS:
GOARCH: arm64
GOOS: darwin
Docker Engine:
Engine version: 20.10.18
Engine runtime: runc
Cgroup version: 1
Cgroup driver: cgroupfs
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Alpine Linux v3.16
OS type: linux
OS version: 3.16.2
OS arch: aarch64
OS kernel: 5.15.64-0-virt
OS CPU: 2
OS memory: 7938 MB
Security options:
name=seccomp,profile=default
```
### Command used with act
```sh
act
```
### Describe issue
GHA makes environment variables case sensitive on Linux/macOS. (On Windows, they're case preserving which is too complicated to fit in the margins.)
### Link to GitHub repository
https://github.com/jsoref/nektos-act-env-case-sensitive
### Workflow content
```yml
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: env
env:
a: 1
B: 2
run:
echo "$a $B"
```
### Relevant log output
```sh
level=warning msg= ⚠ You are using Apple M1 chip and you have not specified container architecture, you might encounter issues while running act. If so, try running it with '--container-architecture linux/amd64'. ⚠
time="2022-12-01T23:49:37-05:00" level=debug msg="Loading environment from /tmp/nektos-act-env-case-sensitive/.env"
time="2022-12-01T23:49:37-05:00" level=debug msg="Loading secrets from /tmp/nektos-act-env-case-sensitive/.secrets"
time="2022-12-01T23:49:37-05:00" level=debug msg="Loading workflows from '/tmp/nektos-act-env-case-sensitive/.github/workflows'"
time="2022-12-01T23:49:37-05:00" level=debug msg="Loading workflows recursively"
time="2022-12-01T23:49:37-05:00" level=debug msg="Found workflow 'test.yml' in '/tmp/nektos-act-env-case-sensitive/.github/workflows/test.yml'"
time="2022-12-01T23:49:37-05:00" level=debug msg="Reading workflow '/tmp/nektos-act-env-case-sensitive/.github/workflows/test.yml'"
time="2022-12-01T23:49:37-05:00" level=debug msg="Preparing plan with all jobs"
time="2022-12-01T23:49:37-05:00" level=debug msg="Using the only detected workflow event: push"
time="2022-12-01T23:49:37-05:00" level=debug msg="Planning jobs for event: push"
time="2022-12-01T23:49:37-05:00" level=debug msg="Loading slug from git directory '/tmp/nektos-act-env-case-sensitive/.git'"
time="2022-12-01T23:49:37-05:00" level=debug msg="Loading revision from git directory '/tmp/nektos-act-env-case-sensitive/.git'"
time="2022-12-01T23:49:37-05:00" level=debug msg="Found revision: 4bad47dbaefe882a6b5b278bad97c4bd2d939a39\n"
time="2022-12-01T23:49:37-05:00" level=debug msg="HEAD points to '4bad47dbaefe882a6b5b278bad97c4bd2d939a39'"
time="2022-12-01T23:49:37-05:00" level=debug msg="using github ref: refs/heads/main"
time="2022-12-01T23:49:37-05:00" level=debug msg="Found revision: 4bad47dbaefe882a6b5b278bad97c4bd2d939a39\n"
[test.yml/test] [DEBUG] evaluating expression 'success()'
[test.yml/test] [DEBUG] expression 'success()' evaluated to 'true'
[test.yml/test] 🚀 Start image=catthehacker/ubuntu:act-latest
[test.yml/test] 🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=false
[test.yml/test] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest
[test.yml/test] [DEBUG] Image exists? true
[test.yml/test] 🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[test.yml/test] [DEBUG] Common container.Config ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:false AttachStderr:false ExposedPorts:map[] Tty:false OpenStdin:false StdinOnce:false Env:[RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=arm64 RUNNER_TEMP=/tmp] Cmd:[] Healthcheck:<nil> ArgsEscaped:false Image:catthehacker/ubuntu:act-latest Volumes:map[] WorkingDir:/tmp/nektos-act-env-case-sensitive Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]}
[test.yml/test] [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:[] 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: ConsoleSize:[0 0] 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:/toolcache ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil>} {Type:volume Source:act-test-yml-test-env Target:/var/run/act ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil>} {Type:volume Source:act-test-yml-test Target:/tmp/nektos-act-env-case-sensitive ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil>}] MaskedPaths:[] ReadonlyPaths:[] Init:<nil>}
[test.yml/test] [DEBUG] Created container name=act-test-yml-test id=6a8c84f736ae5c326b7ac33bdd10ab82c8e66a77c73d6c33aad041af79ecb759 from image catthehacker/ubuntu:act-latest (platform: )
[test.yml/test] [DEBUG] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=arm64 RUNNER_TEMP=/tmp]
[test.yml/test] 🐳 docker run image=catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[test.yml/test] [DEBUG] Starting container: 6a8c84f736ae5c326b7ac33bdd10ab82c8e66a77c73d6c33aad041af79ecb759
[test.yml/test] [DEBUG] Started container: 6a8c84f736ae5c326b7ac33bdd10ab82c8e66a77c73d6c33aad041af79ecb759
[test.yml/test] [DEBUG] Writing entry to tarball workflow/event.json len:2
[test.yml/test] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[test.yml/test] [DEBUG] Writing entry to tarball workflow/paths.txt len:0
[test.yml/test] [DEBUG] Extracting content to '/var/run/act/'
[test.yml/test] [DEBUG] Loading slug from git directory '/tmp/nektos-act-env-case-sensitive/.git'
[test.yml/test] [DEBUG] Loading revision from git directory '/tmp/nektos-act-env-case-sensitive/.git'
[test.yml/test] [DEBUG] Found revision: 4bad47dbaefe882a6b5b278bad97c4bd2d939a39
[test.yml/test] [DEBUG] HEAD points to '4bad47dbaefe882a6b5b278bad97c4bd2d939a39'
[test.yml/test] [DEBUG] using github ref: refs/heads/main
[test.yml/test] [DEBUG] Found revision: 4bad47dbaefe882a6b5b278bad97c4bd2d939a39
[test.yml/test] [DEBUG] Loading slug from git directory '/tmp/nektos-act-env-case-sensitive/.git'
[test.yml/test] [DEBUG] Loading revision from git directory '/tmp/nektos-act-env-case-sensitive/.git'
[test.yml/test] [DEBUG] Found revision: 4bad47dbaefe882a6b5b278bad97c4bd2d939a39
[test.yml/test] [DEBUG] HEAD points to '4bad47dbaefe882a6b5b278bad97c4bd2d939a39'
[test.yml/test] [DEBUG] using github ref: refs/heads/main
[test.yml/test] [DEBUG] Found revision: 4bad47dbaefe882a6b5b278bad97c4bd2d939a39
[test.yml/test] [DEBUG] Loading slug from git directory '/tmp/nektos-act-env-case-sensitive/.git'
[test.yml/test] [DEBUG] Loading revision from git directory '/tmp/nektos-act-env-case-sensitive/.git'
[test.yml/test] [DEBUG] Found revision: 4bad47dbaefe882a6b5b278bad97c4bd2d939a39
[test.yml/test] [DEBUG] HEAD points to '4bad47dbaefe882a6b5b278bad97c4bd2d939a39'
[test.yml/test] [DEBUG] using github ref: refs/heads/main
[test.yml/test] [DEBUG] Found revision: 4bad47dbaefe882a6b5b278bad97c4bd2d939a39
[test.yml/test] [DEBUG] setupEnv => map[A:1 ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache B:2 CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 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_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REF_NAME:main GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:jsoref/nektos-act-env-case-sensitive GITHUB_REPOSITORY_OWNER:jsoref GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:4bad47dbaefe882a6b5b278bad97c4bd2d939a39 GITHUB_TOKEN: GITHUB_WORKFLOW:test.yml GITHUB_WORKSPACE:/tmp/nektos-act-env-case-sensitive IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/16.18.1/arm64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[test.yml/test] [DEBUG] Loading slug from git directory '/tmp/nektos-act-env-case-sensitive/.git'
[test.yml/test] [DEBUG] Loading revision from git directory '/tmp/nektos-act-env-case-sensitive/.git'
[test.yml/test] [DEBUG] Found revision: 4bad47dbaefe882a6b5b278bad97c4bd2d939a39
[test.yml/test] [DEBUG] HEAD points to '4bad47dbaefe882a6b5b278bad97c4bd2d939a39'
[test.yml/test] [DEBUG] using github ref: refs/heads/main
[test.yml/test] [DEBUG] Found revision: 4bad47dbaefe882a6b5b278bad97c4bd2d939a39
[test.yml/test] [DEBUG] Loading slug from git directory '/tmp/nektos-act-env-case-sensitive/.git'
[test.yml/test] [DEBUG] Loading revision from git directory '/tmp/nektos-act-env-case-sensitive/.git'
[test.yml/test] [DEBUG] Found revision: 4bad47dbaefe882a6b5b278bad97c4bd2d939a39
[test.yml/test] [DEBUG] HEAD points to '4bad47dbaefe882a6b5b278bad97c4bd2d939a39'
[test.yml/test] [DEBUG] using github ref: refs/heads/main
[test.yml/test] [DEBUG] Found revision: 4bad47dbaefe882a6b5b278bad97c4bd2d939a39
[test.yml/test] [DEBUG] evaluating expression ''
[test.yml/test] [DEBUG] expression '' evaluated to 'true'
[test.yml/test] ⭐ Run Main env
[test.yml/test] [DEBUG] Writing entry to tarball workflow/outputcmd.txt len:0
[test.yml/test] [DEBUG] Writing entry to tarball workflow/statecmd.txt len:0
[test.yml/test] [DEBUG] Extracting content to '/var/run/act'
[test.yml/test] [DEBUG] Loading slug from git directory '/tmp/nektos-act-env-case-sensitive/.git'
[test.yml/test] [DEBUG] Loading revision from git directory '/tmp/nektos-act-env-case-sensitive/.git'
[test.yml/test] [DEBUG] Found revision: 4bad47dbaefe882a6b5b278bad97c4bd2d939a39
[test.yml/test] [DEBUG] HEAD points to '4bad47dbaefe882a6b5b278bad97c4bd2d939a39'
[test.yml/test] [DEBUG] using github ref: refs/heads/main
[test.yml/test] [DEBUG] Found revision: 4bad47dbaefe882a6b5b278bad97c4bd2d939a39
[test.yml/test] [DEBUG] Loading slug from git directory '/tmp/nektos-act-env-case-sensitive/.git'
[test.yml/test] [DEBUG] Loading revision from git directory '/tmp/nektos-act-env-case-sensitive/.git'
[test.yml/test] [DEBUG] Found revision: 4bad47dbaefe882a6b5b278bad97c4bd2d939a39
[test.yml/test] [DEBUG] HEAD points to '4bad47dbaefe882a6b5b278bad97c4bd2d939a39'
[test.yml/test] [DEBUG] using github ref: refs/heads/main
[test.yml/test] [DEBUG] Found revision: 4bad47dbaefe882a6b5b278bad97c4bd2d939a39
[test.yml/test] [DEBUG] Loading slug from git directory '/tmp/nektos-act-env-case-sensitive/.git'
[test.yml/test] [DEBUG] Loading revision from git directory '/tmp/nektos-act-env-case-sensitive/.git'
[test.yml/test] [DEBUG] Found revision: 4bad47dbaefe882a6b5b278bad97c4bd2d939a39
[test.yml/test] [DEBUG] HEAD points to '4bad47dbaefe882a6b5b278bad97c4bd2d939a39'
[test.yml/test] [DEBUG] using github ref: refs/heads/main
[test.yml/test] [DEBUG] Found revision: 4bad47dbaefe882a6b5b278bad97c4bd2d939a39
[test.yml/test] [DEBUG] Loading slug from git directory '/tmp/nektos-act-env-case-sensitive/.git'
[test.yml/test] [DEBUG] Loading revision from git directory '/tmp/nektos-act-env-case-sensitive/.git'
[test.yml/test] [DEBUG] Found revision: 4bad47dbaefe882a6b5b278bad97c4bd2d939a39
[test.yml/test] [DEBUG] HEAD points to '4bad47dbaefe882a6b5b278bad97c4bd2d939a39'
[test.yml/test] [DEBUG] using github ref: refs/heads/main
[test.yml/test] [DEBUG] Found revision: 4bad47dbaefe882a6b5b278bad97c4bd2d939a39
[test.yml/test] [DEBUG] Wrote command
echo "$a $B"
to 'workflow/0'
[test.yml/test] [DEBUG] Writing entry to tarball workflow/0 len:14
[test.yml/test] [DEBUG] Extracting content to '/var/run/act'
[test.yml/test] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=
[test.yml/test] [DEBUG] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0]'
[test.yml/test] [DEBUG] Working directory '/tmp/nektos-act-env-case-sensitive'
[test.yml/test] | 2
[test.yml/test] ✅ Success - Main env
[test.yml/test] [DEBUG] Removed container: 6a8c84f736ae5c326b7ac33bdd10ab82c8e66a77c73d6c33aad041af79ecb759
[test.yml/test] [DEBUG] 🐳 docker volume rm act-test-yml-test
[test.yml/test] [DEBUG] 🐳 docker volume rm act-test-yml-test-env
[test.yml/test] 🏁 Job succeeded
[test.yml/test] [DEBUG] Loading slug from git directory '/tmp/nektos-act-env-case-sensitive/.git'
[test.yml/test] [DEBUG] Loading revision from git directory '/tmp/nektos-act-env-case-sensitive/.git'
[test.yml/test] [DEBUG] Found revision: 4bad47dbaefe882a6b5b278bad97c4bd2d939a39
[test.yml/test] [DEBUG] HEAD points to '4bad47dbaefe882a6b5b278bad97c4bd2d939a39'
[test.yml/test] [DEBUG] using github ref: refs/heads/main
[test.yml/test] [DEBUG] Found revision: 4bad47dbaefe882a6b5b278bad97c4bd2d939a39
```
### Additional information
https://github.com/jsoref/nektos-act-env-case-sensitive/actions/runs/3598970524/jobs/6062193588#step:2:1
Run echo "$a $B"
```
1 2
```
---
```
| 2
```
The `|` is from the docker environment and doesn't count as output. | https://github.com/nektos/act/issues/1488 | https://github.com/nektos/act/pull/1493 | 8c5748a55c6190ba34354ca29fdb473e5d3724a1 | 0f8861b9e37bfdf5e0fabb188d03365c0401823a | "2022-12-02T04:51:32Z" | go | "2022-12-07T15:31:33Z" |
closed | nektos/act | https://github.com/nektos/act | 1,484 | ["go.mod", "go.sum"] | Executing on Mac Ventura is causing a crash | ### Bug report info
```plain text
% act --bug-report
act version: 0.2.33
GOOS: darwin
GOARCH: amd64
NumCPU: 16
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
/Users/igorcosta/.docker/run/docker.sock
Config files:
/Users/igorcosta/.actrc:
-P ubuntu-latest=node:16-buster-slim
-P -P ubuntu-22.04=node:16-bullseye-slim
ubuntu-20.04=node:16-buster-slim
-P ubuntu-18.04=node:16-buster-slim
Build info:
Go version: go1.19.3
Module path: command-line-arguments
Main version:
Main path:
Main checksum:
Build settings:
-compiler: gc
-ldflags: -X main.version=0.2.33
CGO_ENABLED: 1
CGO_CFLAGS:
CGO_CPPFLAGS:
CGO_CXXFLAGS:
CGO_LDFLAGS:
GOARCH: amd64
GOOS: darwin
GOAMD64: v1
Docker Engine:
Engine version: 20.10.12
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: x86_64
OS kernel: 5.10.76-linuxkit
OS CPU: 8
OS memory: 1984 MB
Security options:
name=seccomp,profile=default
name=cgroupns
```
### Command used with act
```sh
act
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x8 pc=0x14d383d]
goroutine 1 [running]:
github.com/nektos/act/pkg/model.(*Workflow).GetJob(...)
/private/tmp/act-20221117-4737-1tjuxed/act-0.2.33/pkg/model/workflow.go:539
github.com/nektos/act/pkg/model.createStages(0xc0001e85a0, {0xc000450780, 0x1, 0xc0002df9f0?})
/private/tmp/act-20221117-4737-1tjuxed/act-0.2.33/pkg/model/planner.go:293 +0x7fd
github.com/nektos/act/pkg/model.(*workflowPlanner).PlanAll(0xc000435050)
/private/tmp/act-20221117-4737-1tjuxed/act-0.2.33/pkg/model/planner.go:209 +0xac
github.com/nektos/act/cmd.newRunCommand.func1(0xc00043c000, {0xc0000c2600, 0x0, 0x6?})
/private/tmp/act-20221117-4737-1tjuxed/act-0.2.33/cmd/root.go:352 +0x5b9
github.com/spf13/cobra.(*Command).execute(0xc00043c000, {0xc0000c25a0, 0x6, 0x6})
/Users/brew/Library/Caches/Homebrew/go_mod_cache/pkg/mod/github.com/spf13/[email protected]/command.go:916 +0x862
github.com/spf13/cobra.(*Command).ExecuteC(0xc00043c000)
/Users/brew/Library/Caches/Homebrew/go_mod_cache/pkg/mod/github.com/spf13/[email protected]/command.go:1044 +0x3bd
github.com/spf13/cobra.(*Command).Execute(...)
/Users/brew/Library/Caches/Homebrew/go_mod_cache/pkg/mod/github.com/spf13/[email protected]/command.go:968
github.com/nektos/act/cmd.Execute({0x1947c40, 0xc0003790c0}, {0x193def0, 0x6})
/private/tmp/act-20221117-4737-1tjuxed/act-0.2.33/cmd/root.go:85 +0xd9f
main.main()
/private/tmp/act-20221117-4737-1tjuxed/act-0.2.33/main.go:34 +0x1a7
```
### Describe issue
Following the tutorial to install act and run it for the first time, I get these errors.
Not sure if it's the solution or my machine with missing dependencies.run
### Link to GitHub repository
_No response_
### Workflow content
```yml
name: Weekly Updates
on:
schedule:
- cron: "0 0 * * 5"
workflow_dispatch:
jobs:
random-host-issue:
name: random-host
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
chmod +x .github/workflows/scripts/hostpicker.sh
./.github/workflows/scripts/hostpicker.sh
shell: bash
- uses: lowply/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
IFT_TEMPLATE_NAME: temp-weekly-meeting.md
ADD_DATES: 7
close:
name: Close old issues
runs-on: ubuntu-latest
steps:
- uses: lowply/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
AC_LABEL: team-meeting
```
### Relevant log output
```sh
DEBU[0000] Reading workflow '/my-apac/.github/workflows/workflow.yml'
DEBU[0000] Preparing plan with all jobs
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x8 pc=0x14d383d]
goroutine 1 [running]:
github.com/nektos/act/pkg/model.(*Workflow).GetJob(...)
/private/tmp/act-20221117-4737-1tjuxed/act-0.2.33/pkg/model/workflow.go:539
github.com/nektos/act/pkg/model.createStages(0xc0001e65a0, {0xc00045c940, 0x1, 0x29d66308?})
/private/tmp/act-20221117-4737-1tjuxed/act-0.2.33/pkg/model/planner.go:293 +0x7fd
github.com/nektos/act/pkg/model.(*workflowPlanner).PlanAll(0xc00043f0e0)
/private/tmp/act-20221117-4737-1tjuxed/act-0.2.33/pkg/model/planner.go:209 +0xac
github.com/nektos/act/cmd.newRunCommand.func1(0xc000446000, {0xc000444460, 0x0, 0xc?})
/private/tmp/act-20221117-4737-1tjuxed/act-0.2.33/cmd/root.go:352 +0x5b9
github.com/spf13/cobra.(*Command).execute(0xc000446000, {0xc0001e2240, 0x7, 0xc})
/Users/brew/Library/Caches/Homebrew/go_mod_cache/pkg/mod/github.com/spf13/[email protected]/command.go:916 +0x862
github.com/spf13/cobra.(*Command).ExecuteC(0xc000446000)
/Users/brew/Library/Caches/Homebrew/go_mod_cache/pkg/mod/github.com/spf13/[email protected]/command.go:1044 +0x3bd
github.com/spf13/cobra.(*Command).Execute(...)
/Users/brew/Library/Caches/Homebrew/go_mod_cache/pkg/mod/github.com/spf13/[email protected]/command.go:968
github.com/nektos/act/cmd.Execute({0x1947c40, 0xc000385100}, {0x193def0, 0x6})
/private/tmp/act-20221117-4737-1tjuxed/act-0.2.33/cmd/root.go:85 +0xd9f
main.main()
/private/tmp/act-20221117-4737-1tjuxed/act-0.2.33/main.go:34 +0x1a7
```
### Additional information
No extras required.are | https://github.com/nektos/act/issues/1484 | https://github.com/nektos/act/pull/2235 | d3c8664d3d6acb855ae5418f6d02930c98bf877e | 934b13a7a126198019800e79fb2ae7fe57a1c2bd | "2022-11-30T03:35:24Z" | go | "2024-03-04T03:08:44Z" |
closed | nektos/act | https://github.com/nektos/act | 1,474 | ["README.md"] | env.act not working with github actions | ### Bug report info
```plain text
(env) ~/D/G/azure-queue-sidecar master act --bug-report
act version: v0.2.27-dev
GOOS: linux
GOARCH: amd64
NumCPU: 4
Docker host: unix:///run/user/1000/docker.sock
Sockets found:
/run/user/1000/docker.sock
Config files:
/home/om/.actrc:
-P ubuntu-latest=ghcr.io/catthehacker/ubuntu:act-latest
-P ubuntu-20.04=ghcr.io/catthehacker/ubuntu:act-20.04
-P ubuntu-18.04=ghcr.io/catthehacker/ubuntu:act-18.04
--defaultbranch master
Build info:
Go version: go1.18.1
Module path: github.com/nektos/act
Main version: (devel)
Main path: github.com/nektos/act
Main checksum:
Build settings:
-compiler: gc
CGO_ENABLED: 1
CGO_CFLAGS:
CGO_CPPFLAGS:
CGO_CXXFLAGS:
CGO_LDFLAGS:
GOARCH: amd64
GOOS: linux
GOAMD64: v1
vcs: git
vcs.revision: 87327286d51e8f776e27baadb1eafc3b5382c7f1
vcs.time: 2022-11-25T10:38:49Z
vcs.modified: true
Docker Engine:
Engine version: 20.10.18
Engine runtime: runc
Cgroup version: 2
Cgroup driver: systemd
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Ubuntu 22.04.1 LTS
OS type: linux
OS version: 22.04
OS arch: x86_64
OS kernel: 5.19.0-76051900-generic
OS CPU: 4
OS memory: 11246 MB
Security options:
name=seccomp,profile=default
name=rootless
name=cgroupns
```
### Command used with act
```sh
not an issue with act but with compability with github actions.
```
### Describe issue

### Link to GitHub repository
_No response_
### Workflow content
```yml
name: foo
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- run: echo building
deploy:
runs-on: ubuntu-latest
if: ${{ !env.ACT }}
steps:
- run: echo this only runs in github
```
### Relevant log output
```sh
asdf
```
### Additional information
_No response_ | https://github.com/nektos/act/issues/1474 | https://github.com/nektos/act/pull/1480 | 1797775be3ad662a3e5b369184c6b73900254b24 | 7073eac24057020cd54bcb00402281be55df3246 | "2022-11-27T22:35:12Z" | go | "2022-12-06T15:09:13Z" |
closed | nektos/act | https://github.com/nektos/act | 1,442 | [".github/workflows/checks.yml", "pkg/runner/step.go", "pkg/runner/step_action_local_test.go", "pkg/runner/step_action_remote_test.go", "pkg/runner/step_docker_test.go", "pkg/runner/step_run_test.go"] | Ambiguous redirect $GITHUB_OUTPUT with latest versions and images | ### Bug report info
```plain text
act version: 0.2.33
GOOS: linux
GOARCH: amd64
NumCPU: 8
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
Config files:
/home/sergi/.actrc:
-P ubuntu-latest=ghcr.io/catthehacker/ubuntu:act-latest
-P ubuntu-20.04=ghcr.io/catthehacker/ubuntu:act-20.04
-P ubuntu-18.04=ghcr.io/catthehacker/ubuntu:act-18.04
Build info:
Go version: go1.19.2
Module path: github.com/nektos/act
Main version: (devel)
Main path: github.com/nektos/act
Main checksum:
Build settings:
-compiler: gc
-trimpath: true
CGO_ENABLED: 1
GOARCH: amd64
GOOS: linux
GOAMD64: v1
vcs: git
vcs.revision: 1a32c043c11504dca5589ad3ea77344c2b40d152
vcs.time: 2022-11-07T13:56:47Z
vcs.modified: true
Docker Engine:
Engine version: 20.10.21
Engine runtime: runc
Cgroup version: 2
Cgroup driver: systemd
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Manjaro Linux
OS type: linux
OS version:
OS arch: x86_64
OS kernel: 5.15.76-1-MANJARO
OS CPU: 8
OS memory: 31828 MB
Security options:
name=apparmor
name=seccomp,profile=default
name=cgroupns
```
### Command used with act
```sh
act push -v -P ubuntu-latest=ghcr.io/catthehacker/ubuntu:act-22.04 -j test_github_output
```
### Describe issue
Whatever I try, when using $GITHUB_OUTPUT I get an error "$GITHUB_OUTPUT: ambiguous redirect". If I set it out in the `env`, I don't get an error, but still, it does not work.
### Link to GitHub repository
_No response_
### Workflow content
```yml
name: Test GITHUB_OUTPUT
on: [push]
jobs:
test_github_output:
runs-on: ubuntu-latest
steps:
- name: Set color
id: random-color-generator
run: echo "SELECTED_COLOR=green" >> $GITHUB_OUTPUT
- name: Get color
run: echo "The selected color is ${{ steps.random-color-generator.outputs.SELECTED_COLOR }}"
```
### Relevant log output
```sh
DEBU[0000] Loading environment from /home/projects/dbt/.env
DEBU[0000] Loading secrets from /home/projects/dbt/.secrets
DEBU[0000] Loading workflows from '/home/projects/dbt/.github/workflows'
DEBU[0000] Loading workflows recursively
DEBU[0000] Found workflow 'test.yml' in '/home/projects/dbt/.github/workflows/test.yml'
DEBU[0000] Reading workflow '/home/projects/dbt/.github/workflows/test.yml'
DEBU[0000]< Using first passed in arguments event for filtering: push
DEBU[0000] Preparing plan with a job: test_github_output
DEBU[0000] Using first passed in arguments event: push
DEBU[0000] Planning job: test_github_output
DEBU[0000] Loading slug from git directory '/home/projects/dbt/.git'
DEBU[0000] Loading revision from git directory '/home/projects/dbt/.git'
DEBU[0000] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
DEBU[0000] HEAD points to '8f75a516902c44aa453118d051af66f61a604cae'
DEBU[0000] using github ref: refs/heads/check_constants
DEBU[0000] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] evaluating expression 'success()'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] expression 'success()' evaluated to 'true'
[Test $GITHUB_OUTPUT/test_github_output] 🚀 Start image=ghcr.io/catthehacker/ubuntu:act-22.04
[Test $GITHUB_OUTPUT/test_github_output] 🐳 docker pull image=ghcr.io/catthehacker/ubuntu:act-22.04 platform= username= forcePull=false
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] 🐳 docker pull ghcr.io/catthehacker/ubuntu:act-22.04
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Image exists? true
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Removed container: 480244ae41f3a7d6d444ec93731b1322fdd9e839135f87f1cc2030ec120d127f
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] 🐳 docker volume rm act-Test-GITHUB-OUTPUT-test-github-output
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] 🐳 docker volume rm act-Test-GITHUB-OUTPUT-test-github-output-env
[Test $GITHUB_OUTPUT/test_github_output] 🐳 docker create image=ghcr.io/catthehacker/ubuntu:act-22.04 platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Common container.Config ==> &{Hostname: Domainname: User: AttachStdin:false AttachStdout:false AttachStderr:false ExposedPorts:map[] Tty:true OpenStdin:false StdinOnce:false Env:[RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp] Cmd:[] Healthcheck:<nil> ArgsEscaped:false Image:ghcr.io/catthehacker/ubuntu:act-22.04 Volumes:map[] WorkingDir:/home/projects/dbt Entrypoint:[] NetworkDisabled:false MacAddress: OnBuild:[] Labels:map[] StopSignal: StopTimeout:<nil> Shell:[]}
[Test $GITHUB_OUTPUT/test_github_output] [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:[] 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: ConsoleSize:[0 0] 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:/toolcache ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil>} {Type:volume Source:act-Test-GITHUB-OUTPUT-test-github-output-env Target:/var/run/act ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil>} {Type:volume Source:act-Test-GITHUB-OUTPUT-test-github-output Target:/home/projects/dbt ReadOnly:false Consistency: BindOptions:<nil> VolumeOptions:<nil> TmpfsOptions:<nil>}] MaskedPaths:[] ReadonlyPaths:[] Init:<nil>}
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Created container name=act-Test-GITHUB-OUTPUT-test-github-output id=8b71e938aa6ecd9f49a1e3e46a3bbd0a0d648c4bd5554e0d981dfa172dffeca9 from image ghcr.io/catthehacker/ubuntu:act-22.04 (platform: )
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp]
[Test $GITHUB_OUTPUT/test_github_output] 🐳 docker run image=ghcr.io/catthehacker/ubuntu:act-22.04 platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Starting container: 8b71e938aa6ecd9f49a1e3e46a3bbd0a0d648c4bd5554e0d981dfa172dffeca9
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Started container: 8b71e938aa6ecd9f49a1e3e46a3bbd0a0d648c4bd5554e0d981dfa172dffeca9
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Writing entry to tarball workflow/event.json len:2
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Writing entry to tarball workflow/paths.txt len:0
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Extracting content to '/var/run/act/'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading slug from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading revision from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] HEAD points to '8f75a516902c44aa453118d051af66f61a604cae'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] using github ref: refs/heads/check_constants
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading slug from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading revision from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] HEAD points to '8f75a516902c44aa453118d051af66f61a604cae'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] using github ref: refs/heads/check_constants
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:random-color-generator 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_ENV:/var/run/act/workflow/envs.txt 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_github_output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/check_constants GITHUB_REF_NAME:check_constants GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:cdbt GITHUB_REPOSITORY_OWNER:company GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:8f75a516902c44aa453118d051af66f61a604cae GITHUB_TOKEN:*** GITHUB_WORKFLOW:Test $GITHUB_OUTPUT GITHUB_WORKSPACE:/home/projects/dbt IMAGE_OS:ubuntu22 ImageOS:ubuntu20 LSB_OS_VERSION:2204 LSB_RELEASE:22.04 PATH:/opt/hostedtoolcache/node/16.18.1/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading slug from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading revision from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] HEAD points to '8f75a516902c44aa453118d051af66f61a604cae'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] using github ref: refs/heads/check_constants
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading slug from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading revision from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] HEAD points to '8f75a516902c44aa453118d051af66f61a604cae'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] using github ref: refs/heads/check_constants
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] evaluating expression ''
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] expression '' evaluated to 'true'
[Test $GITHUB_OUTPUT/test_github_output] ⭐ Run Main Set color
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading slug from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading revision from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] HEAD points to '8f75a516902c44aa453118d051af66f61a604cae'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] using github ref: refs/heads/check_constants
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading slug from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading revision from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] HEAD points to '8f75a516902c44aa453118d051af66f61a604cae'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] using github ref: refs/heads/check_constants
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading slug from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading revision from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] HEAD points to '8f75a516902c44aa453118d051af66f61a604cae'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] using github ref: refs/heads/check_constants
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading slug from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading revision from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] HEAD points to '8f75a516902c44aa453118d051af66f61a604cae'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] using github ref: refs/heads/check_constants
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Wrote command
echo "SELECTED_COLOR=green" >> $GITHUB_OUTPUT
to 'workflow/random-color-generator'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Writing entry to tarball workflow/random-color-generator len:47
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Extracting content to '/var/run/act'
[Test $GITHUB_OUTPUT/test_github_output] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/random-color-generator] user= workdir=
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/random-color-generator]'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Working directory '/home/projects/dbt'
| /var/run/act/workflow/random-color-generator: line 2: $GITHUB_OUTPUT: ambiguous redirect
[Test $GITHUB_OUTPUT/test_github_output] ❌ Failure - Main Set color
[Test $GITHUB_OUTPUT/test_github_output] exitcode '1': failure
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading slug from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading revision from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] HEAD points to '8f75a516902c44aa453118d051af66f61a604cae'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] using github ref: refs/heads/check_constants
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading slug from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading revision from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] HEAD points to '8f75a516902c44aa453118d051af66f61a604cae'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] using github ref: refs/heads/check_constants
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner 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_ENV:/var/run/act/workflow/envs.txt 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_github_output GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/check_constants GITHUB_REF_NAME:check_constants GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:company/dbt GITHUB_REPOSITORY_OWNER:company GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:8f75a516902c44aa453118d051af66f61a604cae GITHUB_TOKEN:*** GITHUB_WORKFLOW:Test $GITHUB_OUTPUT GITHUB_WORKSPACE:/home/projects/dbt IMAGE_OS:ubuntu22 ImageOS:ubuntu20 LSB_OS_VERSION:2204 LSB_RELEASE:22.04 PATH:/opt/hostedtoolcache/node/16.18.1/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading slug from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading revision from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] HEAD points to '8f75a516902c44aa453118d051af66f61a604cae'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] using github ref: refs/heads/check_constants
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading slug from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading revision from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] HEAD points to '8f75a516902c44aa453118d051af66f61a604cae'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] using github ref: refs/heads/check_constants
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] evaluating expression ''
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] expression '' evaluated to 'false'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Skipping step 'Get color' due to ''
[Test $GITHUB_OUTPUT/test_github_output] 🏁 Job failed
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading slug from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Loading revision from git directory '/home/projects/dbt/.git'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] HEAD points to '8f75a516902c44aa453118d051af66f61a604cae'
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] using github ref: refs/heads/check_constants
[Test $GITHUB_OUTPUT/test_github_output] [DEBUG] Found revision: 8f75a516902c44aa453118d051af66f61a604cae
Error: Job 'test_github_output' failed
```
### Additional information
In the non-verbose otuput can be seen clearly how the $GITHUB_OUTPUT is not working.
```
[Test $GITHUB_OUTPUT/test_github_output] 🚀 Start image=ghcr.io/catthehacker/ubuntu:act-22.04
[Test $GITHUB_OUTPUT/test_github_output] 🐳 docker pull image=ghcr.io/catthehacker/ubuntu:act-22.04 platform= username= forcePull=false
[Test $GITHUB_OUTPUT/test_github_output] 🐳 docker create image=ghcr.io/catthehacker/ubuntu:act-22.04 platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Test $GITHUB_OUTPUT/test_github_output] 🐳 docker run image=ghcr.io/catthehacker/ubuntu:act-22.04 platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Test $GITHUB_OUTPUT/test_github_output] ⭐ Run Main Set color
[Test $GITHUB_OUTPUT/test_github_output] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/random-color-generator] user= workdir=
| /var/run/act/workflow/random-color-generator: line 2: $GITHUB_OUTPUT: ambiguous redirect
[Test $GITHUB_OUTPUT/test_github_output] ❌ Failure - Main Set color
[Test $GITHUB_OUTPUT/test_github_output] exitcode '1': failure
[Test $GITHUB_OUTPUT/test_github_output] 🏁 Job failed
Error: Job 'test_github_output' failed
``` | https://github.com/nektos/act/issues/1442 | https://github.com/nektos/act/pull/1391 | f2b98ed301290f53e96c64814ab9949640e10307 | e520382d2fdc5872ca8e939c6c0f2e1e74749182 | "2022-11-15T08:15:34Z" | go | "2022-11-16T21:42:57Z" |
closed | nektos/act | https://github.com/nektos/act | 1,424 | ["pkg/model/github_context.go", "pkg/model/github_context_test.go", "pkg/runner/run_context.go"] | Allow GITHUB_REPOSITORY to be overridden | ### Act version
0.2.33
### Feature description
When developing a github action, it would be cool to be able to write end to end tests with act. We would need the ability to override GITHUB_REPOSITORY (and SHA) to emulate a user using our action in their repo.
Currently GITHUB_REPOSITORY is automatically set to the action we are developing the action in. | https://github.com/nektos/act/issues/1424 | https://github.com/nektos/act/pull/1582 | c4b64ec1c1a48d498ab5a4eb5f8bfda94e14646d | ce168f959502feab3ec815810fac7a3b5a1f470c | "2022-11-04T18:32:51Z" | go | "2023-02-03T19:35:49Z" |
closed | nektos/act | https://github.com/nektos/act | 1,412 | ["go.mod", "go.sum"] | Setting `NODE_AUTH_TOKEN` does not authenticate with npm | ### Bug report info
```plain text
act version: 0.2.31
GOOS: darwin
GOARCH: arm64
NumCPU: 10
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
Config files:
/Users/haseeb/.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.19
Module path: command-line-arguments
Main version:
Main path:
Main checksum:
Build settings:
-compiler: gc
-ldflags: -X main.version=0.2.31
CGO_ENABLED: 1
CGO_CFLAGS:
CGO_CPPFLAGS:
CGO_CXXFLAGS:
CGO_LDFLAGS:
GOARCH: arm64
GOOS: darwin
Docker Engine:
Engine version: 20.10.17
Engine runtime: runc
Cgroup version: 2
Cgroup driver: cgroupfs
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Docker Desktop
OS type: linux
OS version:
OS arch: aarch64
OS kernel: 5.10.104-linuxkit
OS CPU: 5
OS memory: 7851 MB
Security options:
name=seccomp,profile=default
name=cgroupns
```
### Command used with act
```sh
act -j format -s GITHUB_TOKEN
```
### Describe issue
The same workflow successfully installs dependencies, while with act it does not.
Setting the same variable in `.npmrc` works.
`run: echo "//npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}" >> .npmrc && npm ci --ignore-scripts --no-audit --no-progress --prefer-offline`
### Link to GitHub repository
_No response_
### Workflow content
```yml
format:
name: Format
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false
ref: ${{ github.event.pull_request.head.sha || github.sha }}
- name: Setup Node.js
uses: actions/setup-node@v3
with:
cache: 'npm'
node-version: 16
registry-url: https://npm.pkg.github.com
- env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
name: Install dependencies
run: npm ci --ignore-scripts --no-audit --no-progress --prefer-offline
- name: Format
run: npm run format
```
### Relevant log output
```sh
[Continuous Integration/Format] ✅ Success - Main Setup Node.js
[Continuous Integration/Format] ⭐ Run Main Install dependencies
[Continuous Integration/Format] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/2] user= workdir=
| npm WARN deprecated @types/[email protected]: This is a stub types definition. graphql provides its own type definitions, so you do not need this installed.
| npm WARN deprecated @types/[email protected]: This is a stub types definition. bson provides its own type definitions, so you do not need this installed.
| npm ERR! code E401
| npm ERR! 401 Unauthorized
```
### Additional information
_No response_ | https://github.com/nektos/act/issues/1412 | https://github.com/nektos/act/pull/2235 | d3c8664d3d6acb855ae5418f6d02930c98bf877e | 934b13a7a126198019800e79fb2ae7fe57a1c2bd | "2022-10-26T19:27:53Z" | go | "2024-03-04T03:08:44Z" |
closed | nektos/act | https://github.com/nektos/act | 1,410 | ["go.mod", "go.sum"] | System has not been booted with systemd as init system | ### Bug report info
```plain text
act version: 0.2.32
GOOS: linux
GOARCH: amd64
NumCPU: 16
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
Config files:
/home/crazycat/.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.19.1
Module path: command-line-arguments
Main version:
Main path:
Main checksum:
Build settings:
-compiler: gc
-ldflags: -X main.version=0.2.32
CGO_ENABLED: 1
CGO_CFLAGS:
CGO_CPPFLAGS:
CGO_CXXFLAGS:
CGO_LDFLAGS:
GOARCH: amd64
GOOS: linux
GOAMD64: v1
Docker Engine:
Engine version: 20.10.20
Engine runtime: runc
Cgroup version: 1
Cgroup driver: cgroupfs
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Docker Desktop
OS type: linux
OS version:
OS arch: x86_64
OS kernel: 5.15.68.1-microsoft-standard-WSL2
OS CPU: 16
OS memory: 7626 MB
Security options:
name=seccomp,profile=default
```
### Command used with act
```sh
act -j Test-Deployment
```
### Describe issue
Tried on WSL2 & Ubuntu without WSL, get same problem...
Running the "Get docker" or "Set timezone" steps, I always get this error :
System has not been booted with systemd as init system (PID 1). Can't operate.
| Failed to connect to bus: Host is down
Other steps are running fine.
Any idea ?
It seems I can workaround this workflow without these steps, but want to understand the problem, I think I will get it on other workflows...
### Link to GitHub repository
_No response_
### Workflow content
```yml
name: Test Deployment
on:
workflow_dispatch:
inputs:
environment:
description: "Define env name"
required: true
default: "staging"
jobs:
Test-Deployment:
name: 🧱 Test Building Docker (PHP ${{ matrix.php-version }})
timeout-minutes: 20
runs-on: ubuntu-20.04
strategy:
fail-fast: true
matrix:
php-version: ["8.1"]
steps:
# —— Setup Github actions 🐙 —————————————————————————————————————————————
- name: 🐙 Get github action Checkout
uses: actions/checkout@v3
with:
persist-credentials: false
fetch-depth: 0
- name: 🌴 Current Branch name
run: echo running on branch ${GITHUB_REF##*/}
- name: 🐙 Get docker
uses: docker-practice/actions-setup-docker@master
# —— Prepare building 🧙️ —————————————————————————————————————————————————————————
- name: 🕑 Set timezone
run: |
sudo timedatectl set-timezone Europe/Paris
date
- name: ⏱️ Get timestamp
uses: gerred/actions/current-time@master
id: current-time
- name: حلال Run string replace
uses: frabert/replace-string-action@master
id: format-time
with:
pattern: '[:\.]+'
string: "${{ steps.current-time.outputs.time }}"
replace-with: "-"
flags: "g"
# —— DBuild Images 🏗️ ——————————————————————————————————————————————————————————
- name: 🏗️ Build docker images
run: |
set -x
echo "----Build images----"
docker build -t php:${{ steps.format-time.outputs.replaced }} --target php .
docker build -t web:${{ steps.format-time.outputs.replaced }} --target web .
- name: 💸 Images created !
run: echo Docker images are build with tag ${{ steps.format-time.outputs.replaced }}
```
### Relevant log output
```sh
For "Get docker" step :
[Test Deployment/🧱 Test Building Docker (PHP 8.1) ] ❓ ::endgroup::
[Test Deployment/🧱 Test Building Docker (PHP 8.1) ] 💬 ::debug::check docker systemd status
[Test Deployment/🧱 Test Building Docker (PHP 8.1) ] ❓ ::group::check docker systemd status
| [command]/usr/bin/sudo systemctl status docker
| System has not been booted with systemd as init system (PID 1). Can't operate.
| Failed to connect to bus: Host is down
[Test Deployment/🧱 Test Building Docker (PHP 8.1) ] ❗ ::error::Error: The process '/usr/bin/sudo' failed with exit code 1
[Test Deployment/🧱 Test Building Docker (PHP 8.1) ] ❌ Failure - Main 🐙 Get docker
For "Set timezone" step :
[Test Deployment/🧱 Test Building Docker (PHP 8.1) ] ⭐ Run Main 🕑 Set timezone
[Test Deployment/🧱 Test Building Docker (PHP 8.1) ] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/2] user= workdir=
| System has not been booted with systemd as init system (PID 1). Can't operate.
| Failed to create bus connection: Host is down
[Test Deployment/🧱 Test Building Docker (PHP 8.1) ] ❌ Failure - Main 🕑 Set timezone
```
### Additional information
_No response_ | https://github.com/nektos/act/issues/1410 | https://github.com/nektos/act/pull/2235 | d3c8664d3d6acb855ae5418f6d02930c98bf877e | 934b13a7a126198019800e79fb2ae7fe57a1c2bd | "2022-10-24T15:40:34Z" | go | "2024-03-04T03:08:44Z" |
closed | nektos/act | https://github.com/nektos/act | 1,401 | ["pkg/runner/action_composite.go", "pkg/runner/testdata/pull-request/main.yaml"] | Event details not loaded from JSON file provided via --eventpath param | # Setup
Operating system: `macOS Monterey v12.6`
Act version: `0.2.32`
# Issue
The `act` command doesn't seem to read the contents of the GH event JSON file provided via the CLI parameter `--eventpath`.
In particular, the event name, the head ref and the base ref do not get read from the event JSON file. Possibly some other values might not be read either, but I haven't gotten that far.
# Expected result
The values for the event name, the head ref and the base ref should be read from the event JSON file. Ideally, this should also apply to any other values specified in the file, conforming with GitHub's [event properties](https://docs.github.com/en/developers/webhooks-and-events/events/github-event-types)).
# How to reproduce
### 1. Executed the command
```sh
act \
--platform=self-hosted=node:16-bullseye-slim \
--container-architecture=linux/amd64 \
--secret-file=/path/to/my-custom-secrets.secrets \
--env-file=/path/to/my-custom-env.env \
--eventpath=/path/to/my-custom-event.json \
--actor=my-actor-name \
--job=my-custom-job \
--artifact-server-path=localhost \
--artifact-server-port=34567 \
--verbose
```
### 2. Provide content of the event file (`my-custom-event.json`)
```json
{
"action": "opened",
"pull_request": {
"head": {
"ref": "my-topic-branch"
},
"base": {
"ref": "main"
}
}
}
```
### 3. Verify environment setup in the command's output
<details>
<summary>Expand (collapsed due to verbosity of output)</summary>
```
[my-custom-job] [DEBUG] setupEnv => map[
ACT: true
ACTIONS_RUNTIME_TOKEN: token
ACTIONS_RUNTIME_URL: http://192.168.1.5:34567/
CI: true
GITHUB_ACTION: 4
GITHUB_ACTIONS:true
GITHUB_ACTION_PATH: /var/run/act/actions/my-private-company-my-private-github-actions-repo-my-custom-build-action@v123/my-custom-build-action
GITHUB_ACTION_REF:
GITHUB_ACTION_REPOSITORY:
GITHUB_ACTOR: my-actor-name
GITHUB_API_URL: https://api.github.com
(1) GITHUB_BASE_REF:
GITHUB_ENV: /var/run/act/workflow/envs.txt
(2) GITHUB_EVENT_NAME: push
GITHUB_EVENT_PATH: /var/run/act/workflow/event.json
GITHUB_GRAPHQL_URL: https://api.github.com/graphql
(3) GITHUB_HEAD_REF:
GITHUB_JOB: my-custom-job
GITHUB_PATH: /var/run/act/workflow/paths.txt
(4) GITHUB_REF: refs/heads/main
GITHUB_REF_NAME: main
GITHUB_REF_TYPE: branch
GITHUB_REPOSITORY: my-private-company/my-private-repo
GITHUB_REPOSITORY_OWNER: my-private-company
GITHUB_RETENTION_DAYS: 0
GITHUB_RUN_ID: 1
GITHUB_RUN_NUMBER: 1
GITHUB_SERVER_URL: https://github.com
GITHUB_SHA: my-main-branch-git-sha-long
GITHUB_TOKEN: ***
GITHUB_WORKFLOW: my-custom-workflow
GITHUB_WORKSPACE: /path/to/my-private-repo
GIT_SHA_LONG: my-custom-branch-git-sha-long
NODE_VERSION: 16.15.0
PATH: /opt/hostedtoolcache/node/16.17.1/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUNNER_PERFLOG: /dev/null
RUNNER_TRACKING_ID:
YARN_VERSION: 1.22.18
]
```
References:
(1) GH base ref not read from file! Expected value -> "main"
(2) GH event name not read from file and defaulted to "push"
(3) GH head ref not read from file! Expected value -> "my-topic-branch"
(4) GH ref not read from file! Expected value -> "my-topic-branch"
</details>
# Further symptoms of the issue
One of the steps of the workflow needs to only run when building the "main" branch after a "push" event. The event file specifies the "my-topic-branch" branch and the "pull_request" event, but then the following check succeeds when it should fail:
```
DEBU[0514] evaluating expression 'github.ref == 'refs/heads/main' && github.event_name == 'push''
DEBU[0514] expression 'github.ref == 'refs/heads/main' && github.event_name == 'push'' evaluated to 'true'
```
# Related issues
https://github.com/nektos/act/issues/671 | https://github.com/nektos/act/issues/1401 | https://github.com/nektos/act/pull/1428 | 1b554aeff651cf801c11277bacb162ba31483b08 | 2614b3eb0c62772b17ba11509287fdc6f843f9d3 | "2022-10-19T19:30:28Z" | go | "2022-11-16T17:00:49Z" |
closed | nektos/act | https://github.com/nektos/act | 1,390 | ["pkg/container/docker_images.go"] | Docker Desktop 22.06.0-beta: invalid filter 'reference' | ### Bug report info
```plain text
act version: 0.2.32
GOOS: linux
GOARCH: amd64
NumCPU: 2
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
Config files:
/home/drew/.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.18.6
Module path: github.com/nektos/act
Main version: (devel)
Main path: github.com/nektos/act
Main checksum:
Build settings:
-compiler: gc
-ldflags: -s -w -X main.version=0.2.32 -X main.commit=21484b5c1ecbd9e1ddb6a57debd7731a3e1fc25f -X main.date=2022-10-01T03:01:40Z -X main.builtBy=goreleaser
CGO_ENABLED: 0
GOARCH: amd64
GOOS: linux
GOAMD64: v1
vcs: git
vcs.revision: 21484b5c1ecbd9e1ddb6a57debd7731a3e1fc25f
vcs.time: 2022-09-29T05:59:52Z
vcs.modified: false
Docker Engine:
Engine version: 22.06.0-beta.0-372-gd3bb8227ce.m
Engine runtime: runc
Cgroup version: 1
Cgroup driver: cgroupfs
Storage driver: stargz
Registry URI: https://index.docker.io/v1/
OS: Docker Desktop
OS type: linux
OS version:
OS arch: x86_64
OS kernel: 5.10.102.1-microsoft-standard-WSL2
OS CPU: 2
OS memory: 3924 MB
Security options:
name=seccomp,profile=builtin
```
### Command used with act
```sh
act
or
act -j kube_image_builder_job
Both create the same output
```
### Describe issue
I just expected it to be able to run.
### Link to GitHub repository
_No response_
### Workflow content
```yml
name: Lint and Test Charts
on: [push]
jobs:
lint-chart:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Install Helm
uses: azure/setup-helm@v3
with:
version: 3.3.0
- uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install chart-testing
uses: helm/[email protected]
- name: Run lint
run: ct lint --all --config .github/ct.yaml
lint-docs:
runs-on: ubuntu-latest
needs: lint-chart
steps:
- name: Checkout
uses: actions/[email protected]
- name: Run helm-docs
run: .github/helm-docs.sh
kubeconform-chart:
runs-on: ubuntu-latest
needs:
# - lint-chart
- lint-docs
strategy:
matrix:
k8s:
# from https://github.com/yannh/kubernetes-json-schema
- v1.22.9
- v1.23.9
- v1.24.4
- v1.25.0
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Run kubeconform
env:
KUBERNETES_VERSION: ${{ matrix.k8s }}
run: .github/kubeconform.sh
```
### Relevant log output
```sh
time="2022-10-14T12:31:40+01:00" level=debug msg="Loading environment from E:\\OwnCloud\\Projects\\GitOps\\GoLang\\gitea.viles.uk\\dcp\\helm-charts\\.env"
time="2022-10-14T12:31:40+01:00" level=debug msg="Loading secrets from E:\\OwnCloud\\Projects\\GitOps\\GoLang\\gitea.viles.uk\\dcp\\helm-charts\\.secrets"
time="2022-10-14T12:31:40+01:00" level=debug msg="Loading workflows from 'E:\\OwnCloud\\Projects\\GitOps\\GoLang\\gitea.viles.uk\\dcp\\helm-charts\\.github\\workflows'"
time="2022-10-14T12:31:40+01:00" level=debug msg="Loading workflows recursively"
time="2022-10-14T12:31:40+01:00" level=debug msg="Found workflow 'ci.yaml' in 'E:\\OwnCloud\\Projects\\GitOps\\GoLang\\gitea.viles.uk\\dcp\\helm-charts\\.github\\workflows\\ci.yaml'"
time="2022-10-14T12:31:40+01:00" level=debug msg="Found workflow 'release.yaml' in 'E:\\OwnCloud\\Projects\\GitOps\\GoLang\\gitea.viles.uk\\dcp\\helm-charts\\.github\\workflows\\release.yaml'"
time="2022-10-14T12:31:40+01:00" level=debug msg="Reading workflow 'E:\\OwnCloud\\Projects\\GitOps\\GoLang\\gitea.viles.uk\\dcp\\helm-charts\\.github\\workflows\\ci.yaml'"
time="2022-10-14T12:31:40+01:00" level=debug msg="Reading workflow 'E:\\OwnCloud\\Projects\\GitOps\\GoLang\\gitea.viles.uk\\dcp\\helm-charts\\.github\\workflows\\release.yaml'"
time="2022-10-14T12:31:40+01:00" level=debug msg="Preparing plan with all jobs"
time="2022-10-14T12:31:40+01:00" level=debug msg="Using default workflow event: push"
time="2022-10-14T12:31:40+01:00" level=debug msg="Planning jobs for event: push"
time="2022-10-14T12:31:40+01:00" level=debug msg="Loading slug from git directory 'E:\\OwnCloud\\Projects\\GitOps\\GoLang\\gitea.viles.uk\\dcp\\helm-charts\\.git'"
time="2022-10-14T12:31:40+01:00" level=debug msg="Loading revision from git directory 'E:\\OwnCloud\\Projects\\GitOps\\GoLang\\gitea.viles.uk\\dcp\\helm-charts\\.git'"
time="2022-10-14T12:31:40+01:00" level=debug msg="Found revision: 22dacb7e00feb33ac1c8a99e0dab08806ed59be4\n"
time="2022-10-14T12:31:40+01:00" level=debug msg="HEAD points to '22dacb7e00feb33ac1c8a99e0dab08806ed59be4'"
time="2022-10-14T12:31:40+01:00" level=debug msg="using github ref: refs/heads/releases/drone-runner-kube-0.2.0"
time="2022-10-14T12:31:40+01:00" level=debug msg="Found revision: 22dacb7e00feb33ac1c8a99e0dab08806ed59be4\n"
[Release Charts/release] [DEBUG] evaluating expression 'success()'
[Release Charts/release] [DEBUG] expression 'success()' evaluated to 'true'
[Release Charts/release] 🚀 Start image=catthehacker/ubuntu:act-latest
[Release Charts/release] 🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=false
[Release Charts/release] [DEBUG] 🐳 docker pull catthehacker/ubuntu:act-latest
[Release Charts/release] [DEBUG] Image exists? false
Error: unable to determine if image already exists for image 'catthehacker/ubuntu:act-latest' (): Error response from daemon: invalid filter 'reference'
```
### Additional information
I don't seem to be able to get this working on Windows or Windows Subsystem for Linux at all.
This is a fresh install.
I've manually pulled the image catthehacker/ubuntu:act-latest and it's still unable to detect the image.
Any recommendations I can try to get this working? | https://github.com/nektos/act/issues/1390 | https://github.com/nektos/act/pull/1501 | 8b4f21087209e027ca0e2ec225e0c74d03552f86 | b2fb9e64ac1b263088003b94963b36b6edeaba31 | "2022-10-14T11:33:57Z" | go | "2023-01-13T17:52:54Z" |
closed | nektos/act | https://github.com/nektos/act | 1,386 | [".github/workflows/checks.yml", "pkg/runner/step.go", "pkg/runner/step_action_local_test.go", "pkg/runner/step_action_remote_test.go", "pkg/runner/step_docker_test.go", "pkg/runner/step_run_test.go"] | Add support for `>> $GITHUB_OUTPUT` because `set-output` will be deprectated. | ### Act version
0.2.32.r13.gff5e289
### Feature description
I think this functionality isn't yet part of act, which isn't strange since i think it is just announced.
But it looks like they are going to deprecate the `set-output` and `set-state` options and replace them with `>> $GITHUB_OUTPUT` and `>> $GITHUB_STATE`
See: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
And also: https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#setting-an-output-parameter
| https://github.com/nektos/act/issues/1386 | https://github.com/nektos/act/pull/1391 | f2b98ed301290f53e96c64814ab9949640e10307 | e520382d2fdc5872ca8e939c6c0f2e1e74749182 | "2022-10-13T13:50:04Z" | go | "2022-11-16T21:42:57Z" |
closed | nektos/act | https://github.com/nektos/act | 1,367 | ["pkg/exprparser/interpreter.go", "pkg/exprparser/interpreter_test.go", "pkg/runner/expression.go", "pkg/runner/runner_test.go", "pkg/runner/testdata/job-needs-context-contains-result/push.yml"] | Support needs.*.result | ### Act version
0.2.31
### Feature description
Act is missing support for the `result` property in the needs context object. This property tells you if a job succeeded or failed.
https://docs.github.com/en/actions/learn-github-actions/contexts#needs-context
I expect this workflow to work, but `needs.build.result` is not defined when running with act.
```
name: Build and deploy
on: push
jobs:
build:
runs-on: ubuntu-latest
outputs:
build_id: ${{ steps.build_step.outputs.build_id }}
steps:
- uses: actions/checkout@v3
- name: Build
id: build_step
run: |
./build
echo "::set-output name=build_id::$BUILD_ID"
deploy:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: ./deploy --build ${{ needs.build.outputs.build_id }}
debug:
needs: [build, deploy]
runs-on: ubuntu-latest
if: ${{ needs.build.result == 'failure' }}
steps:
- uses: actions/checkout@v3
- run: ./debug
``` | https://github.com/nektos/act/issues/1367 | https://github.com/nektos/act/pull/1497 | 0c8c082ac0baf25909fd79b87897426816c3c4eb | bef9b5c3c77bcdbc6c15169c0d55f635e27350ae | "2022-09-30T13:46:08Z" | go | "2022-12-19T08:37:53Z" |
closed | nektos/act | https://github.com/nektos/act | 1,353 | ["pkg/runner/action_composite.go", "pkg/runner/job_executor.go", "pkg/runner/job_executor_test.go", "pkg/runner/step.go", "pkg/runner/step_action_local_test.go", "pkg/runner/step_action_remote_test.go", "pkg/runner/step_docker_test.go"] | act does not evaluate step names | ### Bug report info
```plain text
act version: 0.2.31
GOOS: darwin
GOARCH: arm64
NumCPU: 10
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
Config files:
/Users/bas/.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.19
Module path: command-line-arguments
Main version:
Main path:
Main checksum:
Build settings:
-compiler: gc
-ldflags: -X main.version=0.2.31
CGO_ENABLED: 1
CGO_CFLAGS:
CGO_CPPFLAGS:
CGO_CXXFLAGS:
CGO_LDFLAGS:
GOARCH: arm64
GOOS: darwin
Docker Engine:
Engine version: 20.10.17
Engine runtime: runc
Cgroup version: 2
Cgroup driver: cgroupfs
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Docker Desktop
OS type: linux
OS version:
OS arch: aarch64
OS kernel: 5.10.124-linuxkit
OS CPU: 5
OS memory: 7851 MB
Security options:
name=seccomp,profile=default
name=cgroupns
```
### Command used with act
```sh
act --actor basz --secret-file=.secrets --container-architecture linux/amd64
```
### Describe issue
Mayby a question, mayby a bug
the matrix variables are not "expanded" in the output. Shouldn't they be?
### Link to GitHub repository
_No response_
### Workflow content
```yml
on:
workflow_dispatch:
# schedule:
# - cron: "0 0 * * 0,3"
push:
branches:
- "main"
name: "Build And Push PHP Docker Images"
jobs:
build-and-push-docker:
name: "Build And Push PHP Docker Images"
runs-on: ${{ matrix.operating-system }}
strategy:
fail-fast: false
matrix:
php-version:
- "7.4"
- "8.0"
- "8.1"
php-target:
- "cli"
- "fpm"
operating-system:
- "ubuntu-latest"
steps:
- name: "Checkout"
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
platforms: amd64,arm64
# @see https://github.com/docker/setup-buildx-action#quick-start
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
with:
install: true
driver: docker-container
config: .github/buildkitd.toml
buildkitd-flags: --debug
- name: Inspect builder
run: |
echo "Name: ${{ steps.buildx.outputs.name }}"
echo "Endpoint: ${{ steps.buildx.outputs.endpoint }}"
echo "Status: ${{ steps.buildx.outputs.status }}"
echo "Flags: ${{ steps.buildx.outputs.flags }}"
echo "Platforms: ${{ steps.buildx.outputs.platforms }}"
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: "Build ${{ matrix.php-version }}-${{ matrix.php-target }}"
working-directory: php
run: |
docker build . --file php-${{ matrix.php-target }} --platform linux/amd64,linux/arm64 --push --tag ghcr.io/plhw/lab-docker/php-test:${{ matrix.php-version }}-${{ matrix.php-target }}
env:
PHP_VERSION: ${{ matrix.php-version }}
```
### Relevant log output
```sh
[Build And Push PHP Docker Images/Build And Push PHP Docker Images-2] ⭐ Run Main Build ${{ matrix.php-version }}-${{ matrix.php-target }}
[Build And Push PHP Docker Images/Build And Push PHP Docker Images-3] ⭐ Run Main Build ${{ matrix.php-version }}-${{ matrix.php-target }}
```
### Additional information
_No response_ | https://github.com/nektos/act/issues/1353 | https://github.com/nektos/act/pull/1422 | e520382d2fdc5872ca8e939c6c0f2e1e74749182 | 809da7198cc2bed5b758c77274d47cb5360ee848 | "2022-09-19T11:26:15Z" | go | "2022-11-16T21:55:23Z" |
closed | nektos/act | https://github.com/nektos/act | 1,332 | ["README.md", "cmd/root.go", "pkg/model/planner.go"] | act not listing workflows when using: "on: pull_request:" | ### Bug report info
```plain text
act version: 0.2.31
GOOS: linux
GOARCH: amd64
NumCPU: 8
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
Config files:
/home/ronaldo/.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.18.5
Module path: github.com/nektos/act
Main version: (devel)
Main path: github.com/nektos/act
Main checksum:
Build settings:
-compiler: gc
-ldflags: -s -w -X main.version=0.2.31 -X main.commit=a20b1d4669d8d032fe35347bd3cfdae58b4d1d97 -X main.date=2022-09-01T02:56:14Z -X main.builtBy=goreleaser
CGO_ENABLED: 0
GOARCH: amd64
GOOS: linux
GOAMD64: v1
vcs: git
vcs.revision: a20b1d4669d8d032fe35347bd3cfdae58b4d1d97
vcs.time: 2022-08-31T18:41:56Z
vcs.modified: false
Docker Engine:
Engine version: 20.10.17
Engine runtime: runc
Cgroup version: 2
Cgroup driver: systemd
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Debian GNU/Linux 11 (bullseye)
OS type: linux
OS version: 11
OS arch: x86_64
OS kernel: 5.10.0-17-amd64
OS CPU: 8
OS memory: 15692 MB
Security options:
name=apparmor
name=seccomp,profile=default
name=cgroupns
```
### Command used with act
```sh
act -l
Stage Job ID Job name Workflow name Workflow file Events
```
### Describe issue
I just created this workflow:
```
cat .github/workflows/pull_request.yml
---
name: Pull Request Event
on:
pull_request:
jobs:
pullrequestit:
runs-on: ubuntu-latest
steps:
- name: Pull Request it
run: echo "Doing a pull request."
...
```
So when I run `cat -l` it is NOT listing my workflow.
```
act -l
Stage Job ID Job name Workflow name Workflow file Events
```
If I change the `on: pull_request:` to `on: push:`, it lists my workflow.
```
cat .github/workflows/pull_request.yml
---
name: Pull Request Event
on:
push: ### NOW THERE IS A PUSH HERE
jobs:
pullrequestit:
runs-on: ubuntu-latest
steps:
- name: Pull Request it
run: echo "Doing a pull request."
...
act -l
Stage Job ID Job name Workflow name Workflow file Events
0 pullrequestit pullrequestit Pull Request Event pull_request.yml push
```
I was expecting that `act -l` listing my workflow when I set the `on:` directive as `pull_request`.
### Link to GitHub repository
_No response_
### Workflow content
```yml
---
name: Pull Request Event
on:
pull_request:
jobs:
pullrequestit:
runs-on: ubuntu-latest
steps:
- name: Pull Request it
run: echo "Doing a pull request."
...
```
### Relevant log output
```sh
act -l
Stage Job ID Job name Workflow name Workflow file Events
```
### Additional information
`act` doesn't list my workflow even if I set the `on` as:
```
on: [pull_request]
```
But it lists my workflow if I set two events `push` and `pull_request`, as:
```
on:
push:
pull_request:
``` | https://github.com/nektos/act/issues/1332 | https://github.com/nektos/act/pull/1335 | 13d530302e5f8203b0f104155eb6e136f5aaf910 | 21484b5c1ecbd9e1ddb6a57debd7731a3e1fc25f | "2022-09-06T20:11:10Z" | go | "2022-09-29T05:59:52Z" |
closed | nektos/act | https://github.com/nektos/act | 1,319 | ["go.mod", "go.sum"] | Composite action inputs clobbered | ### Bug report info
```plain text
$ act --bug-report
act version: 0.2.30
GOOS: linux
GOARCH: amd64
NumCPU: 8
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
Config files:
/home/gwarner/.actrc:
-P ubuntu-latest=catthehacker/ubuntu:act-latest
-P ubuntu-20.04=catthehacker/ubuntu:act-20.04
-P ubuntu-18.04=catthehacker/ubuntu:act-18.04
ubuntu-16.04=catthehacker/ubuntu:act-16.04
Build info:
Go version: go1.18.5
Module path: github.com/nektos/act
Main version: (devel)
Main path: github.com/nektos/act
Main checksum:
Build settings:
-compiler: gc
CGO_ENABLED: 1
GOARCH: amd64
GOOS: linux
GOAMD64: v1
Docker Engine:
Engine version: 20.10.17
Engine runtime: runc
Cgroup version: 2
Cgroup driver: systemd
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: NixOS 22.05 (Quokka)
OS type: linux
OS version: 22.05
OS arch: x86_64
OS kernel: 5.15.60
OS CPU: 8
OS memory: 63521 MB
Security options:
name=seccomp,profile=default
name=cgroupns
```
### Command used with act
```sh
act -P ubuntu-18.04=nektos/act-environments-ubuntu:18.04 -W .github/workflows/pipeline.yaml
```
### Describe issue
In action, `${{ inputs... }}` not available after 'using' actions/setup-node or actions/setup-java.
### Link to GitHub repository
https://github.com/gdw2/act-test
### Workflow content
```yml
name: Pipeline
on:
push:
jobs:
test-orders:
runs-on: [ viarise ]
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/test
with:
module: some-module
--- (action below) ---
name: Test Action
inputs:
module:
required: true
description: some description
runs:
using: composite
steps:
- shell: bash
run: |
echo TEST1 ${{ inputs.module }}
- uses: actions/setup-node@v2
with:
node-version: '16'
- shell: bash
run: |
echo TEST2 ${{ inputs.module }}. # <-- ⛔️ This isn't echoing. `inputs` seems to be clobbered by previous step.
```
### Relevant log output
```sh
Pipeline/test-orders] 🚀 Start image=nektos/act-environments-ubuntu:18.04
<snip>
| TEST1 some-module
[Pipeline/test-orders] Success - Main echo TEST1 ${{ inputs.module }}
<snip>
[Pipeline/test-orders] Runle Main actions/setup-node@v2
<snip>
[Pipeline/test-orders] ##Success - Main actions/setup-/ode@v2
<snip>
| TEST2 <-- ⛔️ This should say "TEST2 some-module" instead!!!!
<snip>
[Pipeline/test-orders] 🏁 Job succeeded
```
### Additional information
I would expect it to echo "TEST2 some-module", but using actions/setup-node seems to clobber `inputs` so that `${{ inputs.module }}` is empty.
When I run it verbosely, after actions/setup-node, I no longer see `INPUT_MODULE` being set for subsequent steps.
**This works fine on GHA on GHE, which is why I think it might be an act issue.** | https://github.com/nektos/act/issues/1319 | https://github.com/nektos/act/pull/1650 | 5a2112a7f8e282fcb75f1c73caa1582811ff4890 | a6c95ef2a771afdc9f83f6750b642491e52f681c | "2022-08-25T21:18:19Z" | go | "2023-03-19T23:56:15Z" |
closed | nektos/act | https://github.com/nektos/act | 1,318 | ["README.md", "cmd/root.go", "pkg/model/planner.go"] | finds workflow but no events | I'm brand new to act and I'm having issues getting it to run my workflow file.
Jobs list is empty with the following workflow.
It find the workflow file but no events for push when running
```act -l -v```
I get the following output:
```
"no events found for workflow: push"
```
Here is the workflow file:
```
name: NodeJS Action Test
on:
push:
branches: [main]
jobs:
TestNodeScript:
runs-on: ubuntu-latest
steps:
- name: Check Out
uses: actions/checkout@v2
- name: Setup Node
uses: actions/[email protected]
with:
node-version: '16'
- name: Run Action
uses: ./testing/nodejs-script@main
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
```
Am I missing something? Is there an issue with parsing the original file because it uses a custom action or is expecting a payload from the events json? | https://github.com/nektos/act/issues/1318 | https://github.com/nektos/act/pull/1335 | 13d530302e5f8203b0f104155eb6e136f5aaf910 | 21484b5c1ecbd9e1ddb6a57debd7731a3e1fc25f | "2022-08-25T21:04:01Z" | go | "2022-09-29T05:59:52Z" |
closed | nektos/act | https://github.com/nektos/act | 1,308 | ["pkg/runner/run_context.go"] | Consider passing `LANG=C.UTF-8` | ### Bug report info
```plain text
act version: 0.2.30
GOOS: darwin
GOARCH: amd64
NumCPU: 8
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
Config files:
/Users/brice.dutheil/.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.18.4
Module path: command-line-arguments
Main version:
Main path:
Main checksum:
Build settings:
-compiler: gc
-ldflags: -X main.version=0.2.30
CGO_ENABLED: 1
CGO_CFLAGS:
CGO_CPPFLAGS:
CGO_CXXFLAGS:
CGO_LDFLAGS:
GOARCH: amd64
GOOS: darwin
GOAMD64: v1
Docker Engine:
Engine version: 20.10.17
Engine runtime: runc
Cgroup version: 1
Cgroup driver: cgroupfs
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Docker Desktop
OS type: linux
OS version:
OS arch: x86_64
OS kernel: 5.10.104-linuxkit
OS CPU: 6
OS memory: 3933 MB
Security options:
name=seccomp,profile=default
```
### Command used with act
```sh
act release --reuse --secret GITHUB_TOKEN
```
### Describe issue
When using the command above my gradle build fails due to encoding problems. While the title is using the word _consider_ I believe this is a bug as the goal of this tool is to somewhat mimic Github Action, and this behavior is hard to troubleshoot if you didn't encounter it before.
```
error: unmappable character (0xA6) for encoding US-ASCII
```
On Github Action this doesn't fail. Since it appears a locale / lang problem I ran a GA job with a step simply printing the environment `- run: env`, and indeed it appears `LANG` is set to `C.UTF-8` in GA, but it's missing when running `act`.
Indeed, passing this to the `act` command fixes the issue:
```
act release --reuse --env LANG=C.UTF-8 --secret GITHUB_TOKEN
```
### Link to GitHub repository
https://github.com/bric3/fireplace
### Workflow content
```yml
name: CI-release
on:
# Release event https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#release
release:
types: [ prereleased, released ]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.release.tag_name }}
fetch-depth: 50
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'zulu'
- name: Publish to Central
uses: gradle/gradle-build-action@v2
if: success()
env:
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.ORG_GRADLE_PROJECT_SIGNINGKEY }}
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.ORG_GRADLE_PROJECT_SIGNINGPASSWORD }}
ORG_GRADLE_PROJECT_ossrhUsername: ${{ secrets.ORG_GRADLE_PROJECT_OSSRHUSERNAME }}
ORG_GRADLE_PROJECT_ossrhPassword: ${{ secrets.ORG_GRADLE_PROJECT_OSSRHPASSWORD }}
with:
arguments: publish -Ppublish.central=false
```
### Relevant log output
```sh
[CI-release/publish] 💾 ::save-state name=CACHE_LISTENER::{"cacheEntries":[],"cacheReadOnly":false,"cacheWriteOnly":false,"cacheDisabled":true}
| [command]/Users/brice.dutheil/opensource/fireplace/gradlew publish -Ppublish.central=false
| Type-safe project accessors is an incubating feature.
| > Task :publish UP-TO-DATE
|
| > Task :fireplace-swing:compileJava
| /Users/brice.dutheil/opensource/fireplace/fireplace-swing/src/main/java/io/github/bric3/fireplace/flamegraph/FrameRenderer.java:211: error: unmappable character (0xE2) for encoding US-ASCII
| // don't draw text, if too long or too short (like "r???")
```
### Additional information
_No response_ | https://github.com/nektos/act/issues/1308 | https://github.com/nektos/act/pull/1476 | 7754ba7fcf3f80b76bb4d7cf1edbe5935c8a6bdc | 1797775be3ad662a3e5b369184c6b73900254b24 | "2022-08-18T12:40:57Z" | go | "2022-12-06T10:36:39Z" |
closed | nektos/act | https://github.com/nektos/act | 1,306 | ["pkg/runner/job_executor.go", "pkg/runner/runner_test.go", "pkg/runner/testdata/job-container-invalid-credentials/push.yml"] | SIGSEGV when having secrets not defined locally | ### Bug report info
```plain text
act version: 0.2.30
GOOS: darwin
GOARCH: amd64
NumCPU: 12
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
Config files:
/Users/kai7rng/.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.18.4
Module path: command-line-arguments
Main version:
Main path:
Main checksum:
Build settings:
-compiler: gc
-ldflags: -X main.version=0.2.30
CGO_ENABLED: 1
CGO_CFLAGS:
CGO_CPPFLAGS:
CGO_CXXFLAGS:
CGO_LDFLAGS:
GOARCH: amd64
GOOS: darwin
GOAMD64: v1
Docker Engine:
Engine version: 20.10.17
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: x86_64
OS kernel: 5.10.104-linuxkit
OS CPU: 6
OS memory: 7859 MB
Security options:
name=seccomp,profile=default
name=cgroupns
```
### Command used with act
```sh
act
```
### Describe issue
Not user friendly way of failing on unknown secrets.
```
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x58 pc=0x16291ea]
goroutine 38 [running]:
```
### Link to GitHub repository
_No response_
### Workflow content
```yml
Relevant is only that I have following in my .yaml:
${{ secrets.RESOURCE_USER_NAME }}
```
### Relevant log output
```sh
[ci-pipeline/documentation] [DEBUG] evaluating expression 'format('{0}', secrets.RESOURCE_USER_NAME)'
[ci-pipeline/documentation] [DEBUG] expression 'format('{0}', secrets.RESOURCE_USER_NAME)' evaluated to '%!t(string=)'
panic: runtime error: invalid memory address or nil pointer dereference
[signal SIGSEGV: segmentation violation code=0x1 addr=0x58 pc=0x16291ea]
```
### Additional information
_No response_ | https://github.com/nektos/act/issues/1306 | https://github.com/nektos/act/pull/1348 | 6037182487e39d9f50c6887ab3453986fbf29a9b | 7d0407fa4abfe81308f8787cbd07c4c72b2aa676 | "2022-08-16T09:24:14Z" | go | "2022-09-26T06:17:06Z" |
closed | nektos/act | https://github.com/nektos/act | 1,289 | [".github/workflows/checks.yml", ".github/workflows/promote.yml", ".github/workflows/release.yml"] | RUNNER_ARCH is not defined | ### Act version
act version 0.2.30
### Feature description
[GitHub added a runner context variable called `runner.arch`.](https://github.com/github/docs/pull/12374)
Just as https://github.com/nektos/act/issues/171 added support for `runner.os` I would like to have support for `runner.arch` in `act` so that I can use actions like [Sigstore](https://github.com/sigstore/cosign-installer/blob/5a02ebd2af776bdbc3d49b04456e6aef8a0b31dc/action.yml#L83) that use these values.
| https://github.com/nektos/act/issues/1289 | https://github.com/nektos/act/pull/1998 | 603b44b585ee35090a13498c7af15f79a8a12a51 | 0dfb06748ebd077c25451e07a55e563d7bdc6b4a | "2022-08-04T10:13:58Z" | go | "2023-12-16T23:47:32Z" |
closed | nektos/act | https://github.com/nektos/act | 1,259 | ["go.mod", "go.sum"] | Chocolatey missing v0.2.29. | ### Bug report info
```plain text
Chocolatey should have the new 0.2.29.
```
### Command used with act
```sh
choco upgrade act-cli
```
### Describe issue
Chocolatey v1.1.0
Upgrading the following packages:
act-cli
By upgrading, you accept licenses for the packages.
act-cli v0.2.28 is the latest version available based on your source(s).
Chocolatey upgraded 0/1 packages.
See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log).
### Link to GitHub repository
_No response_
### Workflow content
```yml
N/A
```
### Relevant log output
```sh
N/A
```
### Additional information
_No response_ | https://github.com/nektos/act/issues/1259 | https://github.com/nektos/act/pull/1040 | 933413e2c0e1d600e09291ba6e63211a3c294385 | fa71f0b1e04a6391b77ef091c0db4d1a8f0ad1c1 | "2022-07-15T21:30:43Z" | go | "2022-03-14T15:14:20Z" |
closed | nektos/act | https://github.com/nektos/act | 1,236 | ["go.mod", "go.sum"] | Host repo not cloning | ### Bug report info
```plain text
act --bug-report
act version: 0.2.28
GOOS: windows
GOARCH: amd64
NumCPU: 20
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
\\.\pipe\docker_engine
Config files:
C:\Users\xxx\.actrc:
-P ubuntu-latest=ghcr.io/catthehacker/ubuntu:act-latest
--secret-file my.secrets
Build info:
Go version: go1.18.3
Module path: github.com/nektos/act
Main version: (devel)
Main path: github.com/nektos/act
Main checksum:
-ldflags: -s -w -X main.version=0.2.28 -X main.commit=de37f750773575651a91363eb6b1ce97be964845 -X main.date=2022-06-21T14:07:09Z -X main.builtBy=goreleaser
CGO_ENABLED: 0
GOARCH: amd64
GOOS: windows
GOAMD64: v1
vcs: git
vcs.revision: de37f750773575651a91363eb6b1ce97be964845
vcs.time: 2022-06-21T13:52:21Z
vcs.modified: false
Docker Engine:
Engine version: 20.10.16
Engine runtime: runc
Cgroup version: 1
Cgroup driver: cgroupfs
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Docker Desktop
OS type: linux
OS version:
OS arch: x86_64
OS kernel: 5.10.16.3-microsoft-standard-WSL2
OS CPU: 1
OS memory: 1983 MB
Security options:
name=seccomp,profile=default
```
### Command used with act
```sh
act -P ubuntu-latest=ghcr.io/catthehacker/ubuntu:act-latest --secret-file my.secrets
```
### Describe issue
With the following action-
```yaml
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ Check out this repo ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️
uses: actions/checkout@v3
- run:
ls -lah &&
sleep infinity
```
I expect the files `assets` and `paris-syndrome.gbsproj` to be available to `act` but the directory seems to be empty...
They are not in the gitignore.
```
PS C:\Users\xxx\src\paris-syndrome-gb> ls
Directory: C:\Users\xxx\src\paris-syndrome-gb
Mode LastWriteTime Length Name
---- ------------- ------ ----
d----- 6/30/2022 12:59 AM .git
d----- 6/24/2022 8:54 PM .github
d----- 6/24/2022 9:31 PM assets
-a---- 6/30/2022 12:55 AM 717 .gitignore
-a---- 6/29/2022 11:22 PM 109 my.secrets
-a---- 6/24/2022 10:41 PM 47211 paris-syndrome.gbsproj
PS C:\Users\xxx\src\paris-syndrome-gb> act
[CI/build] 🚀 Start image=ghcr.io/catthehacker/ubuntu:act-latest
[CI/build] 🐳 docker pull image=ghcr.io/catthehacker/ubuntu:act-latest platform= username= forcePull=false
[CI/build] 🐳 docker create image=ghcr.io/catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[CI/build] 🐳 docker run image=ghcr.io/catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[CI/build] 🐳 docker exec cmd=[chown -R 0:0 /mnt/c/Users/xxx/src/paris-syndrome-gb] user=0 workdir=
[CI/build] ☁ git clone 'https://github.com/c-hive/gha-yarn-cache' # ref=v2
[CI/build] ☁ git clone 'https://github.com/Borales/actions-yarn' # ref=v3.0.0
[CI/build] ☁ git clone 'https://github.com/actions/setup-node' # ref=v3
[CI/build] ☁ git clone 'https://github.com/Borales/actions-yarn' # ref=v3.0.0
[CI/build] ☁ git clone 'https://github.com/Borales/actions-yarn' # ref=v3.0.0
[CI/build] ☁ git clone 'https://github.com/KikimoraGames/itch-publish' # ref=v0.0.3
[CI/build] ⭐ Run Main ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ Check out this repo ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️
[CI/build] 🐳 docker cp src=C:\Users\xxx\src\paris-syndrome-gb\. dst=\mnt\c\Users\xxx\src\paris-syndrome-gb
[CI/build] close C:\Users\xxx\AppData\Local\Temp\act3952977024: file already closed
[CI/build] 🐳 docker exec cmd=[chown -R 0:0 \mnt\c\Users\xxx\src\paris-syndrome-gb] user=0 workdir=
[CI/build] ✅ Success - Main ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ Check out this repo ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️
[CI/build] ⭐ Run Main echo $(pwd) && ls -lah && sleep infinity
[CI/build] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/1] user= workdir=
| /mnt/c/Users/xxx/src/paris-syndrome-gb
| total 8.0K
| drwxr-xr-x 2 root root 4.0K Jun 30 17:33 .
| drwxr-xr-x 3 root root 4.0K Jun 30 17:33 ..
```
### Link to GitHub repository
_No response_
### Workflow content
```yml
# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
env:
ITCH_USERNAME: honestpizza
ITCH_GAME_ID: paris-syndrome
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ Check out this repo ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️
uses: actions/checkout@v3
- run:
echo $(pwd) &&
ls -lah &&
sleep infinity
- name: 📦📦📦📦📦📦📦📦 If act install packages 📦📦📦📦📦📦📦📦
if: ${{ env.ACT }}
run: |
apt-get update -y
apt-get install git-core zstd -y
- name: ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ Clone gb-studio ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️
run: |
git clone https://orcutt989:${{ secrets.GH_TOKEN }}@github.com/orcutt989/gb-studio.git
- name: 📂📂📂📂📂📂📂📂 Yarn cache 📂📂📂📂📂📂📂📂
uses: c-hive/gha-yarn-cache@v2
if: ${{ !env.ACT }}
with:
directory: gb-studio
- name: 🧶🧶🧶🧶🧶🧶🧶🧶 GitHub Action for Yarn 🧶🧶🧶🧶🧶🧶🧶🧶
uses: Borales/[email protected]
with:
cmd: --cwd gb-studio install # will run `yarn install` command
# Setup Node
- name: 🛠️🛠️🛠️🛠️🛠️🛠️🛠️🛠️ Setup Node 🛠️🛠️🛠️🛠️🛠️🛠️🛠️🛠️
uses: actions/setup-node@v3
with:
node-version: lts/*
- name: 🏗️🏗️🏗️🏗️🏗️🏗️🏗️🏗️ Build gb-studio 🏗️🏗️🏗️🏗️🏗️🏗️🏗️🏗️
run: |
npm run make:cli
working-directory: gb-studio
- uses: Borales/[email protected]
with:
cmd: set version 1.22.4
- name: 🔗🔗🔗🔗🔗🔗🔗🔗 Link GB Studio CLI binary 🔗🔗🔗🔗🔗🔗🔗🔗
uses: Borales/[email protected]
with:
cmd: --cwd gb-studio link
- name: 📋📋📋📋📋📋📋📋 GB Studio install check 📋📋📋📋📋📋📋📋
run: |
echo "********************************"
sudo chmod a+x out/cli/gb-studio-cli.js
VERSION=$(out/cli/gb-studio-cli.js -V)
echo "🟨🟨🟨🟨🟨🟨🟨 GB-STUDIO-CLI VERSION: $VERSION 🟨🟨🟨🟨🟨🟨🟨🟨"
echo "********************************"
working-directory: gb-studio
- name: 🎮🎮🎮🎮🎮🎮🎮🎮 build game 🎮🎮🎮🎮🎮🎮🎮🎮
run: |
gb-studio/out/cli/gb-studio-cli.js make:web paris-syndrome.gbsproj web/
- name: 🚀🚀🚀🚀🚀🚀🚀🚀 Publish web game to Itch.io 🚀🚀🚀🚀🚀🚀🚀🚀
uses: KikimoraGames/[email protected]
with:
butlerApiKey: ${{secrets.BUTLER_API_KEY}}
gameData: ./web
itchUsername: ${{env.ITCH_USERNAME}}
itchGameId: ${{ env.ITCH_GAME_ID }}
buildChannel: webgl
```
### Relevant log output
```sh
PS C:\Users\xxx\src\paris-syndrome-gb> act -v
time="2022-06-30T13:36:44-04:00" level=debug msg="Loading environment from C:\\Users\\xxx\\src\\paris-syndrome-gb\\.env"
time="2022-06-30T13:36:44-04:00" level=debug msg="Loading secrets from C:\\Users\\xxx\\src\\paris-syndrome-gb\\my.secrets"
time="2022-06-30T13:36:44-04:00" level=debug msg="Loading workflows from 'C:\\Users\\xxx\\src\\paris-syndrome-gb\\.github\\workflows'"
time="2022-06-30T13:36:44-04:00" level=debug msg="Loading workflows recursively"
time="2022-06-30T13:36:44-04:00" level=debug msg="Found workflow 'publish-to-itch.yml' in 'C:\\Users\\xxx\\src\\paris-syndrome-gb\\.github\\workflows\\publish-to-itch.yml'"
time="2022-06-30T13:36:44-04:00" level=debug msg="Reading workflow 'C:\\Users\\xxx\\src\\paris-syndrome-gb\\.github\\workflows\\publish-to-itch.yml'"
time="2022-06-30T13:36:44-04:00" level=debug msg="Planning event: push"
time="2022-06-30T13:36:44-04:00" level=debug msg="Loading slug from git directory 'C:\\Users\\xxx\\src\\paris-syndrome-gb\\.git'"
time="2022-06-30T13:36:44-04:00" level=debug msg="Loading revision from git directory 'C:\\Users\\xxx\\src\\paris-syndrome-gb\\.git'"
time="2022-06-30T13:36:44-04:00" level=debug msg="Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f\n"
time="2022-06-30T13:36:44-04:00" level=debug msg="HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'"
time="2022-06-30T13:36:44-04:00" level=debug msg="using github ref: refs/heads/master"
time="2022-06-30T13:36:44-04:00" level=debug msg="Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f\n"
time="2022-06-30T13:36:44-04:00" level=debug msg="evaluating expression 'true'"
time="2022-06-30T13:36:44-04:00" level=debug msg="expression 'true' evaluated to 'true'"
time="2022-06-30T13:36:44-04:00" level=debug msg="evaluating expression 'honestpizza'"
time="2022-06-30T13:36:44-04:00" level=debug msg="expression 'honestpizza' evaluated to '%!t(<nil>)'"
time="2022-06-30T13:36:44-04:00" level=debug msg="evaluating expression 'paris-syndrome'"
time="2022-06-30T13:36:44-04:00" level=debug msg="expression 'paris-syndrome' evaluated to '%!t(<nil>)'"
[CI/build] [DEBUG] evaluating expression 'success()'
[CI/build] [DEBUG] expression 'success()' evaluated to 'true'
[CI/build] 🚀 Start image=ghcr.io/catthehacker/ubuntu:act-latest
[CI/build] 🐳 docker pull image=ghcr.io/catthehacker/ubuntu:act-latest platform= username= forcePull=false
[CI/build] [DEBUG] 🐳 docker pull ghcr.io/catthehacker/ubuntu:act-latest
[CI/build] [DEBUG] Image exists? true
[CI/build] [DEBUG] 🐳 docker volume rm act-CI-build
[CI/build] [DEBUG] 🐳 docker volume rm act-CI-build-env
[CI/build] 🐳 docker create image=ghcr.io/catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[CI/build] [DEBUG] Created container name=act-CI-build id=e4ae4dd0c729feb37e92e68074641c943997d9305865d249510981a9276fa853 from image ghcr.io/catthehacker/ubuntu:act-latest (platform: )
[CI/build] [DEBUG] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_TEMP=/tmp]
[CI/build] 🐳 docker run image=ghcr.io/catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[CI/build] [DEBUG] Starting container: e4ae4dd0c729feb37e92e68074641c943997d9305865d249510981a9276fa853
[CI/build] [DEBUG] Started container: e4ae4dd0c729feb37e92e68074641c943997d9305865d249510981a9276fa853
[CI/build] 🐳 docker exec cmd=[chown -R 0:0 /mnt/c/Users/xxx/src/paris-syndrome-gb] user=0 workdir=
[CI/build] [DEBUG] Exec command '[chown -R 0:0 /mnt/c/Users/xxx/src/paris-syndrome-gb]'
[CI/build] [DEBUG] Working directory '/mnt/c/Users/xxx/src/paris-syndrome-gb'
[CI/build] [DEBUG] Writing entry to tarball workflow/event.json len:2
[CI/build] [DEBUG] Writing entry to tarball workflow/envs.txt len:0
[CI/build] [DEBUG] Writing entry to tarball workflow/paths.txt len:0
[CI/build] [DEBUG] Extracting content to '/var/run/act/'
[CI/build] [DEBUG] Loading slug from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Loading revision from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'
[CI/build] [DEBUG] using github ref: refs/heads/master
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] Skipping local actions/checkout because workdir was already copied
[CI/build] [DEBUG] skip pre step for '⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ Check out this repo ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️': no action model available
[CI/build] [DEBUG] Loading slug from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Loading revision from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'
[CI/build] [DEBUG] using github ref: refs/heads/master
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] ☁ git clone 'https://github.com/c-hive/gha-yarn-cache' # ref=v2
[CI/build] [DEBUG] cloning https://github.com/c-hive/gha-yarn-cache to C:\Users\xxx\.cache\act/c-hive-gha-yarn-cache@v2
[CI/build] [DEBUG] Cloned https://github.com/c-hive/gha-yarn-cache to C:\Users\xxx\.cache\act/c-hive-gha-yarn-cache@v2
[CI/build] [DEBUG] Checked out v2
[CI/build] [DEBUG] Read action &{Yarn install cache c-hive 1-liner yarn install cache for GitHub Actions map[directory:{Directory containing yarn.lock false .}] map[cache-hit:{A boolean value to indicate an exact match was found for the primary key }] {node12 map[] dist/restore/index.js always() dist/save/index.js success() [] []} { }} from 'Unknown'
[CI/build] [DEBUG] Loading slug from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Loading revision from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'
[CI/build] [DEBUG] using github ref: refs/heads/master
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] Loading slug from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Loading revision from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'
[CI/build] [DEBUG] using github ref: refs/heads/master
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] ☁ git clone 'https://github.com/Borales/actions-yarn' # ref=v3.0.0
[CI/build] [DEBUG] cloning https://github.com/Borales/actions-yarn to C:\Users\xxx\.cache\act/[email protected]
[CI/build] [DEBUG] Cloned https://github.com/Borales/actions-yarn to C:\Users\xxx\.cache\act/[email protected]
[CI/build] [DEBUG] Checked out v3.0.0
[CI/build] [DEBUG] Read action &{GitHub Action for Yarn Wraps the yarn CLI to enable common yarn commands map[auth-token:{NPM_AUTH_TOKEN false } cmd:{Yarn command true } registry-url:{NPM_REGISTRY_URL false }] map[] {docker map[NPM_AUTH_TOKEN:${{ inputs.auth-token }} NPM_REGISTRY_URL:${{ inputs.registry-url }}] always() always() Dockerfile [${{ inputs.cmd }}] []} {blue package}} from 'Unknown'
[CI/build] [DEBUG] Loading slug from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Loading revision from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'
[CI/build] [DEBUG] using github ref: refs/heads/master
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] Loading slug from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Loading revision from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'
[CI/build] [DEBUG] using github ref: refs/heads/master
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] ☁ git clone 'https://github.com/actions/setup-node' # ref=v3
[CI/build] [DEBUG] cloning https://github.com/actions/setup-node to C:\Users\xxx\.cache\act/actions-setup-node@v3
[CI/build] [DEBUG] Cloned https://github.com/actions/setup-node to C:\Users\xxx\.cache\act/actions-setup-node@v3
[CI/build] [DEBUG] Checked out v3
[CI/build] [DEBUG] Read action &{Setup Node.js environment GitHub Setup a Node.js environment by adding problem matchers and optionally downloading and adding it to the PATH. map[always-auth:{Set always-auth in npmrc. false false} architecture:{Target architecture for Node to use. Examples: x86, x64. Will use system architecture by default. false } cache:{Used to specify a package manager for caching in the default directory. Supported values: npm, yarn, pnpm. false } cache-dependency-path:{Used to specify the path to a dependency file: package-lock.json, yarn.lock, etc. Supports wildcards or a list of file names for caching multiple dependencies. false } check-latest:{Set this option if you want the action to check for the latest available version that satisfies the version spec. false false} node-version:{Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0. false } node-version-file:{File containing the version Spec of the version to use. Examples: .nvmrc, .node-version. false } registry-url:{Optional registry to set up for auth. Will set the registry in a project level .npmrc and .yarnrc file, and set up auth to read in from env.NODE_AUTH_TOKEN. false } scope:{Optional scope for authenticating against scoped registries. Will fall back to the repository owner when using the GitHub Packages registry (https://npm.pkg.github.com/). false } token:{Used to pull node distributions from node-versions. Since there's a default, this is typically not supplied by the user. false ${{ github.token }}}] map[cache-hit:{A boolean value to indicate if a cache was hit. }] {node16 map[] dist/setup/index.js always() dist/cache-save/index.js success() [] []} { }} from 'Unknown'
[CI/build] [DEBUG] Loading slug from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Loading revision from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'
[CI/build] [DEBUG] using github ref: refs/heads/master
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] expression '${{ github.token }}' rewritten to 'format('{0}', github.token)'
[CI/build] [DEBUG] evaluating expression 'format('{0}', github.token)'
[CI/build] [DEBUG] expression 'format('{0}', github.token)' evaluated to '%!t(string=***)'
[CI/build] [DEBUG] Loading slug from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Loading revision from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'
[CI/build] [DEBUG] using github ref: refs/heads/master
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] ☁ git clone 'https://github.com/Borales/actions-yarn' # ref=v3.0.0
[CI/build] [DEBUG] cloning https://github.com/Borales/actions-yarn to C:\Users\xxx\.cache\act/[email protected]
[CI/build] [DEBUG] Cloned https://github.com/Borales/actions-yarn to C:\Users\xxx\.cache\act/[email protected]
[CI/build] [DEBUG] Checked out v3.0.0
[CI/build] [DEBUG] Read action &{GitHub Action for Yarn Wraps the yarn CLI to enable common yarn commands map[auth-token:{NPM_AUTH_TOKEN false } cmd:{Yarn command true } registry-url:{NPM_REGISTRY_URL false }] map[] {docker map[NPM_AUTH_TOKEN:${{ inputs.auth-token }} NPM_REGISTRY_URL:${{ inputs.registry-url }}] always() always() Dockerfile [${{ inputs.cmd }}] []} {blue package}} from 'Unknown'
[CI/build] [DEBUG] Loading slug from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Loading revision from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'
[CI/build] [DEBUG] using github ref: refs/heads/master
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] Loading slug from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Loading revision from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'
[CI/build] [DEBUG] using github ref: refs/heads/master
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] ☁ git clone 'https://github.com/Borales/actions-yarn' # ref=v3.0.0
[CI/build] [DEBUG] cloning https://github.com/Borales/actions-yarn to C:\Users\xxx\.cache\act/[email protected]
[CI/build] [DEBUG] Cloned https://github.com/Borales/actions-yarn to C:\Users\xxx\.cache\act/[email protected]
[CI/build] [DEBUG] Checked out v3.0.0
[CI/build] [DEBUG] Read action &{GitHub Action for Yarn Wraps the yarn CLI to enable common yarn commands map[auth-token:{NPM_AUTH_TOKEN false } cmd:{Yarn command true } registry-url:{NPM_REGISTRY_URL false }] map[] {docker map[NPM_AUTH_TOKEN:${{ inputs.auth-token }} NPM_REGISTRY_URL:${{ inputs.registry-url }}] always() always() Dockerfile [${{ inputs.cmd }}] []} {blue package}} from 'Unknown'
[CI/build] [DEBUG] Loading slug from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Loading revision from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'
[CI/build] [DEBUG] using github ref: refs/heads/master
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] Loading slug from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Loading revision from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'
[CI/build] [DEBUG] using github ref: refs/heads/master
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] ☁ git clone 'https://github.com/KikimoraGames/itch-publish' # ref=v0.0.3
[CI/build] [DEBUG] cloning https://github.com/KikimoraGames/itch-publish to C:\Users\xxx\.cache\act/[email protected]
[CI/build] [DEBUG] Cloned https://github.com/KikimoraGames/itch-publish to C:\Users\xxx\.cache\act/[email protected]
[CI/build] [DEBUG] Checked out v0.0.3
[CI/build] [DEBUG] Read action &{Itch.io - Publish KikimoraGames Publish releases to Itch.io map[buildChannel:{Channel name of the game: https://itch.io/docs/butler/pushing.html#channel-names true } buildNumber:{Optional build number, use to supply your own build version instead of using itch's versioning false } buildNumberFile:{Optional build number file path, use to supply your own build version instead of using itch's versioning. The file should contain a single line with the version or build number, in UTF-8 without BOM. false } butlerApiKey:{Butler API Key true } gameData:{Directory or .zip file of the game data. Zip files are slower to upload. true } itchGameId:{Itch.io id of the game. e.g. in finji/overland this would be overland. true } itchUsername:{Itch.io username of the game owner. e.g. in finji/overland this would be finji. true }] map[] {docker map[] always() always() Dockerfile [] []} {red upload-cloud}} from 'Unknown'
[CI/build] [DEBUG] Loading slug from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Loading revision from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'
[CI/build] [DEBUG] using github ref: refs/heads/master
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] expression '${{env.ITCH_USERNAME}}' rewritten to 'format('{0}', env.ITCH_USERNAME)'
[CI/build] [DEBUG] evaluating expression 'format('{0}', env.ITCH_USERNAME)'
[CI/build] [DEBUG] expression 'format('{0}', env.ITCH_USERNAME)' evaluated to '%!t(string=honestpizza)'
[CI/build] [DEBUG] expression '${{ env.ITCH_GAME_ID }}' rewritten to 'format('{0}', env.ITCH_GAME_ID)'
[CI/build] [DEBUG] evaluating expression 'format('{0}', env.ITCH_GAME_ID)'
[CI/build] [DEBUG] expression 'format('{0}', env.ITCH_GAME_ID)' evaluated to '%!t(string=paris-syndrome)'
[CI/build] [DEBUG] expression '${{secrets.BUTLER_API_KEY}}' rewritten to 'format('{0}', secrets.BUTLER_API_KEY)'
[CI/build] [DEBUG] evaluating expression 'format('{0}', secrets.BUTLER_API_KEY)'
[CI/build] [DEBUG] expression 'format('{0}', secrets.BUTLER_API_KEY)' evaluated to '%!t(string=***)'
[CI/build] [DEBUG] Loading slug from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Loading revision from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'
[CI/build] [DEBUG] using github ref: refs/heads/master
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] Skipping local actions/checkout because workdir was already copied
[CI/build] [DEBUG] Loading slug from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Loading revision from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'
[CI/build] [DEBUG] using github ref: refs/heads/master
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] Loading slug from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Loading revision from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'
[CI/build] [DEBUG] using github ref: refs/heads/master
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 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_ENV:/var/run/act/workflow/envs.txt 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:build GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/master GITHUB_REF_NAME:master GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:orcutt989/paris-syndrome-gb GITHUB_REPOSITORY_OWNER:orcutt989 GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:ade85c8271b4d45b3bb3d276e473e8bc5d88a92f GITHUB_TOKEN:*** GITHUB_WORKFLOW:CI GITHUB_WORKSPACE:/mnt/c/Users/xxx/src/paris-syndrome-gb IMAGE_OS:ubuntu20 ITCH_GAME_ID:paris-syndrome ITCH_USERNAME:honestpizza ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/16.15.0/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[CI/build] [DEBUG] Loading slug from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Loading revision from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'
[CI/build] [DEBUG] using github ref: refs/heads/master
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] evaluating expression ''
[CI/build] [DEBUG] expression '' evaluated to 'true'
[CI/build] ⭐ Run Main ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ Check out this repo ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️
[CI/build] [DEBUG] Loading slug from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Loading revision from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'
[CI/build] [DEBUG] using github ref: refs/heads/master
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] Loading slug from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Loading revision from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'
[CI/build] [DEBUG] using github ref: refs/heads/master
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] 🐳 docker cp src=C:\Users\xxx\src\paris-syndrome-gb\. dst=\mnt\c\Users\xxx\src\paris-syndrome-gb
[CI/build] [DEBUG] Writing tarball C:\Users\xxx\AppData\Local\Temp\act3763354995 from C:\Users\xxx\src\paris-syndrome-gb\.
[CI/build] [DEBUG] Stripping prefix:C:\Users\xxx\src\paris-syndrome-gb\ src:C:\Users\xxx\src\paris-syndrome-gb\.
[CI/build] [DEBUG] Extracting content from 'C:\Users\xxx\AppData\Local\Temp\act3763354995' to '\mnt\c\Users\xxx\src\paris-syndrome-gb'
[CI/build] close C:\Users\xxx\AppData\Local\Temp\act3763354995: file already closed
[CI/build] 🐳 docker exec cmd=[chown -R 0:0 \mnt\c\Users\xxx\src\paris-syndrome-gb] user=0 workdir=
[CI/build] [DEBUG] Exec command '[chown -R 0:0 /mnt/c/Users/xxx/src/paris-syndrome-gb]'
[CI/build] [DEBUG] Working directory '/mnt/c/Users/xxx/src/paris-syndrome-gb'
[CI/build] ✅ Success - Main ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ Check out this repo ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️
[CI/build] [DEBUG] Loading slug from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Loading revision from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'
[CI/build] [DEBUG] using github ref: refs/heads/master
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] Loading slug from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Loading revision from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'
[CI/build] [DEBUG] using github ref: refs/heads/master
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner 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_ENV:/var/run/act/workflow/envs.txt 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:build GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/master GITHUB_REF_NAME:master GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:orcutt989/paris-syndrome-gb GITHUB_REPOSITORY_OWNER:orcutt989 GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:ade85c8271b4d45b3bb3d276e473e8bc5d88a92f GITHUB_TOKEN:*** GITHUB_WORKFLOW:CI GITHUB_WORKSPACE:/mnt/c/Users/xxx/src/paris-syndrome-gb IMAGE_OS:ubuntu20 ITCH_GAME_ID:paris-syndrome ITCH_USERNAME:honestpizza ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/16.15.0/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[CI/build] [DEBUG] Loading slug from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Loading revision from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'
[CI/build] [DEBUG] using github ref: refs/heads/master
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] evaluating expression ''
[CI/build] [DEBUG] expression '' evaluated to 'true'
[CI/build] ⭐ Run Main echo $(pwd) && ls -lah && sleep infinity
[CI/build] [DEBUG] Loading slug from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Loading revision from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'
[CI/build] [DEBUG] using github ref: refs/heads/master
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] Loading slug from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Loading revision from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'
[CI/build] [DEBUG] using github ref: refs/heads/master
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] Loading slug from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Loading revision from git directory 'C:\Users\xxx\src\paris-syndrome-gb\.git'
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] HEAD points to 'ade85c8271b4d45b3bb3d276e473e8bc5d88a92f'
[CI/build] [DEBUG] using github ref: refs/heads/master
[CI/build] [DEBUG] Found revision: ade85c8271b4d45b3bb3d276e473e8bc5d88a92f
[CI/build] [DEBUG] Wrote command
echo $(pwd) && ls -lah && sleep infinity
to 'workflow/1'
[CI/build] [DEBUG] Writing entry to tarball workflow/1 len:42
[CI/build] [DEBUG] Extracting content to '/var/run/act'
[CI/build] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/1] user= workdir=
[CI/build] [DEBUG] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/1]'
[CI/build] [DEBUG] Working directory '/mnt/c/Users/xxx/src/paris-syndrome-gb'
| /mnt/c/Users/xxx/src/paris-syndrome-gb
| total 8.0K
| drwxr-xr-x 2 root root 4.0K Jun 30 17:36 .
| drwxr-xr-x 3 root root 4.0K Jun 30 17:36 ..
```
### Additional information
Files are not in `.gitignore`.
I assume I am doing something incorrectly as opposed to this being a bug in full disclosure. 😄 | https://github.com/nektos/act/issues/1236 | https://github.com/nektos/act/pull/1650 | 5a2112a7f8e282fcb75f1c73caa1582811ff4890 | a6c95ef2a771afdc9f83f6750b642491e52f681c | "2022-06-30T17:39:14Z" | go | "2023-03-19T23:56:15Z" |
closed | nektos/act | https://github.com/nektos/act | 1,223 | ["pkg/model/workflow.go", "pkg/model/workflow_test.go", "pkg/runner/testdata/evalmatrix/push.yml"] | act silently stopping | ### Bug report info
```plain text
juliangro@x299-desktop:~/Software/act$ ./act --bug-report
act version: 0.2.26
GOOS: linux
GOARCH: amd64
NumCPU: 12
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
Config files:
/home/juliangro/.actrc:
-P ubuntu-latest=ghcr.io/catthehacker/ubuntu:act-latest
-P ubuntu-20.04=ghcr.io/catthehacker/ubuntu:act-20.04
-P ubuntu-18.04=ghcr.io/catthehacker/ubuntu:act-18.04
Docker Engine:
Engine version: 20.10.14+dfsg1
Engine runtime: runc
Cgroup version: 2
Cgroup driver: systemd
Storage driver: btrfs
Registry URI: https://index.docker.io/v1/
OS: Debian GNU/Linux bookworm/sid
OS type: linux
OS version:
OS arch: x86_64
OS kernel: 5.18.0-1-amd64
OS CPU: 12
OS memory: 31811 MB
Security options:
name=apparmor
name=seccomp,profile=default
name=cgroupns
juliangro@x299-desktop:~/Software/act$
```
### Command used with act
```sh
./act -W /home/juliangro/git/temp/project-athena-docker/.github/workflows/master_docker_build.yml -C /home/juliangro/git/temp/project-athena-docker/ -v --detect-event
```
### Describe issue
Act just silently stops when trying to run my workflow.
As you can see in the debug output it just says "false" without any meaningfull information.
### Link to GitHub repository
_No response_
### Workflow content
```yml
name: Master CI Docker Server Build
on:
push
# push:
# branches:
# - master
env:
BUILD_TYPE: Release
BUILD_NUMBER: ${{ github.run_number }}
CI_BUILD: Github
GIT_COMMIT: ${{ github.sha }}
RELEASE_TYPE: PRODUCTION
RELEASE_NUMBER: ${{ github.run_number }}
STABLE_BUILD: 0
UPLOAD_BUCKET: overte-public
UPLOAD_REGION: fra1
UPLOAD_ENDPOINT: "https://fra1.digitaloceanspaces.com"
# Use Docker BuildKit backend
DOCKER_BUILDKIT: 1
jobs:
build:
strategy:
matrix:
include:
- os: ubuntu-20.04
apt-dependencies: docker.io
# Do not change the names of self-hosted runners without knowing what you are doing, as they correspond to labels that have to be set on the runner.
#~ - os: self-hosted_debian-11_aarch64
#~ build_type: full
#~ apt-dependencies: docker.io
fail-fast: false
runs-on: ${{matrix.os}}
steps:
- name: Report Build Number
shell: bash
run: |
echo "Build number: $BUILD_NUMBER"
- uses: actions/checkout@v1
with:
submodules: false
fetch-depth: 1
- name: Install dependencies
shell: bash
run: |
echo "Updating apt repository index"
sudo apt update || exit 1
echo "Installing apt packages"
sudo apt install -y ${{ matrix.apt-dependencies }} || exit 1
- name: Create Docker environment
shell: bash
run: mkdir build
- name: Start Docker build container
working-directory: ${{runner.workspace}}
run: docker build -f tools/ci-scripts/docker_package/Dockerfile_build .
```
### Relevant log output
```sh
juliangro@x299-desktop:~/Software/act$ ./act -W /home/juliangro/git/temp/project-athena-docker/.github/workflows/master_docker_build.yml -C /home/juliangro/git/temp/project-athena-docker/ -v --detect-event
DEBU[0000] Loading environment from /home/juliangro/git/temp/project-athena-docker/.env
DEBU[0000] Loading secrets from /home/juliangro/git/temp/project-athena-docker/.secrets
DEBU[0000] Loading workflow '/home/juliangro/git/temp/project-athena-docker/.github/workflows/master_docker_build.yml'
DEBU[0000] Reading workflow '/home/juliangro/git/temp/project-athena-docker/.github/workflows/master_docker_build.yml'
DEBU[0000] Using detected workflow event: push
DEBU[0000] Planning event: push
DEBU[0000] Loading slug from git directory '/home/juliangro/git/temp/project-athena-docker/.git'
DEBU[0000] Loading revision from git directory '/home/juliangro/git/temp/project-athena-docker/.git'
DEBU[0000] Found revision: 581aa24a7890d44654e4b84a9cfe3686f63653fd
DEBU[0000] HEAD points to '581aa24a7890d44654e4b84a9cfe3686f63653fd'
DEBU[0000] using github ref: refs/heads/docker_experiment
DEBU[0000] Found revision: 581aa24a7890d44654e4b84a9cfe3686f63653fd
DEBU[0000] Loading slug from git directory '/home/juliangro/git/temp/project-athena-docker/.git'
DEBU[0000] Loading revision from git directory '/home/juliangro/git/temp/project-athena-docker/.git'
DEBU[0000] Found revision: 581aa24a7890d44654e4b84a9cfe3686f63653fd
DEBU[0000] HEAD points to '581aa24a7890d44654e4b84a9cfe3686f63653fd'
DEBU[0000] using github ref: refs/heads/docker_experiment
DEBU[0000] Found revision: 581aa24a7890d44654e4b84a9cfe3686f63653fd
DEBU[0000] false
juliangro@x299-desktop:~/Software/act$
```
### Additional information
_No response_ | https://github.com/nektos/act/issues/1223 | https://github.com/nektos/act/pull/1200 | c3fb6864e86542f5ff1f025bec5eff4f81497c96 | c30bc824b23335f2c99a32578f8d907f0be6647e | "2022-06-19T12:46:36Z" | go | "2022-06-20T22:33:07Z" |
closed | nektos/act | https://github.com/nektos/act | 1,221 | ["pkg/runner/runner.go", "pkg/runner/runner_test.go", "pkg/runner/testdata/evalenv/push.yml"] | Values in env are not interpolated correctly | ### Bug report info
```plain text
$ act --bug-report
act version: HEAD-3415347
GOOS: darwin
GOARCH: arm64
NumCPU: 10
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
Config files:
/Users/grigorii.entin/.actrc:
-P ubuntu-latest=ghcr.io/catthehacker/ubuntu:act-latest
-P ubuntu-22.04=ghcr.io/catthehacker/ubuntu:act-22.04
-P ubuntu-20.04=ghcr.io/catthehacker/ubuntu:act-20.04
-P ubuntu-18.04=ghcr.io/catthehacker/ubuntu:act-18.04
Build info:
Go version: go1.18.3
Module path: command-line-arguments
Main version:
Main path:
Main checksum:
Build settings:
-compiler: gc
-ldflags: -X main.version=HEAD-3415347
CGO_ENABLED: 1
CGO_CFLAGS:
CGO_CPPFLAGS:
CGO_CXXFLAGS:
CGO_LDFLAGS:
GOARCH: arm64
GOOS: darwin
Docker Engine:
Engine version: 20.10.16
Engine runtime: runc
Cgroup version: 2
Cgroup driver: cgroupfs
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Docker Desktop
OS type: linux
OS version:
OS arch: aarch64
OS kernel: 5.10.104-linuxkit
OS CPU: 4
OS memory: 7936 MB
Security options:
name=seccomp,profile=default
name=cgroupns
```
### Command used with act
```sh
act -P ubuntu-latest=ghcr.io/catthehacker/ubuntu:act-latest
```
### Describe issue
1. Act does not interpolate certain formats correctly, in `env:`.
2. There's also an issue when `{{ env.XXX }}` passed as input to composite actions - basically, the env values are interpolated only once (vs recursively) (this is a major one for me).
Please see the test case output for act below, compared to the one from GitHub.
Act:
<img width="1015" alt="Screen Shot 2022-06-17 at 15 11 16" src="https://user-images.githubusercontent.com/803905/174305657-36d0245a-bd73-4579-8948-e9c4ad4b6048.png">
GitHub:
<img width="618" alt="Screen Shot 2022-06-17 at 14 48 23" src="https://user-images.githubusercontent.com/803905/174303929-46423878-aabb-4011-a3dc-aa9fc66fa474.png">
### Link to GitHub repository
https://github.com/grigorye/act-interp-demo
### Workflow content
```yml
on:
push: {}
workflow_dispatch: {}
jobs:
interp:
runs-on: ubuntu-latest
strategy:
matrix:
v1: [ "VALUE1" ]
v2: [ "VALUE2" ]
env:
V1: ${{ matrix.v1 }}
V1_V2: ${{ matrix.v1 }}_${{ matrix.v2 }}
x_V1: x_${{ matrix.v1 }}
x_V1_V2: x_${{ matrix.v1 }}_${{ matrix.v2 }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Dump environment
run: |
echo "V1: $V1"
echo "V1_V2: $V1_V2"
echo "x_V1: $x_V1"
echo "x_V1_V2: $x_V1_V2"
- name: Interpolate in script
run: |
echo "env.V1: ${{ env.V1 }}"
echo "env.V1_V2: ${{ env.V1_V2 }}"
echo "env.x_V1: ${{ env.x_V1 }}"
echo "env.x_V1_V2: ${{ env.x_V1_V2 }}"
- name: Interpolate in composite action
uses: ./.github/actions/composite-action
with:
v1: ${{ env.V1 }}
v1_v2: ${{ env.V1_V2 }}
x_v1: ${{ env.x_V1 }}
x_v1_v2: ${{ env.x_V1_V2 }}
```
### Relevant log output
```sh
$ act -P ubuntu-latest=ghcr.io/catthehacker/ubuntu:act-latest -v
WARN ⚠ You are using Apple M1 chip and you have not specified container architecture, you might encounter issues while running act. If so, try running it with '--container-architecture linux/amd64'. ⚠
DEBU[0000] Loading environment from /Users/grigorii.entin/Workbench/act-interp-demo/.env
DEBU[0000] Loading secrets from /Users/grigorii.entin/Workbench/act-interp-demo/.secrets
DEBU[0000] Loading workflows from '/Users/grigorii.entin/Workbench/act-interp-demo/.github/workflows'
DEBU[0000] Loading workflows recursively
DEBU[0000] Found workflow '.DS_Store' in '/Users/grigorii.entin/Workbench/act-interp-demo/.github/workflows/.DS_Store'
DEBU[0000] Found workflow 'test.yml' in '/Users/grigorii.entin/Workbench/act-interp-demo/.github/workflows/test.yml'
DEBU[0000] Reading workflow '/Users/grigorii.entin/Workbench/act-interp-demo/.github/workflows/test.yml'
DEBU[0000] Planning event: push
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000]
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] evaluating expression '${{ matrix.v1 }}'
DEBU[0000] expression '${{ matrix.v1 }}' evaluated to '%!t(string=VALUE1)'
DEBU[0000] evaluating expression '${{ matrix.v1 }}_${{ matrix.v2 }}'
DEBU[0000] expression '${{ matrix.v1 }}_${{ matrix.v2 }}' evaluated to '%!t(string=VALUE1)'
DEBU[0000] evaluating expression 'x_${{ matrix.v1 }}'
DEBU[0000] expression 'x_${{ matrix.v1 }}' evaluated to '%!t(<nil>)'
DEBU[0000] evaluating expression 'x_${{ matrix.v1 }}_${{ matrix.v2 }}'
DEBU[0000] expression 'x_${{ matrix.v1 }}_${{ matrix.v2 }}' evaluated to '%!t(<nil>)'
DEBU[0000] evaluating expression 'true'
DEBU[0000] expression 'true' evaluated to 'true'
DEBU[0000] evaluating expression 'success()'
DEBU[0000] expression 'success()' evaluated to 'true'
[test.yml/interp] 🚀 Start image=ghcr.io/catthehacker/ubuntu:act-latest
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
[test.yml/interp] 🐳 docker pull image=ghcr.io/catthehacker/ubuntu:act-latest platform= username= forcePull=false
[test.yml/interp] 🐳 docker pull ghcr.io/catthehacker/ubuntu:act-latest
DEBU[0000] Image exists? true
[test.yml/interp] Removed container: 13f2fd5777c080c6e928971071c43f4ef0132c90e60057fbd7272e7fa79514af
[test.yml/interp] 🐳 docker volume rm act-test-yml-interp
[test.yml/interp] 🐳 docker volume rm act-test-yml-interp-env
[test.yml/interp] 🐳 docker create image=ghcr.io/catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[test.yml/interp] Created container name=act-test-yml-interp id=432b365a3dbb9d784ab5971a18ed57108ebbde44553e0d2db46b26532a9b5916 from image ghcr.io/catthehacker/ubuntu:act-latest (platform: )
[test.yml/interp] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_TEMP=/tmp]
[test.yml/interp] 🐳 docker run image=ghcr.io/catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[test.yml/interp] Starting container: 432b365a3dbb9d784ab5971a18ed57108ebbde44553e0d2db46b26532a9b5916
[test.yml/interp] Started container: 432b365a3dbb9d784ab5971a18ed57108ebbde44553e0d2db46b26532a9b5916
[test.yml/interp] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root workdir=
[test.yml/interp] Exec command '[mkdir -m 0777 -p /var/run/act]'
[test.yml/interp] Working directory '/Users/grigorii.entin/Workbench/act-interp-demo'
[test.yml/interp] 🐳 docker cp src=/Users/grigorii.entin/Workbench/act-interp-demo/. dst=/Users/grigorii.entin/Workbench/act-interp-demo
[test.yml/interp] 🐳 docker exec cmd=[mkdir -p /Users/grigorii.entin/Workbench/act-interp-demo] user= workdir=
[test.yml/interp] Exec command '[mkdir -p /Users/grigorii.entin/Workbench/act-interp-demo]'
[test.yml/interp] Working directory '/Users/grigorii.entin/Workbench/act-interp-demo'
DEBU[0000] Writing tarball /var/folders/46/t8ph0gt50vx9_v5ydd53rlsc0000gp/T/act1320867682 from /Users/grigorii.entin/Workbench/act-interp-demo/.
DEBU[0000] Stripping prefix:/Users/grigorii.entin/Workbench/act-interp-demo/ src:/Users/grigorii.entin/Workbench/act-interp-demo/.
[test.yml/interp] Extracting content from '/var/folders/46/t8ph0gt50vx9_v5ydd53rlsc0000gp/T/act1320867682' to '/Users/grigorii.entin/Workbench/act-interp-demo'
[test.yml/interp] close /var/folders/46/t8ph0gt50vx9_v5ydd53rlsc0000gp/T/act1320867682: file already closed
DEBU[0000] Writing entry to tarball workflow/event.json len:2
DEBU[0000] Writing entry to tarball workflow/envs.txt len:0
DEBU[0000] Writing entry to tarball workflow/paths.txt len:0
[test.yml/interp] Extracting content to '/var/run/act/'
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
[test.yml/interp] Skipping local actions/checkout because workdir was already copied
[test.yml/interp] skip pre step for 'Checkout': no action model available
[test.yml/interp] 🧪 Matrix: map[v1:VALUE1 v2:VALUE2]
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
[test.yml/interp] Skipping local actions/checkout because workdir was already copied
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] expression 'x_${{ matrix.v1 }}_${{ matrix.v2 }}' rewritten to 'format('x_{0}_{1}', matrix.v1, matrix.v2)'
DEBU[0000] evaluating expression 'format('x_{0}_{1}', matrix.v1, matrix.v2)'
DEBU[0000] expression 'format('x_{0}_{1}', matrix.v1, matrix.v2)' evaluated to '%!t(string=x_VALUE1_VALUE2)'
DEBU[0000] expression 'x_${{ matrix.v1 }}' rewritten to 'format('x_{0}', matrix.v1)'
DEBU[0000] evaluating expression 'format('x_{0}', matrix.v1)'
DEBU[0000] expression 'format('x_{0}', matrix.v1)' evaluated to '%!t(string=x_VALUE1)'
[test.yml/interp] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 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_ENV:/var/run/act/workflow/envs.txt 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:interp GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/master GITHUB_REF_NAME:master GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:grigorye/act-interp-demo GITHUB_REPOSITORY_OWNER:grigorye GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:aec6e6df6132fe1050d011d083f93817b58b1d4a GITHUB_TOKEN: GITHUB_WORKFLOW:test.yml GITHUB_WORKSPACE:/Users/grigorii.entin/Workbench/act-interp-demo IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/16.15.0/arm64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root V1:VALUE1 V1_V2:VALUE1 x_V1:x_VALUE1 x_V1_V2:x_VALUE1_VALUE2]
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] evaluating expression ''
DEBU[0000] expression '' evaluated to 'true'
[test.yml/interp] ⭐ Run Main Checkout
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
[test.yml/interp] Skipping local actions/checkout because workdir was already copied
[test.yml/interp] ✅ Success - Main Checkout
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] expression 'x_${{ matrix.v1 }}_${{ matrix.v2 }}' rewritten to 'format('x_{0}_{1}', matrix.v1, matrix.v2)'
DEBU[0000] evaluating expression 'format('x_{0}_{1}', matrix.v1, matrix.v2)'
DEBU[0000] expression 'format('x_{0}_{1}', matrix.v1, matrix.v2)' evaluated to '%!t(string=x_VALUE1_VALUE2)'
DEBU[0000] expression 'x_${{ matrix.v1 }}' rewritten to 'format('x_{0}', matrix.v1)'
DEBU[0000] evaluating expression 'format('x_{0}', matrix.v1)'
DEBU[0000] expression 'format('x_{0}', matrix.v1)' evaluated to '%!t(string=x_VALUE1)'
[test.yml/interp] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner 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_ENV:/var/run/act/workflow/envs.txt 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:interp GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/master GITHUB_REF_NAME:master GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:grigorye/act-interp-demo GITHUB_REPOSITORY_OWNER:grigorye GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:aec6e6df6132fe1050d011d083f93817b58b1d4a GITHUB_TOKEN: GITHUB_WORKFLOW:test.yml GITHUB_WORKSPACE:/Users/grigorii.entin/Workbench/act-interp-demo IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/16.15.0/arm64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root V1:VALUE1 V1_V2:VALUE1 x_V1:x_VALUE1 x_V1_V2:x_VALUE1_VALUE2]
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] evaluating expression ''
DEBU[0000] expression '' evaluated to 'true'
[test.yml/interp] ⭐ Run Main Dump environment
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
[test.yml/interp] Wrote command
echo "V1: $V1"
echo "V1_V2: $V1_V2"
echo "x_V1: $x_V1"
echo "x_V1_V2: $x_V1_V2"
to 'workflow/1'
DEBU[0000] Writing entry to tarball workflow/1 len:82
[test.yml/interp] Extracting content to '/var/run/act'
[test.yml/interp] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/1] user= workdir=
[test.yml/interp] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/1]'
[test.yml/interp] Working directory '/Users/grigorii.entin/Workbench/act-interp-demo'
| V1: VALUE1
| V1_V2: VALUE1
| x_V1: x_VALUE1
| x_V1_V2: x_VALUE1_VALUE2
[test.yml/interp] ✅ Success - Main Dump environment
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] expression 'x_${{ matrix.v1 }}_${{ matrix.v2 }}' rewritten to 'format('x_{0}_{1}', matrix.v1, matrix.v2)'
DEBU[0000] evaluating expression 'format('x_{0}_{1}', matrix.v1, matrix.v2)'
DEBU[0000] expression 'format('x_{0}_{1}', matrix.v1, matrix.v2)' evaluated to '%!t(string=x_VALUE1_VALUE2)'
DEBU[0000] expression 'x_${{ matrix.v1 }}' rewritten to 'format('x_{0}', matrix.v1)'
DEBU[0000] evaluating expression 'format('x_{0}', matrix.v1)'
DEBU[0000] expression 'format('x_{0}', matrix.v1)' evaluated to '%!t(string=x_VALUE1)'
[test.yml/interp] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:2 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_ENV:/var/run/act/workflow/envs.txt 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:interp GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/master GITHUB_REF_NAME:master GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:grigorye/act-interp-demo GITHUB_REPOSITORY_OWNER:grigorye GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:aec6e6df6132fe1050d011d083f93817b58b1d4a GITHUB_TOKEN: GITHUB_WORKFLOW:test.yml GITHUB_WORKSPACE:/Users/grigorii.entin/Workbench/act-interp-demo IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/16.15.0/arm64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root V1:VALUE1 V1_V2:VALUE1 x_V1:x_VALUE1 x_V1_V2:x_VALUE1_VALUE2]
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] evaluating expression ''
DEBU[0000] expression '' evaluated to 'true'
[test.yml/interp] ⭐ Run Main Interpolate in script
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] expression 'echo "env.V1: ${{ env.V1 }}"
echo "env.V1_V2: ${{ env.V1_V2 }}"
echo "env.x_V1: ${{ env.x_V1 }}"
echo "env.x_V1_V2: ${{ env.x_V1_V2 }}"
' rewritten to 'format('echo "env.V1: {0}"
echo "env.V1_V2: {1}"
echo "env.x_V1: {2}"
echo "env.x_V1_V2: {3}"
', env.V1, env.V1_V2, env.x_V1, env.x_V1_V2)'
DEBU[0000] evaluating expression 'format('echo "env.V1: {0}"
echo "env.V1_V2: {1}"
echo "env.x_V1: {2}"
echo "env.x_V1_V2: {3}"
', env.V1, env.V1_V2, env.x_V1, env.x_V1_V2)'
DEBU[0000] expression 'format('echo "env.V1: {0}"
echo "env.V1_V2: {1}"
echo "env.x_V1: {2}"
echo "env.x_V1_V2: {3}"
', env.V1, env.V1_V2, env.x_V1, env.x_V1_V2)' evaluated to '%!t(string=echo "env.V1: VALUE1"
echo "env.V1_V2: VALUE1"
echo "env.x_V1: x_VALUE1"
echo "env.x_V1_V2: x_VALUE1_VALUE2"
)'
[test.yml/interp] Wrote command
echo "env.V1: VALUE1"
echo "env.V1_V2: VALUE1"
echo "env.x_V1: x_VALUE1"
echo "env.x_V1_V2: x_VALUE1_VALUE2"
to 'workflow/2'
DEBU[0000] Writing entry to tarball workflow/2 len:111
[test.yml/interp] Extracting content to '/var/run/act'
[test.yml/interp] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/2] user= workdir=
[test.yml/interp] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/2]'
[test.yml/interp] Working directory '/Users/grigorii.entin/Workbench/act-interp-demo'
| env.V1: VALUE1
| env.V1_V2: VALUE1
| env.x_V1: x_VALUE1
| env.x_V1_V2: x_VALUE1_VALUE2
[test.yml/interp] ✅ Success - Main Interpolate in script
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] expression '${{ env.V1_V2 }}' rewritten to 'format('{0}', env.V1_V2)'
DEBU[0000] evaluating expression 'format('{0}', env.V1_V2)'
DEBU[0000] expression 'format('{0}', env.V1_V2)' evaluated to '%!t(string=VALUE1)'
DEBU[0000] expression 'x_${{ matrix.v1 }}' rewritten to 'format('x_{0}', matrix.v1)'
DEBU[0000] evaluating expression 'format('x_{0}', matrix.v1)'
DEBU[0000] expression 'format('x_{0}', matrix.v1)' evaluated to '%!t(string=x_VALUE1)'
DEBU[0000] expression 'x_${{ matrix.v1 }}_${{ matrix.v2 }}' rewritten to 'format('x_{0}_{1}', matrix.v1, matrix.v2)'
DEBU[0000] evaluating expression 'format('x_{0}_{1}', matrix.v1, matrix.v2)'
DEBU[0000] expression 'format('x_{0}_{1}', matrix.v1, matrix.v2)' evaluated to '%!t(string=x_VALUE1_VALUE2)'
DEBU[0000] expression '${{ env.x_V1_V2 }}' rewritten to 'format('{0}', env.x_V1_V2)'
DEBU[0000] evaluating expression 'format('{0}', env.x_V1_V2)'
DEBU[0000] expression 'format('{0}', env.x_V1_V2)' evaluated to '%!t(string=x_VALUE1_VALUE2)'
DEBU[0000] expression '${{ env.V1 }}' rewritten to 'format('{0}', env.V1)'
DEBU[0000] evaluating expression 'format('{0}', env.V1)'
DEBU[0000] expression 'format('{0}', env.V1)' evaluated to '%!t(string=VALUE1)'
DEBU[0000] expression '${{ env.x_V1 }}' rewritten to 'format('{0}', env.x_V1)'
DEBU[0000] evaluating expression 'format('{0}', env.x_V1)'
DEBU[0000] expression 'format('{0}', env.x_V1)' evaluated to '%!t(string=x_VALUE1)'
[test.yml/interp] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 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_ENV:/var/run/act/workflow/envs.txt 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:interp GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/master GITHUB_REF_NAME:master GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:grigorye/act-interp-demo GITHUB_REPOSITORY_OWNER:grigorye GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:aec6e6df6132fe1050d011d083f93817b58b1d4a GITHUB_TOKEN: GITHUB_WORKFLOW:test.yml GITHUB_WORKSPACE:/Users/grigorii.entin/Workbench/act-interp-demo IMAGE_OS:ubuntu20 INPUT_V1:VALUE1 INPUT_V1_V2:VALUE1 INPUT_X_V1:x_VALUE1 INPUT_X_V1_V2:x_VALUE1_VALUE2 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/16.15.0/arm64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root V1:VALUE1 V1_V2:VALUE1 x_V1:x_VALUE1 x_V1_V2:x_VALUE1_VALUE2]
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] evaluating expression ''
DEBU[0000] expression '' evaluated to 'true'
[test.yml/interp] ⭐ Run Main Interpolate in composite action
DEBU[0000] Read action &{X Y map[v1:{. true } v1_v2:{. true } x_v1:{. true } x_v1_v2:{. true }] map[] {composite map[] always() always() [] [{ {0 0 <nil> [] 0 0} Show inputs set +e
echo "inputs.v1: ${{ inputs.v1 }}"
echo "inputs.v1_v2: ${{ inputs.v1_v2 }}"
echo "inputs.x_v1: ${{ inputs.x_v1 }}"
echo "inputs.x_v1_v2: ${{ inputs.x_v1_v2 }}"
bash {0 0 <nil> [] 0 0} map[] false 0}]} { }} from 'Unknown'
DEBU[0000] About to run action &{X Y map[v1:{. true } v1_v2:{. true } x_v1:{. true } x_v1_v2:{. true }] map[] {composite map[] always() always() [] [{ {0 0 <nil> [] 0 0} Show inputs set +e
echo "inputs.v1: ${{ inputs.v1 }}"
echo "inputs.v1_v2: ${{ inputs.v1_v2 }}"
echo "inputs.x_v1: ${{ inputs.x_v1 }}"
echo "inputs.x_v1_v2: ${{ inputs.x_v1_v2 }}"
bash {0 0 <nil> [] 0 0} map[] false 0}]} { }}
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] type=2 actionDir=/Users/grigorii.entin/Workbench/act-interp-demo/.github/actions/composite-action actionPath= workdir=/Users/grigorii.entin/Workbench/act-interp-demo actionCacheDir=/Users/grigorii.entin/.cache/act actionName=./.github/actions/composite-action containerActionDir=/Users/grigorii.entin/Workbench/act-interp-demo/.github/actions/composite-action
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] expression '${{ env.V1 }}' rewritten to 'format('{0}', env.V1)'
DEBU[0000] evaluating expression 'format('{0}', env.V1)'
DEBU[0000] expression 'format('{0}', env.V1)' evaluated to '%!t(string=VALUE1)'
DEBU[0000] expression '${{ env.V1_V2 }}' rewritten to 'format('{0}', env.V1_V2)'
DEBU[0000] evaluating expression 'format('{0}', env.V1_V2)'
DEBU[0000] expression 'format('{0}', env.V1_V2)' evaluated to '%!t(string=VALUE1)'
DEBU[0000] expression '${{ env.x_V1 }}' rewritten to 'format('{0}', env.x_V1)'
DEBU[0000] evaluating expression 'format('{0}', env.x_V1)'
DEBU[0000] expression 'format('{0}', env.x_V1)' evaluated to '%!t(string=x_${{ matrix.v1 }})'
DEBU[0000] expression '${{ env.x_V1_V2 }}' rewritten to 'format('{0}', env.x_V1_V2)'
DEBU[0000] evaluating expression 'format('{0}', env.x_V1_V2)'
DEBU[0000] expression 'format('{0}', env.x_V1_V2)' evaluated to '%!t(string=x_${{ matrix.v1 }}_${{ matrix.v2 }})'
DEBU[0000] expression 'x_${{ matrix.v1 }}' rewritten to 'format('x_{0}', matrix.v1)'
DEBU[0000] evaluating expression 'format('x_{0}', matrix.v1)'
DEBU[0000] expression 'format('x_{0}', matrix.v1)' evaluated to '%!t(string=x_VALUE1)'
DEBU[0000] expression 'x_${{ matrix.v1 }}_${{ matrix.v2 }}' rewritten to 'format('x_{0}_{1}', matrix.v1, matrix.v2)'
DEBU[0000] evaluating expression 'format('x_{0}_{1}', matrix.v1, matrix.v2)'
DEBU[0000] expression 'format('x_{0}_{1}', matrix.v1, matrix.v2)' evaluated to '%!t(string=x_VALUE1_VALUE2)'
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] expression '${{ env.V1 }}' rewritten to 'format('{0}', env.V1)'
DEBU[0000] evaluating expression 'format('{0}', env.V1)'
DEBU[0000] expression 'format('{0}', env.V1)' evaluated to '%!t(string=VALUE1)'
DEBU[0000] expression '${{ env.V1_V2 }}' rewritten to 'format('{0}', env.V1_V2)'
DEBU[0000] evaluating expression 'format('{0}', env.V1_V2)'
DEBU[0000] expression 'format('{0}', env.V1_V2)' evaluated to '%!t(string=VALUE1)'
DEBU[0000] expression '${{ env.x_V1 }}' rewritten to 'format('{0}', env.x_V1)'
DEBU[0000] evaluating expression 'format('{0}', env.x_V1)'
DEBU[0000] expression 'format('{0}', env.x_V1)' evaluated to '%!t(string=x_${{ matrix.v1 }})'
DEBU[0000] expression '${{ env.x_V1_V2 }}' rewritten to 'format('{0}', env.x_V1_V2)'
DEBU[0000] evaluating expression 'format('{0}', env.x_V1_V2)'
DEBU[0000] expression 'format('{0}', env.x_V1_V2)' evaluated to '%!t(string=x_${{ matrix.v1 }}_${{ matrix.v2 }})'
DEBU[0000] expression 'x_${{ matrix.v1 }}_${{ matrix.v2 }}' rewritten to 'format('x_{0}_{1}', matrix.v1, matrix.v2)'
DEBU[0000] evaluating expression 'format('x_{0}_{1}', matrix.v1, matrix.v2)'
DEBU[0000] expression 'format('x_{0}_{1}', matrix.v1, matrix.v2)' evaluated to '%!t(string=x_VALUE1_VALUE2)'
DEBU[0000] expression 'x_${{ matrix.v1 }}' rewritten to 'format('x_{0}', matrix.v1)'
DEBU[0000] evaluating expression 'format('x_{0}', matrix.v1)'
DEBU[0000] expression 'format('x_{0}', matrix.v1)' evaluated to '%!t(string=x_VALUE1)'
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
[test.yml/interp] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_PATH:/Users/grigorii.entin/Workbench/act-interp-demo/.github/actions/composite-action GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:interp GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/master GITHUB_REF_NAME:master GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:grigorye/act-interp-demo GITHUB_REPOSITORY_OWNER:grigorye GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:aec6e6df6132fe1050d011d083f93817b58b1d4a GITHUB_TOKEN: GITHUB_WORKFLOW:test.yml GITHUB_WORKSPACE:/Users/grigorii.entin/Workbench/act-interp-demo IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/16.15.0/arm64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root V1:VALUE1 V1_V2:VALUE1 x_V1:x_VALUE1 x_V1_V2:x_VALUE1_VALUE2]
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] evaluating expression ''
DEBU[0000] expression '' evaluated to 'true'
[test.yml/interp] ⭐ Run Main Show inputs
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] expression 'set +e
echo "inputs.v1: ${{ inputs.v1 }}"
echo "inputs.v1_v2: ${{ inputs.v1_v2 }}"
echo "inputs.x_v1: ${{ inputs.x_v1 }}"
echo "inputs.x_v1_v2: ${{ inputs.x_v1_v2 }}"
' rewritten to 'format('set +e
echo "inputs.v1: {0}"
echo "inputs.v1_v2: {1}"
echo "inputs.x_v1: {2}"
echo "inputs.x_v1_v2: {3}"
', inputs.v1, inputs.v1_v2, inputs.x_v1, inputs.x_v1_v2)'
DEBU[0000] evaluating expression 'format('set +e
echo "inputs.v1: {0}"
echo "inputs.v1_v2: {1}"
echo "inputs.x_v1: {2}"
echo "inputs.x_v1_v2: {3}"
', inputs.v1, inputs.v1_v2, inputs.x_v1, inputs.x_v1_v2)'
DEBU[0000] expression 'format('set +e
echo "inputs.v1: {0}"
echo "inputs.v1_v2: {1}"
echo "inputs.x_v1: {2}"
echo "inputs.x_v1_v2: {3}"
', inputs.v1, inputs.v1_v2, inputs.x_v1, inputs.x_v1_v2)' evaluated to '%!t(string=set +e
echo "inputs.v1: VALUE1"
echo "inputs.v1_v2: VALUE1"
echo "inputs.x_v1: x_${{ matrix.v1 }}"
echo "inputs.x_v1_v2: x_${{ matrix.v1 }}_${{ matrix.v2 }}"
)'
[test.yml/interp] Wrote command
set +e
echo "inputs.v1: VALUE1"
echo "inputs.v1_v2: VALUE1"
echo "inputs.x_v1: x_${{ matrix.v1 }}"
echo "inputs.x_v1_v2: x_${{ matrix.v1 }}_${{ matrix.v2 }}"
to 'workflow/0.sh'
DEBU[0000] Writing entry to tarball workflow/0.sh len:160
[test.yml/interp] Extracting content to '/var/run/act'
[test.yml/interp] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0.sh] user= workdir=
[test.yml/interp] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0.sh]'
[test.yml/interp] Working directory '/Users/grigorii.entin/Workbench/act-interp-demo'
| inputs.v1: VALUE1
| inputs.v1_v2: VALUE1
| /var/run/act/workflow/0.sh: line 5: inputs.x_v1: x_${{ matrix.v1 }}: bad substitution
| /var/run/act/workflow/0.sh: line 6: inputs.x_v1_v2: x_${{ matrix.v1 }}_${{ matrix.v2 }}: bad substitution
[test.yml/interp] ❌ Failure - Main Show inputs
[test.yml/interp] exitcode '1': failure
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
[test.yml/interp] ❌ Failure - Main Interpolate in composite action
[test.yml/interp] exitcode '1': failure
DEBU[0000] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0000] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0001] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0001] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0001] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0001] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0001] using github ref: refs/heads/master
DEBU[0001] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0001] expression '${{ env.V1_V2 }}' rewritten to 'format('{0}', env.V1_V2)'
DEBU[0001] evaluating expression 'format('{0}', env.V1_V2)'
DEBU[0001] expression 'format('{0}', env.V1_V2)' evaluated to '%!t(string=VALUE1)'
DEBU[0001] expression 'x_${{ matrix.v1 }}' rewritten to 'format('x_{0}', matrix.v1)'
DEBU[0001] evaluating expression 'format('x_{0}', matrix.v1)'
DEBU[0001] expression 'format('x_{0}', matrix.v1)' evaluated to '%!t(string=x_VALUE1)'
DEBU[0001] expression 'x_${{ matrix.v1 }}_${{ matrix.v2 }}' rewritten to 'format('x_{0}_{1}', matrix.v1, matrix.v2)'
DEBU[0001] evaluating expression 'format('x_{0}_{1}', matrix.v1, matrix.v2)'
DEBU[0001] expression 'format('x_{0}_{1}', matrix.v1, matrix.v2)' evaluated to '%!t(string=x_VALUE1_VALUE2)'
DEBU[0001] expression '${{ env.x_V1_V2 }}' rewritten to 'format('{0}', env.x_V1_V2)'
DEBU[0001] evaluating expression 'format('{0}', env.x_V1_V2)'
DEBU[0001] expression 'format('{0}', env.x_V1_V2)' evaluated to '%!t(string=x_VALUE1_VALUE2)'
DEBU[0001] expression '${{ env.V1 }}' rewritten to 'format('{0}', env.V1)'
DEBU[0001] evaluating expression 'format('{0}', env.V1)'
DEBU[0001] expression 'format('{0}', env.V1)' evaluated to '%!t(string=VALUE1)'
DEBU[0001] expression '${{ env.x_V1 }}' rewritten to 'format('{0}', env.x_V1)'
DEBU[0001] evaluating expression 'format('{0}', env.x_V1)'
DEBU[0001] expression 'format('{0}', env.x_V1)' evaluated to '%!t(string=x_VALUE1)'
[test.yml/interp] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:post-3 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_ENV:/var/run/act/workflow/envs.txt 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:interp GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/master GITHUB_REF_NAME:master GITHUB_REF_TYPE:branch GITHUB_REPOSITORY:grigorye/act-interp-demo GITHUB_REPOSITORY_OWNER:grigorye GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:aec6e6df6132fe1050d011d083f93817b58b1d4a GITHUB_TOKEN: GITHUB_WORKFLOW:test.yml GITHUB_WORKSPACE:/Users/grigorii.entin/Workbench/act-interp-demo IMAGE_OS:ubuntu20 INPUT_V1:VALUE1 INPUT_V1_V2:VALUE1 INPUT_X_V1:x_VALUE1 INPUT_X_V1_V2:x_VALUE1_VALUE2 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/16.15.0/arm64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root V1:VALUE1 V1_V2:VALUE1 x_V1:x_VALUE1 x_V1_V2:x_VALUE1_VALUE2]
DEBU[0001] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0001] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0001] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0001] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0001] using github ref: refs/heads/master
DEBU[0001] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0001] evaluating expression 'always()'
DEBU[0001] expression 'always()' evaluated to 'true'
[test.yml/interp] ⭐ Run Post Interpolate in composite action
[test.yml/interp] run post step for 'Interpolate in composite action'
DEBU[0001] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0001] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0001] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0001] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0001] using github ref: refs/heads/master
DEBU[0001] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0001] expression '${{ env.x_V1 }}' rewritten to 'format('{0}', env.x_V1)'
DEBU[0001] evaluating expression 'format('{0}', env.x_V1)'
DEBU[0001] expression 'format('{0}', env.x_V1)' evaluated to '%!t(string=x_${{ matrix.v1 }})'
DEBU[0001] expression '${{ env.x_V1_V2 }}' rewritten to 'format('{0}', env.x_V1_V2)'
DEBU[0001] evaluating expression 'format('{0}', env.x_V1_V2)'
DEBU[0001] expression 'format('{0}', env.x_V1_V2)' evaluated to '%!t(string=x_${{ matrix.v1 }}_${{ matrix.v2 }})'
DEBU[0001] expression '${{ env.V1 }}' rewritten to 'format('{0}', env.V1)'
DEBU[0001] evaluating expression 'format('{0}', env.V1)'
DEBU[0001] expression 'format('{0}', env.V1)' evaluated to '%!t(string=VALUE1)'
DEBU[0001] expression '${{ env.V1_V2 }}' rewritten to 'format('{0}', env.V1_V2)'
DEBU[0001] evaluating expression 'format('{0}', env.V1_V2)'
DEBU[0001] expression 'format('{0}', env.V1_V2)' evaluated to '%!t(string=VALUE1)'
DEBU[0001] expression 'x_${{ matrix.v1 }}_${{ matrix.v2 }}' rewritten to 'format('x_{0}_{1}', matrix.v1, matrix.v2)'
DEBU[0001] evaluating expression 'format('x_{0}_{1}', matrix.v1, matrix.v2)'
DEBU[0001] expression 'format('x_{0}_{1}', matrix.v1, matrix.v2)' evaluated to '%!t(string=x_VALUE1_VALUE2)'
DEBU[0001] expression 'x_${{ matrix.v1 }}' rewritten to 'format('x_{0}', matrix.v1)'
DEBU[0001] evaluating expression 'format('x_{0}', matrix.v1)'
DEBU[0001] expression 'format('x_{0}', matrix.v1)' evaluated to '%!t(string=x_VALUE1)'
[test.yml/interp] ✅ Success - Post Interpolate in composite action
[test.yml/interp] skip post step for 'Checkout': no action model available
DEBU[0001] Loading slug from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0001] Loading revision from git directory '/Users/grigorii.entin/Workbench/act-interp-demo/.git'
DEBU[0001] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
DEBU[0001] HEAD points to 'aec6e6df6132fe1050d011d083f93817b58b1d4a'
DEBU[0001] using github ref: refs/heads/master
DEBU[0001] Found revision: aec6e6df6132fe1050d011d083f93817b58b1d4a
Error: Job 'interp' failed
```
### Additional information
Both issues are potentially fixed in #1222 | https://github.com/nektos/act/issues/1221 | https://github.com/nektos/act/pull/1222 | 17dd54d69231884ea561fe2bd0c0e059debd2658 | ddee19b946bca0a168b2b1bcd5887d82557f2eac | "2022-06-17T13:20:57Z" | go | "2022-07-27T19:46:04Z" |
closed | nektos/act | https://github.com/nektos/act | 1,216 | ["pkg/model/workflow.go"] | Parsing of Yaml workflow file fails with valid github action syntax | ### Bug report info
```plain text
act version: 0.2.26
GOOS: darwin
GOARCH: amd64
NumCPU: 16
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
Config files:
/Users/jwhite/.actrc:
-P ubuntu-latest=node:16-buster-slim
-P ubuntu-20.04=node:16-buster-slim
-P ubuntu-18.04=node:16-buster-slim
Docker Engine:
Engine version: 20.10.14
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: x86_64
OS kernel: 5.10.104-linuxkit
OS CPU: 8
OS memory: 9963 MB
Security options:
name=seccomp,profile=default
name=cgroupns
```
### Command used with act
```sh
act -j smoke-test-test -s SDK_KEY=<SOME KEY>
```
### Describe issue
YAML linting of workflow files is too aggressive and doesn't respect valid input
[According to GHA docs, an expression is valid for timeout-minutes](https://docs.github.com/en/actions/learn-github-actions/expressions#example-returning-a-json-object).
### Link to GitHub repository
_No response_
### Workflow content
```yml
name: Smoke test Production
on: workflow_dispatch
jobs:
smoke-test-test:
runs-on: ubuntu-latest
name: Smoke test production
steps:
- name: Checkout GitHub Action Repo
uses: actions/checkout@v3
with:
repository: launchdarkly/gha-flags
path: .github/actions/gha-flags
- name: Evaluate flags
id: flags
uses: ./gha-flags
with:
base-uri: 'https://app.ld.catamorphic.com'
events-uri: 'https://events.ld.catamorphic.com'
stream-uri: 'https://stream.ld.catamorphic.com'
sdk-key: ${{ secrets.LD_SDK_KEY_PROD }}
flag-keys: |
gha-smoke-test-timeout
- name: Checkout
uses: actions/checkout@v3
- name: Cypress run
timeout-minutes: ${{ fromJSON(steps.flags.outputs.gha-smoke-test-timeout) }}
uses: cypress-io/[email protected] # must be locked because of yarn berry issue
with:
# Note: this is used because of cypress yarn berry issue
# https://github.com/cypress-io/github-action/issues/430#issuecomment-1144054512
command: yarn dlx cypress@v9 run --headless --record --tag production,smoke --config baseUrl=https://docs.launchdarkly.com,retries=2 --spec cypress/integration/smoke.test.ts --config-file cypress.json
install-command: yarn install --immutable
build: yarn build-nav-data
config: baseUrl=https://docs.launchdarkly.com,retries=2
wait-on: 'https://docs.launchdarkly.com/home'
env:
CYPRESS_PROJECT_ID: ${{ secrets.CYPRESS_PROJECT_ID }}
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Check Cypress outcome
if: steps.cypress.outcome == 'failure' || steps.cypress.outcome == 'cancelled'
run: exit 1
```
### Relevant log output
```sh
DEBU[0000] Loading environment from /Users/jwhite/code/launchdarkly/git-gatsby/.env
DEBU[0000] Loading secrets from /Users/jwhite/code/launchdarkly/git-gatsby/.secrets
DEBU[0000] Loading workflows from '/Users/jwhite/code/launchdarkly/git-gatsby/.github/workflows'
DEBU[0000] Loading workflows recursively
DEBU[0000] Found workflow 'smoke-test-prod.yml' in '/Users/jwhite/code/launchdarkly/git-gatsby/.github/workflows/smoke-test-prod.yml'
DEBU[0000] Reading workflow '/Users/jwhite/code/launchdarkly/git-gatsby/.github/workflows/smoke-test-prod.yml'
Error: yaml: unmarshal errors:
line 27: cannot unmarshal !!str `${{ fro...` into int64
```
### Additional information
Is there a work-around to disable linting? It's putting me in a position where I need to do testing on github itself. | https://github.com/nektos/act/issues/1216 | https://github.com/nektos/act/pull/1217 | 3415347efcdf6d6d7544c5df7cb33e6db043ff4a | 52f5c4592cbbf2e4dde3b35ad42f4e7475ad52df | "2022-06-14T15:28:53Z" | go | "2022-06-16T20:57:19Z" |
closed | nektos/act | https://github.com/nektos/act | 1,196 | [".github/workflows/checks.yml", ".github/workflows/promote.yml", ".github/workflows/release.yml"] | mkdir: cannot create directory '/var/run/act/actions': Permission denied | ### Bug report info
```plain text
act version: 0.2.26
GOOS: linux
GOARCH: amd64
NumCPU: 12
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
Config files:
/home/oliver/.actrc:
-P ubuntu-latest=ghcr.io/catthehacker/ubuntu:full-latest
-P ubuntu-20.04=ghcr.io/catthehacker/ubuntu:full-20.04
-P ubuntu-18.04=ghcr.io/catthehacker/ubuntu:full-18.04
Docker Engine:
Engine version: 20.10.14
Engine runtime: runc
Cgroup version: 1
Cgroup driver: cgroupfs
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Docker Desktop
OS type: linux
OS version:
OS arch: x86_64
OS kernel: 5.10.102.1-microsoft-standard-WSL2
OS CPU: 12
OS memory: 51336 MB
Security options:
name=seccomp,profile=default
```
```
### Command used with act
```sh
`act`
```
### Describe issue
Running `act` always results in permission related issues.
### Link to GitHub repository
https://github.com/cplee/github-actions-demo
### Workflow content
```yml
name: CI
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- run: npm install
- run: npm test
```
### Relevant log output
```sh
DEBU[0000] Loading environment from /home/oliver/projects/github-actions-demo/.env
DEBU[0000] Loading secrets from /home/oliver/projects/github-actions-demo/.secrets
DEBU[0000] Loading workflows from '/home/oliver/projects/github-actions-demo/.github/workflows'
DEBU[0000] Loading workflows recursively
DEBU[0000] Found workflow 'main.yml' in '/home/oliver/projects/github-actions-demo/.github/workflows/main.yml'
DEBU[0000] Reading workflow '/home/oliver/projects/github-actions-demo/.github/workflows/main.yml'
DEBU[0000] Planning event: push
DEBU[0000] Loading slug from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0000] Loading revision from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0000] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0000] HEAD points to '5c6f585b1f9d8526c8e1672c5f8f00883b895d93'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0000] evaluating expression 'success()'
DEBU[0000] expression 'success()' evaluated to 'true'
[CI/test] 🚀 Start image=ghcr.io/catthehacker/ubuntu:full-latest
DEBU[0000] Loading slug from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0000] Loading revision from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0000] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0000] HEAD points to '5c6f585b1f9d8526c8e1672c5f8f00883b895d93'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
[CI/test] 🐳 docker pull image=ghcr.io/catthehacker/ubuntu:full-latest platform= username= forcePull=false
[CI/test] 🐳 docker pull ghcr.io/catthehacker/ubuntu:full-latest
DEBU[0000] Image exists? true
[CI/test] Removed container: a5fca5b8ea537991705d70434eb420082dfa45ce7bdf538ab4a3cc92c42b42a0
[CI/test] 🐳 docker create image=ghcr.io/catthehacker/ubuntu:full-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[CI/test] Created container name=act-CI-test id=a40236997bcf62e3539f7665d79bd939cffd6f8c57e3bfcdfde6c5489b118050 from image ghcr.io/catthehacker/ubuntu:full-latest (platform: )
[CI/test] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_TEMP=/tmp]
[CI/test] 🐳 docker run image=ghcr.io/catthehacker/ubuntu:full-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[CI/test] Starting container: a40236997bcf62e3539f7665d79bd939cffd6f8c57e3bfcdfde6c5489b118050
[CI/test] Started container: a40236997bcf62e3539f7665d79bd939cffd6f8c57e3bfcdfde6c5489b118050
[CI/test] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root workdir=
[CI/test] Exec command '[mkdir -m 0777 -p /var/run/act]'
[CI/test] Working directory '/home/oliver/projects/github-actions-demo'
[CI/test] 🐳 docker cp src=/home/oliver/projects/github-actions-demo/. dst=/home/oliver/projects/github-actions-demo
[CI/test] 🐳 docker exec cmd=[mkdir -p /home/oliver/projects/github-actions-demo] user= workdir=
[CI/test] Exec command '[mkdir -p /home/oliver/projects/github-actions-demo]'
[CI/test] Working directory '/home/oliver/projects/github-actions-demo'
DEBU[0000] Writing tarball /tmp/act1682557638 from /home/oliver/projects/github-actions-demo/.
DEBU[0000] Stripping prefix:/home/oliver/projects/github-actions-demo/ src:/home/oliver/projects/github-actions-demo/.
[CI/test] Extracting content from '/tmp/act1682557638' to '/home/oliver/projects/github-actions-demo'
DEBU[0000] Writing entry to tarball workflow/event.json len:2
DEBU[0000] Writing entry to tarball workflow/envs.txt len:0
DEBU[0000] Writing entry to tarball workflow/paths.txt len:0
[CI/test] Extracting content to '/var/run/act/'
DEBU[0001] Loading slug from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0001] Loading revision from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0001] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0001] HEAD points to '5c6f585b1f9d8526c8e1672c5f8f00883b895d93'
DEBU[0001] using github ref: refs/heads/master
DEBU[0001] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0001] evaluating expression ''
DEBU[0001] expression '' evaluated to 'true'
DEBU[0001] Loading slug from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0001] Loading revision from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0001] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0001] HEAD points to '5c6f585b1f9d8526c8e1672c5f8f00883b895d93'
DEBU[0001] using github ref: refs/heads/master
DEBU[0001] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0001] Loading slug from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0001] Loading revision from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0001] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0001] HEAD points to '5c6f585b1f9d8526c8e1672c5f8f00883b895d93'
DEBU[0001] using github ref: refs/heads/master
DEBU[0001] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
[CI/test] setupEnv => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:0 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_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/master GITHUB_REPOSITORY:cplee/github-actions-demo GITHUB_REPOSITORY_OWNER:cplee GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:5c6f585b1f9d8526c8e1672c5f8f00883b895d93 GITHUB_TOKEN: GITHUB_WORKFLOW:CI GITHUB_WORKSPACE:/home/oliver/projects/github-actions-demo GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]
[CI/test] ⭐ Run actions/checkout@v2
DEBU[0001] Loading slug from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0001] Loading revision from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0001] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0001] HEAD points to '5c6f585b1f9d8526c8e1672c5f8f00883b895d93'
DEBU[0001] using github ref: refs/heads/master
DEBU[0001] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
[CI/test] Skipping local actions/checkout because workdir was already copied
[CI/test] ✅ Success - actions/checkout@v2
DEBU[0001] Loading slug from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0001] Loading revision from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0001] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0001] HEAD points to '5c6f585b1f9d8526c8e1672c5f8f00883b895d93'
DEBU[0001] using github ref: refs/heads/master
DEBU[0001] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0001] evaluating expression ''
DEBU[0001] expression '' evaluated to 'true'
DEBU[0001] Loading slug from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0001] Loading revision from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0001] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0001] HEAD points to '5c6f585b1f9d8526c8e1672c5f8f00883b895d93'
DEBU[0001] using github ref: refs/heads/master
DEBU[0001] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0001] Loading slug from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0001] Loading revision from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0001] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0001] HEAD points to '5c6f585b1f9d8526c8e1672c5f8f00883b895d93'
DEBU[0001] using github ref: refs/heads/master
DEBU[0001] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
[CI/test] setupEnv => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver 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_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/master GITHUB_REPOSITORY:cplee/github-actions-demo GITHUB_REPOSITORY_OWNER:cplee GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:5c6f585b1f9d8526c8e1672c5f8f00883b895d93 GITHUB_TOKEN: GITHUB_WORKFLOW:CI GITHUB_WORKSPACE:/home/oliver/projects/github-actions-demo GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]
[CI/test] ⭐ Run actions/setup-node@v1
DEBU[0001] Loading slug from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0001] Loading revision from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0001] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0001] HEAD points to '5c6f585b1f9d8526c8e1672c5f8f00883b895d93'
DEBU[0001] using github ref: refs/heads/master
DEBU[0001] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
[CI/test] ☁ git clone 'https://github.com/actions/setup-node' # ref=v1
[CI/test] cloning https://github.com/actions/setup-node to /root/.cache/act/actions-setup-node@v1
[CI/test] Unable to pull refs/heads/v1: non-fast-forward update
[CI/test] Cloned https://github.com/actions/setup-node to /root/.cache/act/actions-setup-node@v1
[CI/test] Checked out v1
DEBU[0001] Read action &{Setup Node.js environment GitHub Setup a Node.js environment and add it to the PATH, additionally providing proxy support map[always-auth:{Set always-auth in npmrc false false} node-version:{Version Spec of the version to use. Examples: 10.x, 10.15.1, >=10.15.0 false 10.x} registry-url:{Optional registry to set up for auth. Will set the registry in a project level .npmrc and .yarnrc file, and set up auth to read in from env.NODE_AUTH_TOKEN false } scope:{Optional scope for authenticating against scoped registries false } version:{Deprecated. Use node-version instead. Will not be supported after October 1, 2019 false }] map[] {node12 map[] dist/index.js [] []} { }} from 'Unknown'
DEBU[0001] Read action &{Setup Node.js environment GitHub Setup a Node.js environment and add it to the PATH, additionally providing proxy support map[always-auth:{Set always-auth in npmrc false false} node-version:{Version Spec of the version to use. Examples: 10.x, 10.15.1, >=10.15.0 false 10.x} registry-url:{Optional registry to set up for auth. Will set the registry in a project level .npmrc and .yarnrc file, and set up auth to read in from env.NODE_AUTH_TOKEN false } scope:{Optional scope for authenticating against scoped registries false } version:{Deprecated. Use node-version instead. Will not be supported after October 1, 2019 false }] map[] {node12 map[] dist/index.js [] []} { }} from 'Unknown'
DEBU[0001] About to run action &{Setup Node.js environment GitHub Setup a Node.js environment and add it to the PATH, additionally providing proxy support map[always-auth:{Set always-auth in npmrc false false} node-version:{Version Spec of the version to use. Examples: 10.x, 10.15.1, >=10.15.0 false 10.x} registry-url:{Optional registry to set up for auth. Will set the registry in a project level .npmrc and .yarnrc file, and set up auth to read in from env.NODE_AUTH_TOKEN false } scope:{Optional scope for authenticating against scoped registries false } version:{Deprecated. Use node-version instead. Will not be supported after October 1, 2019 false }] map[] {node12 map[] dist/index.js [] []} { }}
DEBU[0001] type=3 actionDir=/root/.cache/act/actions-setup-node@v1 actionPath= workdir=/home/oliver/projects/github-actions-demo actionCacheDir=/root/.cache/act actionName=actions-setup-node@v1 containerActionDir=/var/run/act/actions/actions-setup-node@v1
DEBU[0001] Removing /root/.cache/act/actions-setup-node@v1/.gitignore before docker cp
DEBU[0001] /var/run/act/actions/actions-setup-node@v1
[CI/test] 🐳 docker cp src=/root/.cache/act/actions-setup-node@v1/ dst=/var/run/act/actions/actions-setup-node@v1/
[CI/test] 🐳 docker exec cmd=[mkdir -p /var/run/act/actions/actions-setup-node@v1/] user= workdir=
[CI/test] Exec command '[mkdir -p /var/run/act/actions/actions-setup-node@v1/]'
[CI/test] Working directory '/home/oliver/projects/github-actions-demo'
| mkdir: cannot create directory '/var/run/act/actions': Permission denied
[CI/test] ❌ Failure - actions/setup-node@v1
[CI/test] exit with `FAILURE`: 1
DEBU[0002] Loading slug from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0002] Loading revision from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0002] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0002] HEAD points to '5c6f585b1f9d8526c8e1672c5f8f00883b895d93'
DEBU[0002] using github ref: refs/heads/master
DEBU[0002] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0002] evaluating expression ''
DEBU[0002] expression '' evaluated to 'false'
DEBU[0002] Skipping step 'npm install' due to ''
DEBU[0002] Loading slug from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0002] Loading revision from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0002] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0002] HEAD points to '5c6f585b1f9d8526c8e1672c5f8f00883b895d93'
DEBU[0002] using github ref: refs/heads/master
DEBU[0002] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0002] evaluating expression ''
DEBU[0002] expression '' evaluated to 'false'
DEBU[0002] Skipping step 'npm test' due to ''
DEBU[0002] Loading slug from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0002] Loading revision from git directory '/home/oliver/projects/github-actions-demo/.git'
DEBU[0002] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0002] HEAD points to '5c6f585b1f9d8526c8e1672c5f8f00883b895d93'
DEBU[0002] using github ref: refs/heads/master
DEBU[0002] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
Error: Job 'test' failed
```
### Additional information
I'm seeing these issues with the project I want to work on, but this reproduces easily with the demo repository, as shown above. | https://github.com/nektos/act/issues/1196 | https://github.com/nektos/act/pull/1998 | 603b44b585ee35090a13498c7af15f79a8a12a51 | 0dfb06748ebd077c25451e07a55e563d7bdc6b4a | "2022-06-03T12:22:48Z" | go | "2023-12-16T23:47:32Z" |
closed | nektos/act | https://github.com/nektos/act | 1,195 | ["pkg/runner/runner.go", "pkg/runner/runner_test.go", "pkg/runner/testdata/issue-1195/push.yml"] | Unable to use a github environment variables on "env" | ### Bug report info
```plain text
$ act --bug-report
act version: 0.2.26
GOOS: linux
GOARCH: amd64
NumCPU: 20
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
Config files:
/home/aanm/.actrc:
-P ubuntu-latest=ghcr.io/catthehacker/ubuntu:act-latest
-P ubuntu-20.04=ghcr.io/catthehacker/ubuntu:act-20.04
-P ubuntu-18.04=ghcr.io/catthehacker/ubuntu:act-18.04
Docker Engine:
Engine version: 20.10.16
Engine runtime: runc
Cgroup version: 2
Cgroup driver: systemd
Storage driver: btrfs
Registry URI: https://index.docker.io/v1/
OS: Fedora Linux 36 (KDE Plasma)
OS type: linux
OS version: 36
OS arch: x86_64
OS kernel: 5.17.11-300.fc36.x86_64
OS CPU: 20
OS memory: 63977 MB
Security options:
name=seccomp,profile=default
name=cgroupns
```
### Command used with act
```sh
act -W test-act.yaml -v
```
### Describe issue
It looks it's not possible to use a `${{ github.repository_owner }}` in the environment variables as it results on a "bad substitution" error
### Link to GitHub repository
_No response_
### Workflow content
```yml
name: ACT Test
on:
push: {}
env:
variable: "${{ github.repository_owner }}"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: print env.variable
run: |
echo ${{ env.variable }}
```
### Relevant log output
```sh
DEBU[0000] Loading environment from /github.com/nektos/act/.github/workflows/.env
DEBU[0000] Loading secrets from /github.com/nektos/act/.github/workflows/.secrets
DEBU[0000] Loading workflow '/github.com/nektos/act/.github/workflows/test-act.yaml'
DEBU[0000] Reading workflow '/github.com/nektos/act/.github/workflows/test-act.yaml'
DEBU[0000] Planning event: push
DEBU[0000] Loading slug from git directory '/github.com/nektos/act/.git'
DEBU[0000] Loading revision from git directory '/github.com/nektos/act/.git'
DEBU[0000] Found revision: 64387bcf7b92f07b42a4c93f7e4504219af5df2c
DEBU[0000] HEAD points to '64387bcf7b92f07b42a4c93f7e4504219af5df2c'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: 64387bcf7b92f07b42a4c93f7e4504219af5df2c
DEBU[0000] evaluating expression 'success()'
DEBU[0000] expression 'success()' evaluated to 'true'
[ACT Test/test] 🚀 Start image=ghcr.io/catthehacker/ubuntu:act-latest
DEBU[0000] Loading slug from git directory '/github.com/nektos/act/.git'
DEBU[0000] Loading revision from git directory '/github.com/nektos/act/.git'
DEBU[0000] Found revision: 64387bcf7b92f07b42a4c93f7e4504219af5df2c
DEBU[0000] HEAD points to '64387bcf7b92f07b42a4c93f7e4504219af5df2c'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: 64387bcf7b92f07b42a4c93f7e4504219af5df2c
[ACT Test/test] 🐳 docker pull image=ghcr.io/catthehacker/ubuntu:act-latest platform= username= forcePull=false
[ACT Test/test] 🐳 docker pull ghcr.io/catthehacker/ubuntu:act-latest
DEBU[0000] Image exists? true
[ACT Test/test] Removed container: 66546c1e58f693cef2f7f82762bd40dac2650d6b69f8fffcb3d96ec222ca6476
[ACT Test/test] 🐳 docker volume rm act-ACT-Test-test
[ACT Test/test] 🐳 docker create image=ghcr.io/catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[ACT Test/test] Created container name=act-ACT-Test-test id=72788cc8439727ab7dd39169a72c3a1ec5600cedad46b1f22ec6e8300526edeb from image ghcr.io/catthehacker/ubuntu:act-latest (platform: )
[ACT Test/test] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_TEMP=/tmp]
[ACT Test/test] 🐳 docker run image=ghcr.io/catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[ACT Test/test] Starting container: 72788cc8439727ab7dd39169a72c3a1ec5600cedad46b1f22ec6e8300526edeb
[ACT Test/test] Started container: 72788cc8439727ab7dd39169a72c3a1ec5600cedad46b1f22ec6e8300526edeb
[ACT Test/test] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root workdir=
[ACT Test/test] Exec command '[mkdir -m 0777 -p /var/run/act]'
[ACT Test/test] Working directory '/github.com/nektos/act/.github/workflows'
DEBU[0001] Writing entry to tarball workflow/event.json len:2
DEBU[0001] Writing entry to tarball workflow/envs.txt len:0
DEBU[0001] Writing entry to tarball workflow/paths.txt len:0
[ACT Test/test] Extracting content to '/var/run/act/'
DEBU[0001] Loading slug from git directory '/github.com/nektos/act/.git'
DEBU[0001] Loading revision from git directory '/github.com/nektos/act/.git'
DEBU[0001] Found revision: 64387bcf7b92f07b42a4c93f7e4504219af5df2c
DEBU[0001] HEAD points to '64387bcf7b92f07b42a4c93f7e4504219af5df2c'
DEBU[0001] using github ref: refs/heads/master
DEBU[0001] Found revision: 64387bcf7b92f07b42a4c93f7e4504219af5df2c
DEBU[0001] evaluating expression ''
DEBU[0001] expression '' evaluated to 'true'
DEBU[0001] Loading slug from git directory '/github.com/nektos/act/.git'
DEBU[0001] Loading revision from git directory '/github.com/nektos/act/.git'
DEBU[0001] Found revision: 64387bcf7b92f07b42a4c93f7e4504219af5df2c
DEBU[0001] HEAD points to '64387bcf7b92f07b42a4c93f7e4504219af5df2c'
DEBU[0001] using github ref: refs/heads/master
DEBU[0001] Found revision: 64387bcf7b92f07b42a4c93f7e4504219af5df2c
DEBU[0001] Loading slug from git directory '/github.com/nektos/act/.git'
DEBU[0001] Loading revision from git directory '/github.com/nektos/act/.git'
DEBU[0001] Found revision: 64387bcf7b92f07b42a4c93f7e4504219af5df2c
DEBU[0001] HEAD points to '64387bcf7b92f07b42a4c93f7e4504219af5df2c'
DEBU[0001] using github ref: refs/heads/master
DEBU[0001] Found revision: 64387bcf7b92f07b42a4c93f7e4504219af5df2c
DEBU[0001] expression '${{ github.repository_owner }}' rewritten to 'format('{0}', github.repository_owner)'
DEBU[0001] evaluating expression 'format('{0}', github.repository_owner)'
DEBU[0001] expression 'format('{0}', github.repository_owner)' evaluated to '%!t(string=nektos)'
[ACT Test/test] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 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_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/master GITHUB_REPOSITORY:nektos/act GITHUB_REPOSITORY_OWNER:nektos GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:64387bcf7b92f07b42a4c93f7e4504219af5df2c GITHUB_TOKEN: GITHUB_WORKFLOW:ACT Test GITHUB_WORKSPACE:/github.com/nektos/act/.github/workflows IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/16.15.0/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root variable:nektos]
[ACT Test/test] ⭐ Run print env.variable
DEBU[0001] expression 'echo ${{ env.variable }}
' rewritten to 'format('echo {0}
', env.variable)'
DEBU[0001] evaluating expression 'format('echo {0}
', env.variable)'
DEBU[0001] expression 'format('echo {0}
', env.variable)' evaluated to '%!t(string=echo ${{ github.repository_owner }}
)'
DEBU[0001] Wrote command
echo ${{ github.repository_owner }}
to 'workflow/0'
DEBU[0001] Writing entry to tarball workflow/0 len:38
[ACT Test/test] Extracting content to '/var/run/act'
[ACT Test/test] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0] user= workdir=
[ACT Test/test] Exec command '[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0]'
[ACT Test/test] Working directory '/github.com/nektos/act/.github/workflows'
| /var/run/act/workflow/0: line 2: ${{ github.repository_owner }}: bad substitution
[ACT Test/test] ❌ Failure - print env.variable
[ACT Test/test] exit with `FAILURE`: 1
DEBU[0001] Loading slug from git directory '/github.com/nektos/act/.git'
DEBU[0001] Loading revision from git directory '/github.com/nektos/act/.git'
DEBU[0001] Found revision: 64387bcf7b92f07b42a4c93f7e4504219af5df2c
DEBU[0001] HEAD points to '64387bcf7b92f07b42a4c93f7e4504219af5df2c'
DEBU[0001] using github ref: refs/heads/master
DEBU[0001] Found revision: 64387bcf7b92f07b42a4c93f7e4504219af5df2c
Error: Job 'test' failed
```
### Additional information
_No response_ | https://github.com/nektos/act/issues/1195 | https://github.com/nektos/act/pull/1197 | b7d380b3f096e079f2c1ba91a9377752fc4c9751 | bf4aad6ad296822cb0352e21ce3867284eaf1eff | "2022-06-02T16:43:14Z" | go | "2022-06-08T15:25:51Z" |
closed | nektos/act | https://github.com/nektos/act | 1,193 | ["pkg/runner/step_action_local.go", "pkg/runner/step_action_local_test.go", "pkg/runner/step_action_remote.go"] | local actions are read before they become available and fail | ### Bug report info
```plain text
act version: v0.2.27-dev
GOOS: linux
GOARCH: amd64
NumCPU: 2
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
Config files:
Build info:
Go version: go1.18.2
Module path: github.com/nektos/act
Main version: (devel)
Main path: github.com/nektos/act
Main checksum:
Build settings:
-compiler: gc
CGO_ENABLED: 1
CGO_CFLAGS:
CGO_CPPFLAGS:
CGO_CXXFLAGS:
CGO_LDFLAGS:
GOARCH: amd64
GOOS: linux
GOAMD64: v1
Docker Engine:
Engine version: 20.10.16+azure-2
Engine runtime: runc
Cgroup version: 1
Cgroup driver: cgroupfs
Storage driver: overlay2
Registry URI: https://index.docker.io/v1/
OS: Ubuntu 20.04.4 LTS
OS type: linux
OS version: 20.04
OS arch: x86_64
OS kernel: 5.13.0-1025-azure
OS CPU: 2
OS memory: 6946 MB
Security options:
name=apparmor
name=seccomp,profile=default
```
### Command used with act
```sh
go run . -W workflow.yaml -P ubuntu-latest=ghcr.io/catthehacker/ubuntu:act-latest -v
```
### Describe issue
I expect that this workflow doesn't fail, because the local action can also be downloaded with curl, git or other tools.
<details><summary>My actions utility and older act <= 0.2.26 have the following behavior and will download node 18</summary>
```
[.github/workflows/main.yml / test] Running: test
|Evaluate if
|Evaluating: success()
|Evaluating success:
|=> true
|Result: true
|Prepare Job for execution
|Evaluate job name
|Evaluate job continueOnError
|Evaluate job timeoutMinutes
|Evaluate job cancelTimeoutMinutes
|Evaluate runs-on
|Queued Job: test for queue self-hosted,container-host
|Read Job from Queue: test assigned to Runner Name:Agent-8f97d882-7a22-449a-9bae-8f63caef8232 Labels:container-host,self-hosted
|Send Job to Runner: test for queue container-host,self-hosted assigned to Runner Name:Agent-8f97d882-7a22-449a-9bae-8f63caef8232 Labels:container-host,self-hosted
[.github/workflows/main.yml / test] Running: Set up job
|Current runner version: '3.9.0'
|Runner name: 'Agent-8f97d882-7a22-449a-9bae-8f63caef8232'
|Runner group name: 'misc'
|Machine name: 'DESKTOP-3SVG86B'
|Prepare workflow directory
|##[command]C:\Program Files\Docker\Docker\resources\bin\docker.EXE version --format '{{.Server.APIVersion}}'
|'1.41'
|Docker daemon API version: '1.41'
|##[command]C:\Program Files\Docker\Docker\resources\bin\docker.EXE version --format '{{.Client.APIVersion}}'
|'1.41'
|Docker client API version: '1.41'
|Prepare all required actions
|Getting action download info
|Download action repository 'actions/checkout@v3' (SHA:8e8217ae4d025738d3b07eecaffba482d3473ed6)
|Getting action download info
|Download action repository 'actions/checkout@8e8217ae4d025738d3b07eecaffba482d3473ed6' (SHA:8e8217ae4d025738d3b07eecaffba482d3473ed6)
|Download action repository 'actions/checkout@8e8217ae4d025738d3b07eecaffba482d3473ed6v3' (SHA:2541b1294d2704b0964813337f33b291d3f8596b)
[.github/workflows/main.yml / test] Succeeded: Set up job
[.github/workflows/main.yml / test] Running: Initialize containers
|##[group]Checking docker version
|##[command]C:\Program Files\Docker\Docker\resources\bin\docker.EXE version --format '{{.Server.APIVersion}}'
|'1.41'
|Docker daemon API version: '1.41'
|##[command]C:\Program Files\Docker\Docker\resources\bin\docker.EXE version --format '{{.Client.APIVersion}}'
|'1.41'
|Docker client API version: '1.41'
|##[endgroup]
|##[group]Clean up resources from previous jobs
|##[command]C:\Program Files\Docker\Docker\resources\bin\docker.EXE ps --all --quiet --no-trunc --filter "label=dbfb48"
|##[command]C:\Program Files\Docker\Docker\resources\bin\docker.EXE network prune --force --filter "label=dbfb48"
|##[endgroup]
|##[group]Starting job container
|##[command]C:\Program Files\Docker\Docker\resources\bin\docker.EXE pull ubuntu:latest
|latest: Pulling from library/ubuntu
|Digest: sha256:26c68657ccce2cb0a31b330cb0be2b5e108d467f641c62e13ab40cbec258c68d
|Status: Image is up to date for ubuntu:latest
|docker.io/library/ubuntu:latest
|##[command]C:\Program Files\Docker\Docker\resources\bin\docker.EXE inspect --format="{{.Os}}/{{.Architecture}}" ubuntu:latest
|linux/amd64
|##[group]Create local container network
|##[command]C:\Program Files\Docker\Docker\resources\bin\docker.EXE network create --label dbfb48 github_network_b60207e3527e49aab0319a571e7ae1e7
|3290e9b979bf92b9e347592ee40159aa5cbaae1933d4e4e5d812228c076c2edc
|##[endgroup]
|##[command]C:\Program Files\Docker\Docker\resources\bin\docker.EXE create --name 9e0ad873622844c985603e1693595bea_ubuntulatest_e9a813 --label dbfb48 --workdir /__w/Unknown/Unknown --network github_network_b60207e3527e49aab0319a571e7ae1e7 -e "HOME=/github/home" -e GITHUB_ACTIONS=true -e CI=true -v "/var/run/docker.sock":"/var/run/docker.sock" -v "C:\Users\Christopher\AppData\Local\gharun\Agents\Agent-8f97d882-7a22-449a-9bae-8f63caef8232\_work":"/__w" -v "C:\Users\Christopher\AppData\Local\gharun":"/__e" -v "C:\Users\Christopher\AppData\Local\gharun\Agents\Agent-8f97d882-7a22-449a-9bae-8f63caef8232\_work\_temp":"/__w/_temp" -v "C:\Users\Christopher\AppData\Local\gharun\Agents\Agent-8f97d882-7a22-449a-9bae-8f63caef8232\_work\_actions":"/__w/_actions" -v "C:\Users\Christopher\AppData\Local\gharun\tool_cache":"/__t" -v "C:\Users\Christopher\AppData\Local\gharun\Agents\Agent-8f97d882-7a22-449a-9bae-8f63caef8232\_work\_temp\_github_home":"/github/home" -v "C:\Users\Christopher\AppData\Local\gharun\Agents\Agent-8f97...
|7219036e4c6f6d438f8c403814d16801ab74f4af1b2ba6127cce5d39264ddba5
|##[command]C:\Program Files\Docker\Docker\resources\bin\docker.EXE start 7219036e4c6f6d438f8c403814d16801ab74f4af1b2ba6127cce5d39264ddba5
|7219036e4c6f6d438f8c403814d16801ab74f4af1b2ba6127cce5d39264ddba5
|##[command]C:\Program Files\Docker\Docker\resources\bin\docker.EXE ps --all --filter id=7219036e4c6f6d438f8c403814d16801ab74f4af1b2ba6127cce5d39264ddba5 --filter status=running --no-trunc --format "{{.ID}} {{.Status}}"
|7219036e4c6f6d438f8c403814d16801ab74f4af1b2ba6127cce5d39264ddba5 Up Less than a second
|##[command]C:\Program Files\Docker\Docker\resources\bin\docker.EXE inspect --format "{{range .Config.Env}}{{println .}}{{end}}" 7219036e4c6f6d438f8c403814d16801ab74f4af1b2ba6127cce5d39264ddba5
|HOME=/github/home
|GITHUB_ACTIONS=true
|CI=true
|PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
|##[endgroup]
|##[group]Waiting for all services to be ready
|##[endgroup]
[.github/workflows/main.yml / test] Succeeded: Initialize containers
[.github/workflows/main.yml / test] Running: Run actions/checkout@v3
|##[group]Run actions/checkout@v3
|with:
| repository: Unknown/Unknown
| ssh-strict: true
| persist-credentials: true
| clean: true
| fetch-depth: 1
| lfs: false
| submodules: false
|##[endgroup]
|##[group]Run actions/checkout@8e8217ae4d025738d3b07eecaffba482d3473ed6
|with:
| repository: Unknown/Unknown
| ssh-strict: true
| persist-credentials: true
| clean: true
| fetch-depth: 1
| lfs: false
| submodules: false
| checkoutref: v3
|##[endgroup]
|##[command]C:\Program Files\Docker\Docker\resources\bin\docker.EXE exec 7219036e4c6f6d438f8c403814d16801ab74f4af1b2ba6127cce5d39264ddba5 sh -c "cat /etc/*release | grep ^ID"
|Clean folder: /__w/Unknown/Unknown
|Copying Repository to /__w/Unknown/Unknown
[.github/workflows/main.yml / test] Succeeded: Run actions/checkout@v3
[.github/workflows/main.yml / test] Running: Run runs:
|##[group]Run runs:
|runs:
| using: composite
| steps:
| - uses: actions/setup-node@v3
| with:
| node-version: '18'
|shell: cp {0} action.yml
|##[endgroup]
[.github/workflows/main.yml / test] Succeeded: Run runs:
[.github/workflows/main.yml / test] Running: Run /./
|Prepare all required actions
|Getting action download info
|Download action repository 'actions/setup-node@v3' (SHA:17f8bd926464a1afa4c6a11669539e9c1ba77048)
|##[group]Run ./
|##[endgroup]
|##[group]Run actions/setup-node@v3
|with:
| node-version: 18
| always-auth: false
| check-latest: false
|##[endgroup]
|##[command]C:\Program Files\Docker\Docker\resources\bin\docker.EXE exec 7219036e4c6f6d438f8c403814d16801ab74f4af1b2ba6127cce5d39264ddba5 sh -c "cat /etc/*release | grep ^ID"
|Attempting to download 18...
|Acquiring 18.2.0 - x64 from https://github.com/actions/node-versions/releases/download/18.2.0-2343541082/node-18.2.0-linux-x64.tar.gz
...
```
</details>
_I have fixed this issue last year, now it is back in a different shape._
### Link to GitHub repository
_No response_
### Workflow content
```yml
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
runs:
using: composite
steps:
- uses: actions/setup-node@v3
with:
node-version: '18'
shell: cp {0} action.yml
- uses: ./
```
### Relevant log output
```sh
go: downloading github.com/AlecAivazis/survey/v2 v2.3.4
go: downloading github.com/andreaskoch/go-fswatch v1.0.0
go: downloading github.com/joho/godotenv v1.4.0
go: downloading github.com/mitchellh/go-homedir v1.1.0
go: downloading github.com/sabhiram/go-gitignore v0.0.0-20210923224102-525f6e181f06
go: downloading github.com/sirupsen/logrus v1.8.1
go: downloading github.com/spf13/cobra v1.4.0
go: downloading golang.org/x/term v0.0.0-20210927222741-03fcf44c2211
go: downloading github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
go: downloading github.com/julienschmidt/httprouter v1.3.0
go: downloading github.com/ZauberNerd/go-git/v5 v5.4.3-0.20220315170230-29ec1bc1e5db
go: downloading github.com/go-ini/ini v1.66.5
go: downloading github.com/mattn/go-isatty v0.0.14
go: downloading github.com/pkg/errors v0.9.1
go: downloading github.com/Masterminds/semver v1.5.0
go: downloading github.com/docker/cli v20.10.16+incompatible
go: downloading github.com/docker/distribution v2.8.1+incompatible
go: downloading github.com/docker/docker v20.10.16+incompatible
go: downloading github.com/go-git/go-billy/v5 v5.3.1
go: downloading github.com/moby/buildkit v0.10.3
go: downloading github.com/opencontainers/image-spec v1.0.3-0.20211202183452-c5a74bcca799
go: downloading gopkg.in/yaml.v3 v3.0.0-20220512140231-539c8e751b99
go: downloading github.com/opencontainers/selinux v1.10.1
go: downloading github.com/spf13/pflag v1.0.5
go: downloading golang.org/x/sys v0.0.0-20220513210249-45d2b4557a2a
go: downloading github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d
go: downloading golang.org/x/text v0.3.7
go: downloading github.com/ProtonMail/go-crypto v0.0.0-20220404123522-616f957b79ad
go: downloading github.com/imdario/mergo v0.3.12
go: downloading github.com/sergi/go-diff v1.2.0
go: downloading github.com/docker/docker-credential-helpers v0.6.4
go: downloading github.com/opencontainers/go-digest v1.0.0
go: downloading github.com/docker/go-connections v0.4.0
go: downloading github.com/docker/go-units v0.4.0
go: downloading github.com/containerd/containerd v1.6.3-0.20220401172941-5ff8fce1fcc6
go: downloading github.com/rhysd/actionlint v1.6.13
go: downloading github.com/mattn/go-colorable v0.1.12
go: downloading github.com/go-git/gcfg v1.5.0
go: downloading github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99
go: downloading golang.org/x/crypto v0.0.0-20220331220935-ae2d96664a29
go: downloading github.com/emirpasic/gods v1.12.0
go: downloading github.com/opencontainers/runc v1.1.1
go: downloading github.com/moby/sys/mount v0.3.1
go: downloading golang.org/x/net v0.0.0-20220403103023-749bd193bc2b
go: downloading github.com/fatih/color v1.13.0
go: downloading github.com/mattn/go-runewidth v0.0.13
go: downloading github.com/robfig/cron v1.2.0
go: downloading golang.org/x/sync v0.0.0-20220513210516-0976fa681c29
go: downloading gopkg.in/warnings.v0 v0.1.2
go: downloading github.com/kevinburke/ssh_config v1.2.0
go: downloading github.com/xanzy/ssh-agent v0.3.1
go: downloading github.com/gogo/protobuf v1.3.2
go: downloading github.com/moby/sys/mountinfo v0.6.0
go: downloading github.com/rivo/uniseg v0.2.0
time="2022-06-01T12:41:39Z" level=debug msg="Loading environment from /home/runner/work/ghat3/ghat3/.env"
time="2022-06-01T12:41:39Z" level=debug msg="Loading secrets from /home/runner/work/ghat3/ghat3/.secrets"
time="2022-06-01T12:41:39Z" level=debug msg="Loading workflow '/home/runner/work/ghat3/ghat3/workflow.yaml'"
time="2022-06-01T12:41:39Z" level=debug msg="Reading workflow '/home/runner/work/ghat3/ghat3/workflow.yaml'"
time="2022-06-01T12:41:39Z" level=debug msg="Planning event: push"
time="2022-06-01T12:41:39Z" level=debug msg="Loading slug from git directory '/home/runner/work/ghat3/ghat3/.git'"
time="2022-06-01T12:41:39Z" level=debug msg="Loading revision from git directory '/home/runner/work/ghat3/ghat3/.git'"
time="2022-06-01T12:41:39Z" level=debug msg="Found revision: 64387bcf7b92f07b42a4c93f7e4504219af5df2c\n"
time="2022-06-01T12:41:39Z" level=debug msg="HEAD points to '64387bcf7b92f07b42a4c93f7e4504219af5df2c'"
time="2022-06-01T12:41:39Z" level=debug msg="using github ref: refs/heads/master"
time="2022-06-01T12:41:39Z" level=debug msg="Found revision: 64387bcf7b92f07b42a4c93f7e4504219af5df2c\n"
time="2022-06-01T12:41:39Z" level=debug msg="evaluating expression 'success()'"
[workflow.yaml/test] 🚀 Start image=ghcr.io/catthehacker/ubuntu:act-latest
time="2022-06-01T12:41:39Z" level=debug msg="expression 'success()' evaluated to 'true'"
time="2022-06-01T12:41:39Z" level=debug msg="Loading slug from git directory '/home/runner/work/ghat3/ghat3/.git'"
time="2022-06-01T12:41:39Z" level=debug msg="Loading revision from git directory '/home/runner/work/ghat3/ghat3/.git'"
time="2022-06-01T12:41:39Z" level=debug msg="Found revision: 64387bcf7b92f07b42a4c93f7e4504219af5df2c\n"
time="2022-06-01T12:41:39Z" level=debug msg="HEAD points to '64387bcf7b92f07b42a4c93f7e4504219af5df2c'"
time="2022-06-01T12:41:39Z" level=debug msg="using github ref: refs/heads/master"
time="2022-06-01T12:41:39Z" level=debug msg="Found revision: 64387bcf7b92f07b42a4c93f7e4504219af5df2c\n"
[workflow.yaml/test] 🐳 docker pull image=ghcr.io/catthehacker/ubuntu:act-latest platform= username= forcePull=false
[workflow.yaml/test] 🐳 docker pull ghcr.io/catthehacker/ubuntu:act-latest
time="2022-06-01T12:41:39Z" level=debug msg="Image exists? false"
[workflow.yaml/test] pulling image 'ghcr.io/catthehacker/ubuntu:act-latest' ()
[workflow.yaml/test] Pulling from catthehacker/ubuntu :: act-latest
[workflow.yaml/test] Already exists :: d5fd17ec1767
[workflow.yaml/test] Pulling fs layer :: b802a9f71706
[workflow.yaml/test] Pulling fs layer :: da477514e5fd
[workflow.yaml/test] Pulling fs layer :: 03f807692b16
[workflow.yaml/test] Pulling fs layer :: 3940e38805ed
[workflow.yaml/test] Pulling fs layer :: 4f4fb700ef54
[workflow.yaml/test] Pulling fs layer :: 3ab5ef1b911c
[workflow.yaml/test] Pulling fs layer :: 0b43b7bca71d
[workflow.yaml/test] Waiting :: 3ab5ef1b911c
[workflow.yaml/test] Waiting :: 0b43b7bca71d
[workflow.yaml/test] Waiting :: 3940e38805ed
[workflow.yaml/test] Waiting :: 4f4fb700ef54
[workflow.yaml/test] Downloading :: da477514e5fd :: [> ] 36.9kB/3.624MB
[workflow.yaml/test] Downloading :: b802a9f71706 :: [> ] 87.4kB/7.768MB
[workflow.yaml/test] Downloading :: 03f807692b16 :: [> ] 539.8kB/60.73MB
[workflow.yaml/test] Verifying Checksum :: b802a9f71706
[workflow.yaml/test] Download complete :: b802a9f71706
[workflow.yaml/test] Downloading :: da477514e5fd :: [================================> ] 2.358MB/3.624MB
[workflow.yaml/test] Extracting :: b802a9f71706 :: [> ] 98.3kB/7.768MB
[workflow.yaml/test] Downloading :: da477514e5fd :: [==================================================>] 3.624MB/3.624MB
[workflow.yaml/test] Verifying Checksum :: da477514e5fd
[workflow.yaml/test] Download complete :: da477514e5fd
[workflow.yaml/test] Downloading :: 03f807692b16 :: [========> ] 10.24MB/60.73MB
[workflow.yaml/test] Extracting :: b802a9f71706 :: [===========> ] 1.769MB/7.768MB
[workflow.yaml/test] Downloading :: 03f807692b16 :: [===============> ] 18.32MB/60.73MB
[workflow.yaml/test] Extracting :: b802a9f71706 :: [=====================================> ] 5.8MB/7.768MB
[workflow.yaml/test] Downloading :: 03f807692b16 :: [=====================> ] 25.87MB/60.73MB
[workflow.yaml/test] Downloading :: 4f4fb700ef54 :: [==================================================>] 32B/32B
[workflow.yaml/test] Verifying Checksum :: 4f4fb700ef54
[workflow.yaml/test] Download complete :: 4f4fb700ef54
[workflow.yaml/test] Extracting :: b802a9f71706 :: [===========================================> ] 6.685MB/7.768MB
[workflow.yaml/test] Downloading :: 03f807692b16 :: [===========================> ] 33.98MB/60.73MB
[workflow.yaml/test] Downloading :: 3940e38805ed :: [> ] 539.1kB/145.3MB
[workflow.yaml/test] Downloading :: 03f807692b16 :: [==================================> ] 41.55MB/60.73MB
[workflow.yaml/test] Extracting :: b802a9f71706 :: [============================================> ] 6.98MB/7.768MB
[workflow.yaml/test] Downloading :: 3940e38805ed :: [====> ] 11.79MB/145.3MB
[workflow.yaml/test] Downloading :: 03f807692b16 :: [=========================================> ] 50.18MB/60.73MB
[workflow.yaml/test] Extracting :: b802a9f71706 :: [=================================================> ] 7.766MB/7.768MB
[workflow.yaml/test] Extracting :: b802a9f71706 :: [==================================================>] 7.768MB/7.768MB
[workflow.yaml/test] Downloading :: 3940e38805ed :: [========> ] 25.25MB/145.3MB
[workflow.yaml/test] Downloading :: 03f807692b16 :: [===============================================> ] 57.75MB/60.73MB
[workflow.yaml/test] Verifying Checksum :: 03f807692b16
[workflow.yaml/test] Download complete :: 03f807692b16
[workflow.yaml/test] Downloading :: 3ab5ef1b911c :: [=======> ] 1.378kB/9.278kB
[workflow.yaml/test] Downloading :: 3ab5ef1b911c :: [==================================================>] 9.278kB/9.278kB
[workflow.yaml/test] Verifying Checksum :: 3ab5ef1b911c
[workflow.yaml/test] Download complete :: 3ab5ef1b911c
[workflow.yaml/test] Downloading :: 3940e38805ed :: [============> ] 35.44MB/145.3MB
[workflow.yaml/test] Downloading :: 3940e38805ed :: [===============> ] 46.2MB/145.3MB
[workflow.yaml/test] Downloading :: 3940e38805ed :: [==================> ] 54.85MB/145.3MB
[workflow.yaml/test] Downloading :: 3940e38805ed :: [=======================> ] 67.17MB/145.3MB
[workflow.yaml/test] Downloading :: 0b43b7bca71d :: [> ] 539.8kB/150.2MB
[workflow.yaml/test] Downloading :: 3940e38805ed :: [========================> ] 71.47MB/145.3MB
[workflow.yaml/test] Downloading :: 0b43b7bca71d :: [===> ] 9.159MB/150.2MB
[workflow.yaml/test] Downloading :: 3940e38805ed :: [===========================> ] 78.99MB/145.3MB
[workflow.yaml/test] Downloading :: 0b43b7bca71d :: [=====> ] 16.71MB/150.2MB
[workflow.yaml/test] Downloading :: 3940e38805ed :: [=============================> ] 85.42MB/145.3MB
[workflow.yaml/test] Downloading :: 0b43b7bca71d :: [========> ] 24.79MB/150.2MB
[workflow.yaml/test] Downloading :: 3940e38805ed :: [===============================> ] 91.88MB/145.3MB
[workflow.yaml/test] Downloading :: 0b43b7bca71d :: [==========> ] 32.85MB/150.2MB
[workflow.yaml/test] Downloading :: 0b43b7bca71d :: [=============> ] 41.48MB/150.2MB
[workflow.yaml/test] Downloading :: 3940e38805ed :: [==================================> ] 101.1MB/145.3MB
[workflow.yaml/test] Downloading :: 0b43b7bca71d :: [================> ] 49.56MB/150.2MB
[workflow.yaml/test] Downloading :: 3940e38805ed :: [========================================> ] 117.3MB/145.3MB
[workflow.yaml/test] Downloading :: 0b43b7bca71d :: [===================> ] 57.67MB/150.2MB
[workflow.yaml/test] Downloading :: 3940e38805ed :: [=============================================> ] 132.3MB/145.3MB
[workflow.yaml/test] Downloading :: 0b43b7bca71d :: [======================> ] 66.3MB/150.2MB
[workflow.yaml/test] Verifying Checksum :: 3940e38805ed
[workflow.yaml/test] Download complete :: 3940e38805ed
[workflow.yaml/test] Downloading :: 0b43b7bca71d :: [========================> ] 74.89MB/150.2MB
[workflow.yaml/test] Downloading :: 0b43b7bca71d :: [===========================> ] 83.53MB/150.2MB
[workflow.yaml/test] Downloading :: 0b43b7bca71d :: [==============================> ] 92.18MB/150.2MB
[workflow.yaml/test] Downloading :: 0b43b7bca71d :: [=================================> ] 100.8MB/150.2MB
[workflow.yaml/test] Downloading :: 0b43b7bca71d :: [====================================> ] 109.5MB/150.2MB
[workflow.yaml/test] Downloading :: 0b43b7bca71d :: [=======================================> ] 118.1MB/150.2MB
[workflow.yaml/test] Downloading :: 0b43b7bca71d :: [=========================================> ] 125.7MB/150.2MB
[workflow.yaml/test] Downloading :: 0b43b7bca71d :: [============================================> ] 134.8MB/150.2MB
[workflow.yaml/test] Downloading :: 0b43b7bca71d :: [===============================================> ] 143.5MB/150.2MB
[workflow.yaml/test] Verifying Checksum :: 0b43b7bca71d
[workflow.yaml/test] Download complete :: 0b43b7bca71d
[workflow.yaml/test] Pull complete :: b802a9f71706
[workflow.yaml/test] Extracting :: da477514e5fd :: [> ] 65.54kB/3.624MB
[workflow.yaml/test] Extracting :: da477514e5fd :: [============================================> ] 3.211MB/3.624MB
[workflow.yaml/test] Extracting :: da477514e5fd :: [==================================================>] 3.624MB/3.624MB
[workflow.yaml/test] Pull complete :: da477514e5fd
[workflow.yaml/test] Extracting :: 03f807692b16 :: [> ] 557.1kB/60.73MB
[workflow.yaml/test] Extracting :: 03f807692b16 :: [====> ] 5.571MB/60.73MB
[workflow.yaml/test] Extracting :: 03f807692b16 :: [========> ] 10.58MB/60.73MB
[workflow.yaml/test] Extracting :: 03f807692b16 :: [=============> ] 16.71MB/60.73MB
[workflow.yaml/test] Extracting :: 03f807692b16 :: [==================> ] 22.28MB/60.73MB
[workflow.yaml/test] Extracting :: 03f807692b16 :: [====================> ] 24.51MB/60.73MB
[workflow.yaml/test] Extracting :: 03f807692b16 :: [======================> ] 27.3MB/60.73MB
[workflow.yaml/test] Extracting :: 03f807692b16 :: [========================> ] 29.52MB/60.73MB
[workflow.yaml/test] Extracting :: 03f807692b16 :: [=========================> ] 31.2MB/60.73MB
[workflow.yaml/test] Extracting :: 03f807692b16 :: [===========================> ] 32.87MB/60.73MB
[workflow.yaml/test] Extracting :: 03f807692b16 :: [============================> ] 35.09MB/60.73MB
[workflow.yaml/test] Extracting :: 03f807692b16 :: [===============================> ] 37.88MB/60.73MB
[workflow.yaml/test] Extracting :: 03f807692b16 :: [================================> ] 39.55MB/60.73MB
[workflow.yaml/test] Extracting :: 03f807692b16 :: [==================================> ] 41.78MB/60.73MB
[workflow.yaml/test] Extracting :: 03f807692b16 :: [===================================> ] 43.45MB/60.73MB
[workflow.yaml/test] Extracting :: 03f807692b16 :: [======================================> ] 46.24MB/60.73MB
[workflow.yaml/test] Extracting :: 03f807692b16 :: [=========================================> ] 50.69MB/60.73MB
[workflow.yaml/test] Extracting :: 03f807692b16 :: [============================================> ] 53.48MB/60.73MB
[workflow.yaml/test] Extracting :: 03f807692b16 :: [==============================================> ] 56.26MB/60.73MB
[workflow.yaml/test] Extracting :: 03f807692b16 :: [================================================> ] 58.49MB/60.73MB
[workflow.yaml/test] Extracting :: 03f807692b16 :: [=================================================> ] 60.16MB/60.73MB
[workflow.yaml/test] Extracting :: 03f807692b16 :: [==================================================>] 60.73MB/60.73MB
[workflow.yaml/test] Pull complete :: 03f807692b16
[workflow.yaml/test] Extracting :: 3940e38805ed :: [> ] 557.1kB/145.3MB
[workflow.yaml/test] Extracting :: 3940e38805ed :: [=> ] 4.456MB/145.3MB
[workflow.yaml/test] Extracting :: 3940e38805ed :: [==> ] 7.242MB/145.3MB
[workflow.yaml/test] Extracting :: 3940e38805ed :: [==> ] 8.356MB/145.3MB
[workflow.yaml/test] Extracting :: 3940e38805ed :: [===> ] 10.03MB/145.3MB
[workflow.yaml/test] Extracting :: 3940e38805ed :: [===> ] 11.14MB/145.3MB
[workflow.yaml/test] Extracting :: 3940e38805ed :: [====> ] 12.81MB/145.3MB
[workflow.yaml/test] Extracting :: 3940e38805ed :: [====> ] 13.93MB/145.3MB
[workflow.yaml/test] Extracting :: 3940e38805ed :: [======> ] 19.5MB/145.3MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [==============> ] 42.34MB/150.2MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [================> ] 48.46MB/150.2MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [=================> ] 53.48MB/150.2MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [==================> ] 55.15MB/150.2MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [==================> ] 56.26MB/150.2MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [===================> ] 57.38MB/150.2MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [===================> ] 58.49MB/150.2MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [====================> ] 61.83MB/150.2MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [======================> ] 66.29MB/150.2MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [=======================> ] 69.63MB/150.2MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [========================> ] 73.53MB/150.2MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [==========================> ] 79.1MB/150.2MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [============================> ] 86.9MB/150.2MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [==============================> ] 91.91MB/150.2MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [================================> ] 97.48MB/150.2MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [=================================> ] 101.9MB/150.2MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [==================================> ] 104.7MB/150.2MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [====================================> ] 109.2MB/150.2MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [=====================================> ] 113.6MB/150.2MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [=======================================> ] 118.1MB/150.2MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [========================================> ] 122MB/150.2MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [===========================================> ] 129.2MB/150.2MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [==============================================> ] 139.3MB/150.2MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [================================================> ] 144.3MB/150.2MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [=================================================> ] 148.7MB/150.2MB
[workflow.yaml/test] Extracting :: 0b43b7bca71d :: [==================================================>] 150.2MB/150.2MB
[workflow.yaml/test] Pull complete :: 0b43b7bca71d
[workflow.yaml/test] Digest: sha256:ea95d6cee02ac2a23c5a536e84a9e3080eb3fe22371f44f0bb7a0126c62a176d ::
[workflow.yaml/test] Status: Downloaded newer image for ghcr.io/catthehacker/ubuntu:act-latest ::
[workflow.yaml/test] 🐳 docker create image=ghcr.io/catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[workflow.yaml/test] Created container name=act-workflow-yaml-test id=b2acffa0a4fd565be80054cc2909c5f843c5bb23130490647527dbe45f37da37 from image ghcr.io/catthehacker/ubuntu:act-latest (platform: )
[workflow.yaml/test] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_TEMP=/tmp]
[workflow.yaml/test] 🐳 docker run image=ghcr.io/catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[workflow.yaml/test] Starting container: b2acffa0a4fd565be80054cc2909c5f843c5bb23130490647527dbe45f37da37
[workflow.yaml/test] Started container: b2acffa0a4fd565be80054cc2909c5f843c5bb23130490647527dbe45f37da37
[workflow.yaml/test] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root workdir=
[workflow.yaml/test] Exec command '[mkdir -m 0777 -p /var/run/act]'
[workflow.yaml/test] Working directory '/home/runner/work/ghat3/ghat3'
[workflow.yaml/test] 🐳 docker cp src=/home/runner/work/ghat3/ghat3/. dst=/home/runner/work/ghat3/ghat3
[workflow.yaml/test] 🐳 docker exec cmd=[mkdir -p /home/runner/work/ghat3/ghat3] user= workdir=
[workflow.yaml/test] Exec command '[mkdir -p /home/runner/work/ghat3/ghat3]'
[workflow.yaml/test] Working directory '/home/runner/work/ghat3/ghat3'
time="2022-06-01T12:42:02Z" level=debug msg="Writing tarball /tmp/act2463346550 from /home/runner/work/ghat3/ghat3/."
time="2022-06-01T12:42:02Z" level=debug msg="Stripping prefix:/home/runner/work/ghat3/ghat3/ src:/home/runner/work/ghat3/ghat3/."
[workflow.yaml/test] Extracting content from '/tmp/act2463346550' to '/home/runner/work/ghat3/ghat3'
[workflow.yaml/test] close /tmp/act2463346550: file already closed
time="2022-06-01T12:42:02Z" level=debug msg="Writing entry to tarball workflow/event.json len:2"
time="2022-06-01T12:42:02Z" level=debug msg="Writing entry to tarball workflow/envs.txt len:0"
time="2022-06-01T12:42:02Z" level=debug msg="Writing entry to tarball workflow/paths.txt len:0"
[workflow.yaml/test] Extracting content to '/var/run/act/'
time="2022-06-01T12:42:02Z" level=debug msg="Loading slug from git directory '/home/runner/work/ghat3/ghat3/.git'"
time="2022-06-01T12:42:02Z" level=debug msg="Loading revision from git directory '/home/runner/work/ghat3/ghat3/.git'"
time="2022-06-01T12:42:02Z" level=debug msg="Found revision: 64387bcf7b92f07b42a4c93f7e4504219af5df2c\n"
time="2022-06-01T12:42:02Z" level=debug msg="HEAD points to '64387bcf7b92f07b42a4c93f7e4504219af5df2c'"
time="2022-06-01T12:42:02Z" level=debug msg="using github ref: refs/heads/master"
time="2022-06-01T12:42:02Z" level=debug msg="Found revision: 64387bcf7b92f07b42a4c93f7e4504219af5df2c\n"
[workflow.yaml/test] Skipping local actions/checkout because workdir was already copied
[workflow.yaml/test] skip pre step for 'actions/checkout@v3': no action model available
[workflow.yaml/test] skip post step for './'; step was not executed
[workflow.yaml/test] skip post step for 'actions/checkout@v3'; step was not executed
[workflow.yaml/test] Removed container: b2acffa0a4fd565be80054cc2909c5f843c5bb23130490647527dbe45f37da37
[workflow.yaml/test] 🐳 docker volume rm act-workflow-yaml-test-env
time="2022-06-01T12:42:02Z" level=debug msg="Loading slug from git directory '/home/runner/work/ghat3/ghat3/.git'"
time="2022-06-01T12:42:02Z" level=debug msg="Loading revision from git directory '/home/runner/work/ghat3/ghat3/.git'"
time="2022-06-01T12:42:02Z" level=debug msg="Found revision: 64387bcf7b92f07b42a4c93f7e4504219af5df2c\n"
time="2022-06-01T12:42:02Z" level=debug msg="HEAD points to '64387bcf7b92f07b42a4c93f7e4504219af5df2c'"
time="2022-06-01T12:42:02Z" level=debug msg="using github ref: refs/heads/master"
time="2022-06-01T12:42:02Z" level=debug msg="Found revision: 64387bcf7b92f07b42a4c93f7e4504219af5df2c\n"
Error: file does not exist
exit status 1
```
### Additional information
**Release Blocker**: Caused by https://github.com/nektos/act/commit/943a0e6eea2f67783018b9d3bc375a6a7dd65ab3.
I commented about this in the pre step PR: https://github.com/nektos/act/pull/1110#issuecomment-1105635385, also I will avoid rebasing github-act-runner's act fork untill this is resolved. | https://github.com/nektos/act/issues/1193 | https://github.com/nektos/act/pull/1204 | bf4aad6ad296822cb0352e21ce3867284eaf1eff | 8a473943c3dffbbf47c2a2ef8b261e845646fa6e | "2022-06-01T13:05:05Z" | go | "2022-06-08T15:36:08Z" |
closed | nektos/act | https://github.com/nektos/act | 1,182 | ["pkg/model/workflow.go", "pkg/model/workflow_test.go", "pkg/runner/testdata/evalmatrix/push.yml"] | Dynamic matrix with include: does nothing | ### Bug report info
Tested with 0.2.26 and 2.2.27-dev
```
act version: v0.2.27-dev
GOOS: darwin
GOARCH: amd64
NumCPU: 4
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
Config files:
/Users/jayvdb/.actrc:
#-P self-hosted=catthehacker/ubuntu:act-latest
-P self-hosted=ubuntu:jammy
-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
ubuntu-16.04=catthehacker/ubuntu:act-16.04
Build info:
Go version: go1.18.2
Module path: github.com/nektos/act
Main version: (devel)
Main path: github.com/nektos/act
Main checksum:
Build settings:
-compiler: gc
CGO_ENABLED: 1
CGO_CFLAGS:
CGO_CPPFLAGS:
CGO_CXXFLAGS:
CGO_LDFLAGS:
GOARCH: amd64
GOOS: darwin
GOAMD64: v1
vcs: git
vcs.revision: bc0f09b9ea1df599011787f51d296bd793e7cfb5
vcs.time: 2022-05-24T20:49:12Z
vcs.modified: false
Docker Engine:
Engine version: 20.10.13
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: x86_64
OS kernel: 5.10.104-linuxkit
OS CPU: 2
OS memory: 7960 MB
Security options:
name=seccomp,profile=default
name=cgroupns
```
```
act version: 0.2.26
GOOS: darwin
GOARCH: amd64
NumCPU: 4
Docker host: DOCKER_HOST environment variable is unset/empty.
Sockets found:
/var/run/docker.sock
Config files:
/Users/jayvdb/.actrc:
#-P self-hosted=catthehacker/ubuntu:act-latest
-P self-hosted=ubuntu:jammy
-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
ubuntu-16.04=catthehacker/ubuntu:act-16.04
Docker Engine:
Engine version: 20.10.13
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: x86_64
OS kernel: 5.10.104-linuxkit
OS CPU: 2
OS memory: 7960 MB
Security options:
name=seccomp,profile=default
name=cgroupns
```
### Command used with act
```sh
act -j job2
```
### Describe issue
The example is here https://github.community/t/how-to-conditionally-include-exclude-items-in-matrix-eg-based-on-branch/16853/7
`act -j job2` will run `job1` but doesnt run job2.
### Link to GitHub repository
_No response_
### Workflow content
```yml
name: build
on: push
jobs:
job1:
runs-on: ubuntu-latest
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- id: set-matrix
run: echo "::set-output name=matrix::{\"include\":[{\"project\":\"foo\",\"config\":\"Debug\"},{\"project\":\"bar\",\"config\":\"Release\"}]}"
job2:
needs: job1
runs-on: ubuntu-latest
strategy:
matrix: ${{fromJson(needs.job1.outputs.matrix)}}
steps:
- run: build
```
### Relevant log output
```sh
% ~/go/bin/act -j job2
[bug/job1] 🚀 Start image=catthehacker/ubuntu:act-latest
[bug/job1] 🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=false
[bug/job1] 🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[bug/job1] 🐳 docker run image=catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[bug/job1] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root workdir=
[bug/job1] ⭐ Run echo "::set-output name=matrix::{\"include\":[{\"project\":\"foo\",\"config\":\"Debug\"},{\"project\":\"bar\",\"config\":\"Release\"}]}"
[bug/job1] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/set-matrix] user= workdir=
[bug/job1] ⚙ ::set-output:: matrix={"include":[{"project":"foo","config":"Debug"},{"project":"bar","config":"Release"}]}
[bug/job1] ✅ Success - echo "::set-output name=matrix::{\"include\":[{\"project\":\"foo\",\"config\":\"Debug\"},{\"project\":\"bar\",\"config\":\"Release\"}]}"
```
```
### Additional information
_No response_ | https://github.com/nektos/act/issues/1182 | https://github.com/nektos/act/pull/1200 | c3fb6864e86542f5ff1f025bec5eff4f81497c96 | c30bc824b23335f2c99a32578f8d907f0be6647e | "2022-05-26T13:52:01Z" | go | "2022-06-20T22:33:07Z" |
closed | nektos/act | https://github.com/nektos/act | 1,146 | [".github/workflows/release.yml"] | Enhancement: Ability to install act package into Windows OS (via winget for example). | ## Describe feature
It would be great to download and use this package into Windows OS.
Distribute it via winget (official windows package manager) will allow more developers to use act.
In terms of advertisement, it would be great also from the https://formulae.brew.sh/formula/act#default redirect to winget for windows user (as many tutorials about act already redirect directly to brew page).
| https://github.com/nektos/act/issues/1146 | https://github.com/nektos/act/pull/1623 | 8048baf435665cb3293f593a06526dfff1691b54 | 34ab8150bf8b438964b7e52796f2123466e0cf76 | "2022-05-01T17:41:24Z" | go | "2023-02-13T17:59:19Z" |
closed | nektos/act | https://github.com/nektos/act | 1,122 | ["README.md"] | Issue: go install master fails | ## System information
- Operating System: Linux (Pop!OS 21.10)
- Architecture: x64 (64-bit)
- Apple M1: no
- Docker version: 20.10.13
- Docker image used in `act`: n/a - issue happens before `act` can run
- `act` version: master
## Expected behaviour
```
$ go install github.com/nektos/act@master
go: downloading github.com/nektos/act v0.2.27-0.20220411025548-74cda72c2672
go: downloading [dependency] [version]...
$ which act
~/go/bin/act
$
```
## Actual behaviour
```
$ go install github.com/nektos/act@master
go: downloading github.com/nektos/act v0.2.27-0.20220411025548-74cda72c2672
go install: github.com/nektos/act@master (in github.com/nektos/[email protected]):
The go.mod file for the module providing named packages contains one or
more replace directives. It must not contain directives that would cause
it to be interpreted differently than if it were the main module.
$ which act
$
```
## Workflow and/or repository
N/A - install process, not workflow run
## Steps to reproduce
See above in the Expected and Actual behaviour sections.
## `act` output
N/A - install process, not workflow run | https://github.com/nektos/act/issues/1122 | https://github.com/nektos/act/pull/1123 | 25ebaf4e7b507ffc7cabdb2a560348af5bec4ac3 | e15f7a51c6cf3e76cdc8ef8401b87080b7e9f95e | "2022-04-13T07:52:33Z" | go | "2022-04-19T19:51:26Z" |
closed | nektos/act | https://github.com/nektos/act | 1,115 | ["pkg/exprparser/interpreter.go", "pkg/exprparser/interpreter_test.go"] | Issue: act cannot evaluate if-condition (Unable to index on non-slice value: invalid) | ## System information
- Operating System: Windows 10 Pro
- Architecture: x64 (64-bit)
- Apple M1: no
- Docker version: 20.10.13
- Docker image used in `act`: Micro
- `act` version: act version 0.2.26
## Expected behaviour
Test job should be started and if-condition should be parsed.
## Actual behaviour
I tried to run my "test" job with `act -j test` but unfortunately "act" does not understand this "if" condition (which is valid GitHub Actions syntax, see https://github.com/bennycode/demo-repo/commit/e000f425ac12328cb43c1bdf5805944d9a04407a):
```yml
jobs:
test:
runs-on: ${{ matrix.os }}
if: |
contains(github.event.commits[0].message, '[skip ci]') == false &&
contains(github.event.commits[0].message, '[ci skip]') == false
```
**Output:**
> Error in if-expression: "if: contains(github.event.commits[0].message, '[skip ci]') == false &&
contains(github.event.commits[0].message, '[ci skip]') == false
" (Unable to index on non-slice value: invalid)
## Workflow and/or repository
Repository: https://github.com/bennycode/demo-repo
<details>
<summary>workflow</summary>
```none
name: 'Test'
on:
pull_request:
push:
branches: [ 'main' ]
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ 'ubuntu-latest' ]
node-version: [ '16.x' ]
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: 'Checkout repository'
uses: actions/checkout@v3
# Uses specific version of Node.js
- name: 'Use Node.js v${{ matrix.node-version }}'
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
# Runs commands using the runners shell
- name: 'Run tests'
run: |
npm install
npx tsc --noEmit
npm test
```
</details>
## Steps to reproduce
1. Clone https://github.com/bennycode/demo-repo
2. Run `act -j test`
## `act` output
<!--
- Use `act` with `-v`/`--verbose` and paste output from your terminal in code block below
-->
<details>
<summary>Log</summary>
```none
act.exe -j test
Error: ❌ Error in if-expression: "if: contains(github.event.commits[0].message, '[skip ci]') == false &&
contains(github.event.commits[0].message, '[ci skip]') == false
" (Unable to index on non-slice value: invalid)
```
</details>
| https://github.com/nektos/act/issues/1115 | https://github.com/nektos/act/pull/1137 | 3f2469bf5385b90da5f6a5d9922ccf9c9d7274a6 | 93575124d35f7b84860cb8cc553c257e0945d0af | "2022-04-09T08:27:21Z" | go | "2022-04-26T20:14:56Z" |
closed | nektos/act | https://github.com/nektos/act | 1,112 | ["pkg/runner/run_context.go", "pkg/runner/step_action_remote.go"] | Issue: act not checking out in composite actions | <!--
- Make sure you are able to reproduce it on the [latest version](https://github.com/nektos/act/releases)
- Search the existing issues.
- Refer to [README](https://github.com/nektos/act/blob/master/README.md).
-->
## System information
<!--
- Operating System: < Windows | Linux | macOS | etc... >
- Architecture: < x64 (64-bit) | x86 (32-bit) | arm64 (64-bit) | arm (32-bit) | etc... >
- Apple M1: < yes | no >
- Docker version: < output of `docker system info -f "{{.ServerVersion}}"` >
- Docker image used in `act`: < can be omitted if it's included in log >
- `act` version: < output of `act --version`, if you've built `act` yourself, please provide commit hash >
-->
- Operating System: Mac OS X
- Architecture: ARM
- Docker version: 20.10.12
- Docker image used in `act`: custom
- `act` version: latest
## Setup
## Contents of project dir
```text
▶ pwd
▶ ls -1
CODEOWNERS
README.md
foo.yaml
pull-request.json
```
## Workflow file
```yaml
---
name: PR Check values files
on:
pull_request:
branches: [master]
jobs:
pr-tests:
runs-on: example-base
steps:
- name: Run tests against the PR
uses: example-org/private-github-actions/actions/example-project/umbrella-pr-tests@master
```
## yamllint action inside umbrella-pr-tests
Note that I have edited this file in the cache for debugging purposes.
```yaml
# /Users/alex.harvey/.cache/act/example-org-private-github-actions-actions-yaml-lint@master/actions/yaml-lint/action.yml
---
name: "yaml-lint"
author: [email protected]
description: "runs vanilla yamllint on added & changed files"
runs:
using: "composite"
steps:
- name: checkout
uses: actions/checkout@v2
- name: debug
shell: bash
run: |
pwd
ls -al
yamllint foo.yaml
```
## Expected behaviour
<!--
- Describe how whole process should go and finish
-->
It should yamllint the file `foo.yaml`.
## Actual behaviour
<!--
- Describe the issue
-->
```text
▶ act -e pull-request.json -s GITHUB_TOKEN=ghp_xxxx -P example-base=gha-default-runner:latest pull_request -j pr-tests
[PR Check values files/pr-tests] 🚀 Start image=gha-default-runner:latest
[PR Check values files/pr-tests] 🐳 docker pull image=gha-default-runner:latest platform= username= forcePull=false
[PR Check values files/pr-tests] 🐳 docker create image=gha-default-runner:latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[PR Check values files/pr-tests] 🐳 docker run image=gha-default-runner:latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[PR Check values files/pr-tests] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root workdir=
[PR Check values files/pr-tests] ⭐ Run Run tests against the PR
[PR Check values files/pr-tests] ☁ git clone 'https://github.com/example-org/private-github-actions' # ref=master
[PR Check values files/pr-tests] Non-terminating error while running 'git clone': some refs were not updated
[PR Check values files/pr-tests] 🐳 docker cp src=/Users/alex.harvey/.cache/act/example-org-private-github-actions-actions-example-project-umbrella-pr-tests@master/ dst=/var/run/act/actions/example-org-private-github-actions-actions-example-project-umbrella-pr-tests@master/
[PR Check values files/pr-tests] 🐳 docker exec cmd=[mkdir -p /var/run/act/actions/example-org-private-github-actions-actions-example-project-umbrella-pr-tests@master/] user= workdir=
[PR Check values files/pr-tests] ⭐ Run yaml-lint values files
[PR Check values files/pr-tests] ☁ git clone 'https://github.com/example-org/private-github-actions' # ref=master
[PR Check values files/pr-tests] Non-terminating error while running 'git clone': some refs were not updated
[PR Check values files/pr-tests] 🐳 docker cp src=/Users/alex.harvey/.cache/act/example-org-private-github-actions-actions-yaml-lint@master/ dst=/var/run/act/actions/example-org-private-github-actions-actions-yaml-lint@master/
[PR Check values files/pr-tests] 🐳 docker exec cmd=[mkdir -p /var/run/act/actions/example-org-private-github-actions-actions-yaml-lint@master/] user= workdir=
[PR Check values files/pr-tests] ⭐ Run debug
[PR Check values files/pr-tests] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/0-composite-0-composite-0.sh] user= workdir=
| /Users/alex.harvey/git/myproject
| total 8
| drwxr-xr-x 2 root root 4096 Apr 3 09:41 .
| drwxr-xr-x 3 root root 4096 Apr 3 09:41 ..
| [Errno 2] No such file or directory: 'foo.yaml'
[PR Check values files/pr-tests] ❌ Failure - debug
[PR Check values files/pr-tests] exit with `FAILURE`: 255
[PR Check values files/pr-tests] ❌ Failure - yaml-lint values files
[PR Check values files/pr-tests] exit with `FAILURE`: 255
[PR Check values files/pr-tests] ❌ Failure - Run tests against the PR
[PR Check values files/pr-tests] exit with `FAILURE`: 255
Error: Job 'pr-tests' failed
```
| https://github.com/nektos/act/issues/1112 | https://github.com/nektos/act/pull/1198 | 7105919f0cb6101592c5866b099cda6c739160cc | c3fb6864e86542f5ff1f025bec5eff4f81497c96 | "2022-04-06T15:09:12Z" | go | "2022-06-20T22:14:14Z" |
closed | nektos/act | https://github.com/nektos/act | 1,109 | ["pkg/exprparser/interpreter.go", "pkg/exprparser/interpreter_test.go", "pkg/runner/expression_test.go"] | conditional steps incorrectly evaluates conclusion | ```
| {
| "0": {
| "outputs": {},
| "conclusion": "success",
| "outcome": "success"
| },
| "4": {
| "outputs": {},
| "conclusion": "success",
| "outcome": "success"
| },
| "cache": {
| "outputs": {
| "cache-hit": "false"
| },
| "conclusion": "success",
| "outcome": "success"
| },
| "install": {
| "outputs": {},
| "conclusion": "success",
| "outcome": "success"
| },
| "setup": {
| "outputs": {},
| "conclusion": "success",
| "outcome": "success"
| }
| }
[build] ✅ Success - Dump GitHub context
DEBU[0106] Loading slug from git directory '/Users/brian/web/.git'
DEBU[0106] Loading revision from git directory '/Users/brian/web/.git'
DEBU[0106] Found revision: c9ca2d85b3e7ee4ea4efa35cf435916bf616d042
DEBU[0106] HEAD points to 'c9ca2d85b3e7ee4ea4efa35cf435916bf616d042'
DEBU[0106] Found revision: c9ca2d85b3e7ee4ea4efa35cf435916bf616d042
DEBU[0106] evaluating expression 'steps.install.conclusion == 'success''
DEBU[0106] expression 'steps.install.conclusion == 'success'' evaluated to 'false'
DEBU[0106] Skipping step 'Vitest' due to 'steps.install.conclusion == 'success''
```
```
on:
push:
branches: [development, staging]
pull_request:
branches: [development, staging]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Setup Node.js ${{ matrix.node-version }}
id: setup
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Cache dependencies
id: cache
uses: actions/cache@v2
with:
path: ~/.npm
key: node-${{ matrix.node-version }}-npm-${{ hashFiles('package-lock.json') }}
restore-keys: npm-
- name: Install dependencies
id: install
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci --ignore-scripts
- name: Dump GitHub context
env:
GITHUB_CONTEXT: ${{ toJson(steps) }}
run: echo "$GITHUB_CONTEXT"
- name: Vitest
id: test
if: steps.install.outcome == 'success'
run: npm test
continue-on-error: true
- name: Typescript compiler
id: typescript
if: steps.install.outcome == 'success'
run: npm run tsc
continue-on-error: true
```
Expected behavior is that `steps.install.outcome == 'success'` evaluates to true, matching the result from the context log.
| https://github.com/nektos/act/issues/1109 | https://github.com/nektos/act/pull/1136 | 93575124d35f7b84860cb8cc553c257e0945d0af | 77ddc89444d8cca5be47a3c83074dcb992382e68 | "2022-04-06T02:45:21Z" | go | "2022-04-26T20:24:13Z" |
closed | nektos/act | https://github.com/nektos/act | 1,099 | ["cmd/input.go", "cmd/root.go", "pkg/common/git.go", "pkg/common/git_test.go", "pkg/runner/run_context.go", "pkg/runner/runner.go"] | Enhancement: add option to allow specifying git remote | ## Describe feature
e.g. add an option like `--remote upstream` to parse result `git remote get-url upstream` instead of `git remote get-url origin` in setting the GITHUB_REPOSITORY environment variable.
this is a crucial feature for a development flow that uses multiple remotes (like mine)
| https://github.com/nektos/act/issues/1099 | https://github.com/nektos/act/pull/1104 | 9dc17f9144779230ef9c15f512037d046fd15df4 | d4272bd9fe13566ab76e5ad091aedbded74ff4e2 | "2022-04-02T03:12:52Z" | go | "2022-04-04T17:53:08Z" |
closed | nektos/act | https://github.com/nektos/act | 1,071 | ["pkg/exprparser/interpreter.go", "pkg/exprparser/interpreter_test.go"] | Error in if-expression | Thanks very much for this project 🙂
## System information
- Operating System: macOS
- Architecture: x64 (64-bit)
- Apple M1: no
- Docker version: 20.10.12
- `act` version: 0.2.26
## Expected behaviour
I have been running this element of a pipeline fine with `0.2.25` last night. I've just updated and I'm getting errors now around the if statement. So I would expect that this would continue to work and it works on GitHub, see here for [reproducible ](https://github.com/jonny7/act-example/runs/5659657478?check_suite_focus=true)
## Actual behaviour
Calling
```yaml
if: contains(github.event.pull_request.labels.*.name, 'skip-ci')
```
fails with
```
❌ Error in if-expression: "if: contains(github.event.pull_request.labels.*.name, 'skip-ci')" (Unable to dereference 'name' on non-struct 'invalid')
```
## Workflow and/or repository
[Repo](https://github.com/jonny7/act-example) has a working example that works on GH and did on 0.2.25 of act. The relevant workflow is this
```yaml
on:
pull_request
jobs:
skip-pipeline:
runs-on: ubuntu-latest
outputs:
skip: ${{ steps.set-skip.outputs.skip || false }}
steps:
- name: Set skip output var
id: set-skip
if: contains(github.event.pull_request.labels.*.name, 'skip-ci')
run: echo "::set-output name=skip::true"
```
## Steps to reproduce
The pipeline I'm using it with was based on `pull_request`, so `act pull_request`.
## `act` output
```
DEBU[0000] evaluating expression 'contains(github.event.pull_request.labels.*.name, 'skip-ci')'
DEBU[0000] expression 'contains(github.event.pull_request.labels.*.name, 'skip-ci')' evaluated to '%!t(<nil>)'
[Integration Testing/skip-pipeline] ❌ Error in if-expression: "if: contains(github.event.pull_request.labels.*.name, 'skip-ci')" (Unable to dereference 'name' on non-struct 'invalid')
```
| https://github.com/nektos/act/issues/1071 | https://github.com/nektos/act/pull/1137 | 3f2469bf5385b90da5f6a5d9922ccf9c9d7274a6 | 93575124d35f7b84860cb8cc553c257e0945d0af | "2022-03-23T12:02:01Z" | go | "2022-04-26T20:14:56Z" |
closed | nektos/act | https://github.com/nektos/act | 1,021 | ["README.md", "cmd/input.go", "cmd/root.go", "pkg/runner/runner.go", "pkg/runner/runner_test.go", "pkg/runner/testdata/input-from-cli/input.yml"] | Enhancement: A flag for providing inputs | Would be great if I could say `--input name=value` instead of having to create a file as per https://github.com/nektos/act/issues/332.
I am using GitHub Actions for tasks like "deploy a certain branch to staging", etc, and nearly all my actions currently require inputs. (While, on the other hand, I don't have any `on: push` actions.) | https://github.com/nektos/act/issues/1021 | https://github.com/nektos/act/pull/1524 | b2fb9e64ac1b263088003b94963b36b6edeaba31 | 767e6a8696e252e2524d1f29aff86e8d52abd937 | "2022-03-01T10:38:51Z" | go | "2023-01-13T19:28:17Z" |
closed | nektos/act | https://github.com/nektos/act | 1,002 | ["pkg/container/docker_run.go", "pkg/container/file_collector.go", "pkg/container/file_collector_test.go"] | Issue: cp: cannot stat 'js/config.dist.ts': No such file or directory | ## System information
- Operating System: Arch Linux
- Architecture:x64 (64-bit)
- Apple M1: no
- Docker version: 20.10.12
- `act` version: 0.2.25
## Expected behaviour
The workflow, which works on GitHub actions, should work locally with act.
## Actual behaviour
It throws an error `cp: cannot stat 'js/config.dist.ts': No such file or directory`.
However that file exists at `repo/js/config.dist.ts`.
## Workflow and/or repository
<https://raw.githubusercontent.com/snikproject/snik-graph/da80e8c2ab07a5bf68fb0575706ef4ad5d23a27a/.github/workflows/build.yml>
<details>
<summary>workflow</summary>
```yml
name: build
on:
workflow_dispatch:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/setup-node@v2
- name: Cache node modules
uses: actions/cache@v2
with:
path: ~/node_modules
key: cache-${{ hashFiles('**/package-lock.json') }}
- name: Install
run: |
cp js/config.dist.ts js/config.ts
npm install --ignore-scripts --production --no-audit
- name: Test
run: |
npm run test
- name: Build
run: |
npm run build
sed -i "s|/assets|./assets|" dist/index.html
cp -r html dist
cp -r img dist
- name: Doc
run: |
npm run doc
cp -r doc dist
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: dist
```
</details>
## Steps to reproduce
1. `git clone [email protected]:snikproject/snik-graph.git`
2. Enter cloned repo directory
3. git checkout 6029745341016d37a87a68c82e2bd48262364ad6
4. Run `act .github/workflows/build.yml -j build`
## The act log is in the comment because of a GitHub content length error | https://github.com/nektos/act/issues/1002 | https://github.com/nektos/act/pull/1074 | e0044ba913149be76acd64ca7d1a66f27532f4c7 | c27e079407647e0ab455f068061b5e61e31f670f | "2022-02-16T12:22:35Z" | go | "2022-04-04T15:27:00Z" |
closed | nektos/act | https://github.com/nektos/act | 992 | ["README.md"] | Enhancement: Added support for Fedora | At this moment it's not possible to install act into fedora using the fedora official mirrors or even copr.
Since act is targeting Debian and Arch, i think that it will be a nice improvement to include Fedora too. | https://github.com/nektos/act/issues/992 | https://github.com/nektos/act/pull/993 | 9abc87b41634cab2ad9325287fbed9135c2664c4 | 331afe170abb9143bb0e9573a30ce5b75733315b | "2022-02-11T18:26:23Z" | go | "2022-02-11T20:17:38Z" |
closed | nektos/act | https://github.com/nektos/act | 985 | ["cmd/root.go"] | While attempting to pull image, Act throws: Error: invalid reference format | <!--
- Make sure you are able to reproduce it on the [latest version](https://github.com/nektos/act/releases)
- Search the existing issues.
- Refer to [README](https://github.com/nektos/act/blob/master/README.md).
-->
## System information
- Operating System: macOS
- Architecture: arm64 (64-bit) M1 Apple
- Apple M1: yes
- Docker version: 20.10.12
- Docker image used in `act`: < can be omitted if it's included in log >
- `act` version: act version HEAD-e23223a
## Expected behaviour
Docker image successfully pulls.
## Actual behaviour
❯ act
[Build and Test/build-test ] 🚀 Start image=ghcr.io/catthehacker/ubuntu:act-20.04
[Build and Test/build-test ] 🐳 docker pull image=ghcr.io/catthehacker/ubuntu:act-20.04 platform=linux/amd64 username= forcePull=false
ERRO[0000] invalid reference format
Error: invalid reference format
## Configuration
❯ cat ~/.actrc
-P sdp-im887-imali=ghcr.io/catthehacker/ubuntu:act-20.04
--container-architecture linux/amd64
Without the -P above, I get the following warning message:
❯ act -l
WARN ⚠ You are using Apple M1 chip and you have not specified container architecture, you might encounter issues while running act.
If so, try running it with '--container-architecture linux/amd64'.
## Workflow and/or repository
```
name: Build and Test
on: push
jobs:
build-test:
runs-on: sdp-im887-imali
steps:
- name: BUILD AND TEST
run: echo "built and tested successfully"
```
</details>
## Steps to reproduce
Run act command.
## `act` output
<details>
<summary>Log</summary>
```none
❯ act -v
DEBU[0000] Loading environment from /Users/jxc07rc/src/imali/im887-imali-ecs-cluster/.env
DEBU[0000] Loading secrets from /Users/jxc07rc/src/imali/im887-imali-ecs-cluster/.secrets
DEBU[0000] Loading workflows from '/Users/jxc07rc/src/imali/im887-imali-ecs-cluster/.github/workflows'
DEBU[0000] Loading workflows recursively
DEBU[0000] Found workflow 'ci.yaml' in '/Users/jxc07rc/src/imali/im887-imali-ecs-cluster/.github/workflows/ci.yaml'
DEBU[0000] Found workflow 'cicd.yaml' in '/Users/jxc07rc/src/imali/im887-imali-ecs-cluster/.github/workflows/cicd.yaml'
DEBU[0000] Reading workflow '/Users/jxc07rc/src/imali/im887-imali-ecs-cluster/.github/workflows/ci.yaml'
DEBU[0000] Correcting if statements '/Users/jxc07rc/src/imali/im887-imali-ecs-cluster/.github/workflows/ci.yaml'
DEBU[0000] Reading workflow '/Users/jxc07rc/src/imali/im887-imali-ecs-cluster/.github/workflows/cicd.yaml'
DEBU[0000] Correcting if statements '/Users/jxc07rc/src/imali/im887-imali-ecs-cluster/.github/workflows/cicd.yaml'
DEBU[0000] Planning event: push
DEBU[0000] Loading slug from git directory '/Users/jxc07rc/src/imali/im887-imali-ecs-cluster/.git'
DEBU[0000] Loading revision from git directory '/Users/jxc07rc/src/imali/im887-imali-ecs-cluster/.git'
DEBU[0000] Found revision: 5e9df33e966f8aa468cafea62ad436e71fe861bc
DEBU[0000] HEAD points to '5e9df33e966f8aa468cafea62ad436e71fe861bc'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: 5e9df33e966f8aa468cafea62ad436e71fe861bc
DEBU[0000] expression 'success()' evaluated to 'true'
[Build and Test/build-test] 🚀 Start image=ghcr.io/catthehacker/ubuntu:act-20.04
DEBU[0000] Loading slug from git directory '/Users/jxc07rc/src/imali/im887-imali-ecs-cluster/.git'
DEBU[0000] Loading revision from git directory '/Users/jxc07rc/src/imali/im887-imali-ecs-cluster/.git'
DEBU[0000] Found revision: 5e9df33e966f8aa468cafea62ad436e71fe861bc
DEBU[0000] HEAD points to '5e9df33e966f8aa468cafea62ad436e71fe861bc'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: 5e9df33e966f8aa468cafea62ad436e71fe861bc
[Build and Test/build-test] 🐳 docker pull image=ghcr.io/catthehacker/ubuntu:act-20.04 platform=linux/amd64 username= forcePull=false
[Build and Test/build-test] 🐳 docker pull ghcr.io/catthehacker/ubuntu:act-20.04
DEBU[0000] Image exists? false
ERRO[0000] invalid reference format
[Build and Test/build-test] pulling image '' (linux/amd64)
DEBU[0000] invalid reference format
DEBU[0000] invalid reference format
DEBU[0000] invalid reference format
DEBU[0000] invalid reference format
DEBU[0000] invalid reference format
DEBU[0000] invalid reference format
DEBU[0000] invalid reference format
DEBU[0000] invalid reference format
DEBU[0000] invalid reference format
DEBU[0000] invalid reference format
DEBU[0000] Loading slug from git directory '/Users/jxc07rc/src/imali/im887-imali-ecs-cluster/.git'
DEBU[0000] Loading revision from git directory '/Users/jxc07rc/src/imali/im887-imali-ecs-cluster/.git'
DEBU[0000] Found revision: 5e9df33e966f8aa468cafea62ad436e71fe861bc
DEBU[0000] HEAD points to '5e9df33e966f8aa468cafea62ad436e71fe861bc'
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Found revision: 5e9df33e966f8aa468cafea62ad436e71fe861bc
DEBU[0000] invalid reference format
Error: invalid reference format
```
</details>
| https://github.com/nektos/act/issues/985 | https://github.com/nektos/act/pull/1024 | c22d833830b3a1903a12c590b0b2ee637c3639e1 | 3db3c737230adc457e08a8d60b34458977d01e5c | "2022-02-08T18:55:48Z" | go | "2022-03-02T21:41:57Z" |
closed | nektos/act | https://github.com/nektos/act | 979 | ["cmd/secrets.go"] | Issue: No newline after the `Provide value for '<secret>'` | <!--
- Make sure you are able to reproduce it on the [latest version](https://github.com/nektos/act/releases)
- Search the existing issues.
- Refer to [README](https://github.com/nektos/act/blob/master/README.md).
-->
## System information
<!--
- Operating System: < Windows | Linux | macOS | etc... >
- Architecture: < x64 (64-bit) | x86 (32-bit) | arm64 (64-bit) | arm (32-bit) | etc... >
- Apple M1: < yes | no >
- Docker version: < output of `docker system info -f "{{.ServerVersion}}"` >
- Docker image used in `act`: < can be omitted if it's included in log >
- `act` version: < output of `act --version`, if you've built `act` yourself, please provide commit hash >
-->
- Operating System: Ubuntu
- Architecture:
- Apple M1:
- Docker version:
- Docker image used in `act`:
- `act` version:
## Expected behaviour
There seems to be no newline after the `Provide value for '<secret>'` prompt
<!--
- Describe how whole process should go and finish
-->
## Actual behaviour
<!--
- Describe the issue
-->
## Workflow and/or repository
<!--
- Provide workflow with which we can reproduce the issue
OR
- Provide link to your GitHub repository that contains the workflow
<details>
<summary>workflow</summary>
```none
name: example workflow
on: [push]
jobs:
[...]
```
</details>
## Steps to reproduce
<!--
- Make sure to include full command with parameters you used to run `act`, example:
1. Clone example repo (https://github.com/cplee/github-actions-demo)
2. Enter cloned repo directory
3. Run `act -s SUPER_SECRET=im-a-value`
-->
## `act` output
<!--
- Use `act` with `-v`/`--verbose` and paste output from your terminal in code block below
-->
<details>
<summary>Log</summary>
```none
PASTE YOUR LOG HERE
```
</details>
| https://github.com/nektos/act/issues/979 | https://github.com/nektos/act/pull/1014 | ff13844b8643abaff9daa47a5bc96aa91fddcf5e | ad06f5dfb8a658521c855f8c374a58b02227e8fa | "2022-02-04T12:04:59Z" | go | "2022-02-25T16:47:49Z" |
closed | nektos/act | https://github.com/nektos/act | 969 | [".github/workflows/checks.yml"] | Issue: $GITHUB_REF incorrectly set for release event | ## System information
- Operating System: macOS
- Architecture: x64 (64-bit)
- Apple M1: no
- Docker version: 20.10.11
- Docker image used in `act`: `ghcr.io/catthehacker/ubuntu:act-latest`
- `act` version: `mod github.com/nektos/act v0.2.25 h1:RuPuzaG3qwPaeHHyTWw57LwG2ze6M+Gd/5SCVFDD5Yo=`
## Setup and steps to reproduce
```
$ tree .github
.github
├── events
│ └── release.json
└── workflows
└── ci.yml
2 directories, 2 files
```
```
# github/workflows/ci.yml
on: release
jobs:
build:
runs-on: ubuntu-latest
steps:
- run: echo "${GITHUB_REF}"
```
```
# .github/events/release.json
{
"action": "published",
"release": {
"tag_name": "v0.0.1"
}
}
```
```
$ git add . && git commit -m "Initial commit"
$ git remote add origin http://example.com/test.git
```
```
$ act release --eventpath .github/events/release.json
```
## Expected behaviour
`echo $GITHUB_REF` should print the value of `release.tag_name` from the event: `v1.0.0`.
## Actual behaviour
`echo $GITHUB_REF` prints `refs/heads/master`:
```
$ act release --eventpath .github/events/release.json
[ci.yml/build] 🚀 Start image=ghcr.io/catthehacker/ubuntu:act-latest
[ci.yml/build] 🐳 docker pull image=ghcr.io/catthehacker/ubuntu:act-latest platform= username= forcePull=false
[ci.yml/build] 🐳 docker create image=ghcr.io/catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[ci.yml/build] 🐳 docker run image=ghcr.io/catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[ci.yml/build] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root workdir=
[ci.yml/build] ⭐ Run echo "${GITHUB_REF}"
[ci.yml/build] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /Users/percy/Code/nektos_act_test/workflow/0] user= workdir=
| refs/heads/master
[ci.yml/build] ✅ Success - echo "${GITHUB_REF}"
```
Thank you for your help. | https://github.com/nektos/act/issues/969 | https://github.com/nektos/act/pull/1813 | 1eacf23dcbbea2e5a7d17e8c325ce94ee0b1d3d1 | 1371215aabfd82b9288132042aecc9eacc0ab380 | "2022-01-27T04:46:53Z" | go | "2023-05-22T03:12:14Z" |
closed | nektos/act | https://github.com/nektos/act | 967 | [".github/workflows/checks.yml"] | Enhancement: Add pointers for GITHUB_TOKEN to README | ## Describe feature
When I started using act, I kept running into issues because I was missing the `GITHUB_TOKEN` and I couldn't be bothered to figure it out for a long time.
I believe this is such a common use-case that it bears spelling out briefly, what this token is and where to get it.
| https://github.com/nektos/act/issues/967 | https://github.com/nektos/act/pull/1813 | 1eacf23dcbbea2e5a7d17e8c325ce94ee0b1d3d1 | 1371215aabfd82b9288132042aecc9eacc0ab380 | "2022-01-26T15:03:43Z" | go | "2023-05-22T03:12:14Z" |
closed | nektos/act | https://github.com/nektos/act | 960 | [".github/workflows/checks.yml"] | Enhancement: add validate command to validate your workflow | ## Describe feature
Recently, I found a cool project called [action-validator](https://github.com/mpalmer/action-validator), thanks to @mpalmer, it seems very useful to me when I want to check my workflow whether it is valid before sending it over to the repository. So, I thought it'd be nice if we moved that logic into the act itself.
What are your thoughts? | https://github.com/nektos/act/issues/960 | https://github.com/nektos/act/pull/1752 | 7c6237d93f01b2c50a98a488e40ab7f9a719da35 | 60bcfb5d4f717bd0a581de8e97866d58a5593152 | "2022-01-20T10:10:51Z" | go | "2023-04-24T03:13:14Z" |
closed | nektos/act | https://github.com/nektos/act | 943 | ["pkg/container/docker_run.go"] | Issue: act actions/checkout fails for dangling symlinks | <!--
- Make sure you are able to reproduce it on the [latest version](https://github.com/nektos/act/releases)
- Search the existing issues.
- Refer to [README](https://github.com/nektos/act/blob/master/README.md).
-->
## System information
- Operating System: macOS
- Architecture: x64 (64-bit)
- Docker version: 20.10.11
- `act` version: 0.2.25
## Expected behaviour
checkout should run and the echo step should run
## Actual behaviour
pseudo checkout failed
## Workflow and/or repository
https://github.com/jsoref/act-dangling
## Steps to reproduce
```
git clone https://github.com/jsoref/act-dangling
cd act-dangling
act
```
## `act` output
<details>
<summary>Log</summary>
```
[Test/Test] 🚀 Start image=catthehacker/ubuntu:act-latest
[Test/Test] 🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=false
[Test/Test] 🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Test/Test] 🐳 docker run image=catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Test/Test] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root workdir=
[Test/Test] 🐳 docker cp src=/Users/jsoref/code/act/dangling/. dst=/Users/jsoref/code/act/dangling
[Test/Test] 🐳 docker exec cmd=[mkdir -p /Users/jsoref/code/act/dangling] user= workdir=
Error: open /Users/jsoref/code/act/dangling/baz: no such file or directory
```
</details>
| https://github.com/nektos/act/issues/943 | https://github.com/nektos/act/pull/948 | 7dbf3fcb96e2d70b3436b718c1f4a9fe4b169a4f | c802064975099a00c93b0c57f46b1e3964d33eef | "2021-12-30T06:08:05Z" | go | "2022-01-27T16:53:26Z" |
closed | nektos/act | https://github.com/nektos/act | 940 | ["pkg/runner/runner_test.go", "pkg/runner/testdata/if-env-act/push.yml"] | Issue: if ${{ env.ACT }} not working on master | ## System information
- Operating System: macOS
- Architecture: x64
- Apple M1: no
- Docker version: 20.10.10
- Docker image used in `act`:
- `act` version: https://github.com/nektos/act/commit/ed01f464ede3515c94dedf5739b54576177bf80c (also a few few commits earlier https://github.com/nektos/act/commit/9868e1377274a7657d4aac6bd2b66c0d564405cb )
## Expected behaviour
Assuming https://github.com/nektos/act#skipping-steps is still current for `master`
Steps with `if: ${{ !env.ACT }}` should be skipped.
Steps with `if: ${{ env.ACT }}` should not be skipped.
## Actual behaviour
Steps with `if: ${{ env.ACT }}` are skipped.
Steps with `if: ${{ !env.ACT }}` are not skipped.
## Workflow and/or repository
```yaml
name: Foo
on:
workflow_dispatch:
jobs:
bar:
name: Baz
runs-on: ubuntu-latest
steps:
- name: Checkout action
uses: actions/checkout@v2
- name: Show env.ACT
shell: bash
run: echo "$ACT"
- id: setup-python
if: ${{ env.ACT }}
name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.7'
- if: ${{ !env.ACT }}
name: not-ACT
shell: bash
run: echo "$ACT"
```
## Steps to reproduce
1. Install `act` from master
2. Run on workflows that were previous working correctly with `if: ${{ env.ACT }}` or `if: ${{ !env.ACT }}` on v0.2.25
3. Add "echo $ACT" to show it is being set to true
## `act` output
```
[Foo/Baz] 🚀 Start image=catthehacker/ubuntu:act-latest
...
[Foo/Baz] 🐳 docker cp src=/Users/jayvdb/.../. dst=/Users/jayvdb/...
[Foo/Baz] 🐳 docker exec cmd=[mkdir -p /Users/jayvdb/...] user= workdir=
[Foo/Baz] ⭐ Run Checkout action
[Foo/Baz] ✅ Success - Checkout action
[Foo/Baz] ⭐ Run Show env.ACT
[Foo/Baz] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/1.sh] user= workdir=
| true
[Foo/Baz] ✅ Success - Show env.ACT
[Foo/Baz] ⭐ Run not-ACT
[Foo/Baz] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /var/run/act/workflow/setup-python.sh] user= workdir=
| true
[Foo/Baz] ✅ Success - not-ACT
``` | https://github.com/nektos/act/issues/940 | https://github.com/nektos/act/pull/965 | 2eda7c6037b921ae88742b2ff29b20bb171497a6 | 3f0375aeff1973b674b33a0e4c44bc05a41714c5 | "2021-12-23T03:50:29Z" | go | "2022-01-25T17:27:27Z" |
closed | nektos/act | https://github.com/nektos/act | 935 | ["pkg/container/docker_run.go", "pkg/container/file_collector.go", "pkg/runner/run_context.go", "pkg/runner/runner_test.go"] | Issue: mkdir: cannot create directory '/var/run/act/actions': Permission denied | ## System information
- Operating System:macOS
- Architecture: x64
- Apple M1: no
- Docker version: Docker version 20.10.11, build dea9396
- Docker image used in `act`: ubuntu-latest
- `act` version: act version 0.2.25
## Expected behaviour
I expect the tests to pass as they do on github
## Actual behaviour
Failure - mkdir cannot create directory `/var/run/act/actions`
## Workflow
<details>
<summary>workflow</summary>
```none
name: Node.js CI
on:
push:
# only run this workflow when something in the api changes
# or in this workflow file
paths:
- "api/**"
- .github/workflows/api.yml
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Test using Node.js 🧪
uses: actions/setup-node@v2
with:
node-version: "16.x"
- run: yarn install
working-directory: "api"
- run: yarn test:ci
working-directory: "api"
env:
AUTH_OVERRIDE: true
- name: Tests ✅
if: ${{ success() }}
run: |
curl --request POST \
--url https://api.github.com/repos/${{ github.repository }}/statuses/${{ github.sha }} \
--header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' \
--header 'content-type: application/json' \
--data '{
"context": "tests",
"state": "success",
"description": "Tests passed",
"target_url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}"
}'
- name: Tests 🚨
if: ${{ failure() }}
run: |
curl --request POST \
--url https://api.github.com/repos/${{ github.repository }}/statuses/${{ github.sha }} \
--header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' \
--header 'content-type: application/json' \
--data '{
"context": "tests",
"state": "failure",
"description": "Tests failed",
"target_url": "https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}"
}'
```
</details>
## Steps to reproduce
<!--
- Make sure to include full command with parameters you used to run `act`, example:
1. Clone example repo (https://github.com/cplee/github-actions-demo)
2. Enter cloned repo directory
3. Run `act -s SUPER_SECRET=im-a-value`
-->
## `act` output
<!--
- Use `act` with `-v`/`--verbose` and paste output from your terminal in code block below
-->
<details>
<summary>Log</summary>
```none
➜ itOps git:(develop) act -v
DEBU[0000] Loading environment from /Users/justinwinter/projects/itOps/.env
DEBU[0000] Loading secrets from /Users/justinwinter/projects/itOps/.secrets
DEBU[0000] Loading workflows from '/Users/justinwinter/projects/itOps/.github/workflows'
DEBU[0000] Loading workflows recursively
DEBU[0000] Found workflow 'api.yml' in '/Users/justinwinter/projects/itOps/.github/workflows/api.yml'
DEBU[0000] Reading workflow '/Users/justinwinter/projects/itOps/.github/workflows/api.yml'
DEBU[0000] Correcting if statements '/Users/justinwinter/projects/itOps/.github/workflows/api.yml'
DEBU[0000] Planning event: push
DEBU[0000] Loading slug from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0000] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0000] Loading revision from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0000] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0000] HEAD points to 'af879f28d22febaa19b70f09a32f5c4cc67a6761'
DEBU[0000] using github ref: refs/heads/develop
DEBU[0000] context env => map[ACT:true]
DEBU[0000] context needs => map[]
[Node.js CI/test] 🚀 Start image=ghcr.io/catthehacker/ubuntu:full-20.04
DEBU[0000] Loading slug from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0000] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0000] Loading revision from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0000] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0000] HEAD points to 'af879f28d22febaa19b70f09a32f5c4cc67a6761'
DEBU[0000] using github ref: refs/heads/develop
[Node.js CI/test] 🐳 docker pull image=ghcr.io/catthehacker/ubuntu:full-20.04 platform= username= forcePull=false
[Node.js CI/test] 🐳 docker pull ghcr.io/catthehacker/ubuntu:full-20.04
DEBU[0000] Image exists? true
[Node.js CI/test] Removed container: 9eeb215dba8e3348e44bf2deb5b834a9393b12f72e4a8cf726a42fee7c20026b
[Node.js CI/test] 🐳 docker volume rm act-Node-js-CI-test
[Node.js CI/test] 🐳 docker create image=ghcr.io/catthehacker/ubuntu:full-20.04 platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Node.js CI/test] Created container name=act-Node-js-CI-test id=761ccbcebbc1f8f0097bb387e82a5d19ae06febda814c6c5ffe6641519e9077e from image ghcr.io/catthehacker/ubuntu:full-20.04 (platform: )
[Node.js CI/test] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_TEMP=/tmp]
[Node.js CI/test] 🐳 docker run image=ghcr.io/catthehacker/ubuntu:full-20.04 platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Node.js CI/test] Starting container: 761ccbcebbc1f8f0097bb387e82a5d19ae06febda814c6c5ffe6641519e9077e
[Node.js CI/test] Started container: 761ccbcebbc1f8f0097bb387e82a5d19ae06febda814c6c5ffe6641519e9077e
[Node.js CI/test] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root workdir=
[Node.js CI/test] Exec command '[mkdir -m 0777 -p /var/run/act]'
[Node.js CI/test] Working directory '/Users/justinwinter/projects/itOps'
[Node.js CI/test] 🐳 docker cp src=/Users/justinwinter/projects/itOps/. dst=/Users/justinwinter/projects/itOps
[Node.js CI/test] 🐳 docker exec cmd=[mkdir -p /Users/justinwinter/projects/itOps] user= workdir=
[Node.js CI/test] Exec command '[mkdir -p /Users/justinwinter/projects/itOps]'
[Node.js CI/test] Working directory '/Users/justinwinter/projects/itOps'
DEBU[0000] Writing tarball /var/folders/5h/87qd8v456gj8yb95rc6ww5_r0000gn/T/act2159231799 from /Users/justinwinter/projects/itOps/.
DEBU[0000] Stripping prefix:/Users/justinwinter/projects/itOps/ src:/Users/justinwinter/projects/itOps/.
[Node.js CI/test] Extracting content from '/var/folders/5h/87qd8v456gj8yb95rc6ww5_r0000gn/T/act2159231799' to '/Users/justinwinter/projects/itOps'
DEBU[0009] Writing entry to tarball workflow/event.json len:2
DEBU[0009] Writing entry to tarball workflow/envs.txt len:0
DEBU[0009] Writing entry to tarball workflow/paths.txt len:0
[Node.js CI/test] Extracting content to '/var/run/act/'
DEBU[0009] Loading slug from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0009] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0009] Loading revision from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0009] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0009] HEAD points to 'af879f28d22febaa19b70f09a32f5c4cc67a6761'
DEBU[0009] using github ref: refs/heads/develop
DEBU[0009] Loading slug from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0009] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0009] Loading revision from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0009] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0009] HEAD points to 'af879f28d22febaa19b70f09a32f5c4cc67a6761'
DEBU[0009] using github ref: refs/heads/develop
DEBU[0009] context env => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:amazeeio/itOps GITHUB_REPOSITORY_OWNER:amazeeio GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:af879f28d22febaa19b70f09a32f5c4cc67a6761 GITHUB_TOKEN: GITHUB_WORKFLOW:Node.js CI GITHUB_WORKSPACE:/Users/justinwinter/projects/itOps GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]
DEBU[0009] context needs => map[]
DEBU[0009] context env => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:amazeeio/itOps GITHUB_REPOSITORY_OWNER:amazeeio GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:af879f28d22febaa19b70f09a32f5c4cc67a6761 GITHUB_TOKEN: GITHUB_WORKFLOW:Node.js CI GITHUB_WORKSPACE:/Users/justinwinter/projects/itOps GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]
[Node.js CI/test] setupEnv => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:amazeeio/itOps GITHUB_REPOSITORY_OWNER:amazeeio GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:af879f28d22febaa19b70f09a32f5c4cc67a6761 GITHUB_TOKEN: GITHUB_WORKFLOW:Node.js CI GITHUB_WORKSPACE:/Users/justinwinter/projects/itOps GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]
[Node.js CI/test] ⭐ Run actions/checkout@v2
DEBU[0009] Loading slug from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0009] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0009] Loading revision from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0009] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0009] HEAD points to 'af879f28d22febaa19b70f09a32f5c4cc67a6761'
DEBU[0009] using github ref: refs/heads/develop
[Node.js CI/test] Skipping local actions/checkout because workdir was already copied
[Node.js CI/test] ✅ Success - actions/checkout@v2
DEBU[0009] Loading slug from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0009] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0009] Loading revision from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0009] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0009] HEAD points to 'af879f28d22febaa19b70f09a32f5c4cc67a6761'
DEBU[0009] using github ref: refs/heads/develop
DEBU[0010] Loading slug from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] Loading revision from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] HEAD points to 'af879f28d22febaa19b70f09a32f5c4cc67a6761'
DEBU[0010] using github ref: refs/heads/develop
DEBU[0010] context env => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:amazeeio/itOps GITHUB_REPOSITORY_OWNER:amazeeio GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:af879f28d22febaa19b70f09a32f5c4cc67a6761 GITHUB_TOKEN: GITHUB_WORKFLOW:Node.js CI GITHUB_WORKSPACE:/Users/justinwinter/projects/itOps GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]
DEBU[0010] context needs => map[]
DEBU[0010] Loading slug from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] Loading revision from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] HEAD points to 'af879f28d22febaa19b70f09a32f5c4cc67a6761'
DEBU[0010] using github ref: refs/heads/develop
DEBU[0010] context env => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:amazeeio/itOps GITHUB_REPOSITORY_OWNER:amazeeio GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:af879f28d22febaa19b70f09a32f5c4cc67a6761 GITHUB_TOKEN: GITHUB_WORKFLOW:Node.js CI GITHUB_WORKSPACE:/Users/justinwinter/projects/itOps GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]
DEBU[0010] context needs => map[]
DEBU[0010] context env => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:amazeeio/itOps GITHUB_REPOSITORY_OWNER:amazeeio GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:af879f28d22febaa19b70f09a32f5c4cc67a6761 GITHUB_TOKEN: GITHUB_WORKFLOW:Node.js CI GITHUB_WORKSPACE:/Users/justinwinter/projects/itOps GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 INPUT_NODE-VERSION:16.x ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]
[Node.js CI/test] setupEnv => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:amazeeio/itOps GITHUB_REPOSITORY_OWNER:amazeeio GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:af879f28d22febaa19b70f09a32f5c4cc67a6761 GITHUB_TOKEN: GITHUB_WORKFLOW:Node.js CI GITHUB_WORKSPACE:/Users/justinwinter/projects/itOps GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 INPUT_NODE-VERSION:16.x ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]
[Node.js CI/test] ⭐ Run Test using Node.js 🧪
DEBU[0010] Loading slug from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] Loading revision from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] HEAD points to 'af879f28d22febaa19b70f09a32f5c4cc67a6761'
DEBU[0010] using github ref: refs/heads/develop
INFO[0010] ☁ git clone 'https://github.com/actions/setup-node' # ref=v2
DEBU[0010] cloning https://github.com/actions/setup-node to /Users/justinwinter/.cache/act/actions-setup-node@v2
DEBU[0010] Cloned https://github.com/actions/setup-node to /Users/justinwinter/.cache/act/actions-setup-node@v2
DEBU[0010] Checked out v2
DEBU[0010] Read action &{Setup Node.js environment GitHub Setup a Node.js environment by adding problem matchers and optionally downloading and adding it to the PATH map[always-auth:{Set always-auth in npmrc false false} architecture:{Target architecture for Node to use. Examples: x86, x64. Will use system architecture by default. false } cache:{Used to specify a package manager for caching in the default directory. Supported values: npm, yarn, pnpm false } cache-dependency-path:{Used to specify the path to a dependency file: package-lock.json, yarn.lock, etc. Supports wildcards or a list of file names for caching multiple dependencies. false } check-latest:{Set this option if you want the action to check for the latest available version that satisfies the version spec false false} node-version:{Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0 false } node-version-file:{File containing the version Spec of the version to use. Examples: .nvmrc, .node-version false } registry-url:{Optional registry to set up for auth. Will set the registry in a project level .npmrc and .yarnrc file, and set up auth to read in from env.NODE_AUTH_TOKEN false } scope:{Optional scope for authenticating against scoped registries false } token:{Used to pull node distributions from node-versions. Since there's a default, this is typically not supplied by the user. false ${{ github.token }}} version:{Deprecated. Use node-version instead. Will not be supported after October 1, 2019 false }] map[cache-hit:{A boolean value to indicate if a cache was hit }] {node12 map[] dist/setup/index.js [] []} { }} from 'Unknown'
DEBU[0010] About to run action &{Setup Node.js environment GitHub Setup a Node.js environment by adding problem matchers and optionally downloading and adding it to the PATH map[always-auth:{Set always-auth in npmrc false false} architecture:{Target architecture for Node to use. Examples: x86, x64. Will use system architecture by default. false } cache:{Used to specify a package manager for caching in the default directory. Supported values: npm, yarn, pnpm false } cache-dependency-path:{Used to specify the path to a dependency file: package-lock.json, yarn.lock, etc. Supports wildcards or a list of file names for caching multiple dependencies. false } check-latest:{Set this option if you want the action to check for the latest available version that satisfies the version spec false false} node-version:{Version Spec of the version to use. Examples: 12.x, 10.15.1, >=10.15.0 false } node-version-file:{File containing the version Spec of the version to use. Examples: .nvmrc, .node-version false } registry-url:{Optional registry to set up for auth. Will set the registry in a project level .npmrc and .yarnrc file, and set up auth to read in from env.NODE_AUTH_TOKEN false } scope:{Optional scope for authenticating against scoped registries false } token:{Used to pull node distributions from node-versions. Since there's a default, this is typically not supplied by the user. false ${{ github.token }}} version:{Deprecated. Use node-version instead. Will not be supported after October 1, 2019 false }] map[cache-hit:{A boolean value to indicate if a cache was hit }] {node12 map[] dist/setup/index.js [] []} { }}
DEBU[0010] Evaluating 'github['token']' instead of 'github.token'
DEBU[0010] Loading slug from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] Loading revision from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] HEAD points to 'af879f28d22febaa19b70f09a32f5c4cc67a6761'
DEBU[0010] using github ref: refs/heads/develop
DEBU[0010] context env => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:amazeeio/itOps GITHUB_REPOSITORY_OWNER:amazeeio GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:af879f28d22febaa19b70f09a32f5c4cc67a6761 GITHUB_TOKEN: GITHUB_WORKFLOW:Node.js CI GITHUB_WORKSPACE:/Users/justinwinter/projects/itOps GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]
DEBU[0010] context needs => map[]
DEBU[0010] Loading slug from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] Loading revision from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] HEAD points to 'af879f28d22febaa19b70f09a32f5c4cc67a6761'
DEBU[0010] using github ref: refs/heads/develop
DEBU[0010] context env => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:amazeeio/itOps GITHUB_REPOSITORY_OWNER:amazeeio GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:af879f28d22febaa19b70f09a32f5c4cc67a6761 GITHUB_TOKEN: GITHUB_WORKFLOW:Node.js CI GITHUB_WORKSPACE:/Users/justinwinter/projects/itOps GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]
DEBU[0010] context needs => map[]
DEBU[0010] Loading slug from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] Loading revision from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] HEAD points to 'af879f28d22febaa19b70f09a32f5c4cc67a6761'
DEBU[0010] using github ref: refs/heads/develop
DEBU[0010] context env => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:amazeeio/itOps GITHUB_REPOSITORY_OWNER:amazeeio GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:af879f28d22febaa19b70f09a32f5c4cc67a6761 GITHUB_TOKEN: GITHUB_WORKFLOW:Node.js CI GITHUB_WORKSPACE:/Users/justinwinter/projects/itOps GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]
DEBU[0010] context needs => map[]
DEBU[0010] Loading slug from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] Loading revision from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] HEAD points to 'af879f28d22febaa19b70f09a32f5c4cc67a6761'
DEBU[0010] using github ref: refs/heads/develop
DEBU[0010] context env => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:amazeeio/itOps GITHUB_REPOSITORY_OWNER:amazeeio GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:af879f28d22febaa19b70f09a32f5c4cc67a6761 GITHUB_TOKEN: GITHUB_WORKFLOW:Node.js CI GITHUB_WORKSPACE:/Users/justinwinter/projects/itOps GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]
DEBU[0010] context needs => map[]
DEBU[0010] Loading slug from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] Loading revision from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] HEAD points to 'af879f28d22febaa19b70f09a32f5c4cc67a6761'
DEBU[0010] using github ref: refs/heads/develop
DEBU[0010] context env => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:amazeeio/itOps GITHUB_REPOSITORY_OWNER:amazeeio GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:af879f28d22febaa19b70f09a32f5c4cc67a6761 GITHUB_TOKEN: GITHUB_WORKFLOW:Node.js CI GITHUB_WORKSPACE:/Users/justinwinter/projects/itOps GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]
DEBU[0010] context needs => map[]
DEBU[0010] Loading slug from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] Loading revision from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] HEAD points to 'af879f28d22febaa19b70f09a32f5c4cc67a6761'
DEBU[0010] using github ref: refs/heads/develop
DEBU[0010] context env => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:amazeeio/itOps GITHUB_REPOSITORY_OWNER:amazeeio GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:af879f28d22febaa19b70f09a32f5c4cc67a6761 GITHUB_TOKEN: GITHUB_WORKFLOW:Node.js CI GITHUB_WORKSPACE:/Users/justinwinter/projects/itOps GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]
DEBU[0010] context needs => map[]
DEBU[0010] Loading slug from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] Loading revision from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] HEAD points to 'af879f28d22febaa19b70f09a32f5c4cc67a6761'
DEBU[0010] using github ref: refs/heads/develop
DEBU[0010] context env => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:amazeeio/itOps GITHUB_REPOSITORY_OWNER:amazeeio GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:af879f28d22febaa19b70f09a32f5c4cc67a6761 GITHUB_TOKEN: GITHUB_WORKFLOW:Node.js CI GITHUB_WORKSPACE:/Users/justinwinter/projects/itOps GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]
DEBU[0010] context needs => map[]
DEBU[0010] Evaluating 'github['token']' instead of 'github.token'
DEBU[0010] Loading slug from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] Loading revision from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] HEAD points to 'af879f28d22febaa19b70f09a32f5c4cc67a6761'
DEBU[0010] using github ref: refs/heads/develop
DEBU[0010] context env => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:amazeeio/itOps GITHUB_REPOSITORY_OWNER:amazeeio GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:af879f28d22febaa19b70f09a32f5c4cc67a6761 GITHUB_TOKEN: GITHUB_WORKFLOW:Node.js CI GITHUB_WORKSPACE:/Users/justinwinter/projects/itOps GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]
DEBU[0010] context needs => map[]
DEBU[0010] Loading slug from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] Loading revision from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] HEAD points to 'af879f28d22febaa19b70f09a32f5c4cc67a6761'
DEBU[0010] using github ref: refs/heads/develop
DEBU[0010] context env => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:amazeeio/itOps GITHUB_REPOSITORY_OWNER:amazeeio GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:af879f28d22febaa19b70f09a32f5c4cc67a6761 GITHUB_TOKEN: GITHUB_WORKFLOW:Node.js CI GITHUB_WORKSPACE:/Users/justinwinter/projects/itOps GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]
DEBU[0010] context needs => map[]
DEBU[0010] Loading slug from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] Loading revision from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] HEAD points to 'af879f28d22febaa19b70f09a32f5c4cc67a6761'
DEBU[0010] using github ref: refs/heads/develop
DEBU[0010] context env => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:amazeeio/itOps GITHUB_REPOSITORY_OWNER:amazeeio GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:af879f28d22febaa19b70f09a32f5c4cc67a6761 GITHUB_TOKEN: GITHUB_WORKFLOW:Node.js CI GITHUB_WORKSPACE:/Users/justinwinter/projects/itOps GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]
DEBU[0010] context needs => map[]
DEBU[0010] Loading slug from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] Loading revision from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] HEAD points to 'af879f28d22febaa19b70f09a32f5c4cc67a6761'
DEBU[0010] using github ref: refs/heads/develop
DEBU[0010] context env => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:amazeeio/itOps GITHUB_REPOSITORY_OWNER:amazeeio GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:af879f28d22febaa19b70f09a32f5c4cc67a6761 GITHUB_TOKEN: GITHUB_WORKFLOW:Node.js CI GITHUB_WORKSPACE:/Users/justinwinter/projects/itOps GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]
DEBU[0010] context needs => map[]
DEBU[0010] Loading slug from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] Loading revision from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] HEAD points to 'af879f28d22febaa19b70f09a32f5c4cc67a6761'
DEBU[0010] using github ref: refs/heads/develop
DEBU[0010] context env => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:amazeeio/itOps GITHUB_REPOSITORY_OWNER:amazeeio GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:af879f28d22febaa19b70f09a32f5c4cc67a6761 GITHUB_TOKEN: GITHUB_WORKFLOW:Node.js CI GITHUB_WORKSPACE:/Users/justinwinter/projects/itOps GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]
DEBU[0010] context needs => map[]
DEBU[0010] Loading slug from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] Loading revision from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] HEAD points to 'af879f28d22febaa19b70f09a32f5c4cc67a6761'
DEBU[0010] using github ref: refs/heads/develop
DEBU[0010] context env => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:amazeeio/itOps GITHUB_REPOSITORY_OWNER:amazeeio GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:af879f28d22febaa19b70f09a32f5c4cc67a6761 GITHUB_TOKEN: GITHUB_WORKFLOW:Node.js CI GITHUB_WORKSPACE:/Users/justinwinter/projects/itOps GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]
DEBU[0010] context needs => map[]
DEBU[0010] context env => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:amazeeio/itOps GITHUB_REPOSITORY_OWNER:amazeeio GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:af879f28d22febaa19b70f09a32f5c4cc67a6761 GITHUB_TOKEN: GITHUB_WORKFLOW:Node.js CI GITHUB_WORKSPACE:/Users/justinwinter/projects/itOps GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 INPUT_ALWAYS-AUTH:false INPUT_ARCHITECTURE: INPUT_CACHE: INPUT_CACHE-DEPENDENCY-PATH: INPUT_CHECK-LATEST:false INPUT_NODE-VERSION:16.x INPUT_NODE-VERSION-FILE: INPUT_REGISTRY-URL: INPUT_SCOPE: INPUT_TOKEN: INPUT_VERSION: ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]
DEBU[0010] type=3 actionDir=/Users/justinwinter/.cache/act/actions-setup-node@v2 actionPath= workdir=/Users/justinwinter/projects/itOps actionCacheDir=/Users/justinwinter/.cache/act actionName=actions-setup-node@v2 containerActionDir=/var/run/act/actions/actions-setup-node@v2
DEBU[0010] Removing /Users/justinwinter/.cache/act/actions-setup-node@v2/.gitignore before docker cp
DEBU[0010] /var/run/act/actions/actions-setup-node@v2
[Node.js CI/test] 🐳 docker cp src=/Users/justinwinter/.cache/act/actions-setup-node@v2/ dst=/var/run/act/actions/actions-setup-node@v2/
[Node.js CI/test] 🐳 docker exec cmd=[mkdir -p /var/run/act/actions/actions-setup-node@v2/] user= workdir=
[Node.js CI/test] Exec command '[mkdir -p /var/run/act/actions/actions-setup-node@v2/]'
[Node.js CI/test] Working directory '/Users/justinwinter/projects/itOps'
| mkdir: cannot create directory '/var/run/act/actions': Permission denied
DEBU[0010] exit with `FAILURE`: 1
[Node.js CI/test] ❌ Failure - Test using Node.js 🧪
DEBU[0010] exit with `FAILURE`: 1
DEBU[0010] exit with `FAILURE`: 1
DEBU[0010] exit with `FAILURE`: 1
DEBU[0010] exit with `FAILURE`: 1
DEBU[0010] exit with `FAILURE`: 1
DEBU[0010] Loading slug from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] Loading revision from git directory '/Users/justinwinter/projects/itOps/.git'
DEBU[0010] Found revision: af879f28d22febaa19b70f09a32f5c4cc67a6761
DEBU[0010] HEAD points to 'af879f28d22febaa19b70f09a32f5c4cc67a6761'
DEBU[0010] using github ref: refs/heads/develop
DEBU[0010] context env => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:amazeeio/itOps GITHUB_REPOSITORY_OWNER:amazeeio GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:af879f28d22febaa19b70f09a32f5c4cc67a6761 GITHUB_TOKEN: GITHUB_WORKFLOW:Node.js CI GITHUB_WORKSPACE:/Users/justinwinter/projects/itOps GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]
DEBU[0010] context needs => map[]
Error: exit with `FAILURE`: 1
➜ itOps git:(develop)
```
</details>
| https://github.com/nektos/act/issues/935 | https://github.com/nektos/act/pull/1202 | c30bc824b23335f2c99a32578f8d907f0be6647e | b59e6dee6d01253cb96505f8effc0516c2a390d9 | "2021-12-21T12:55:16Z" | go | "2022-06-20T22:47:39Z" |
closed | nektos/act | https://github.com/nektos/act | 927 | ["pkg/runner/expression.go", "pkg/runner/runner.go", "pkg/runner/runner_test.go", "pkg/runner/testdata/evalmatrix-merge-array/push.yml", "pkg/runner/testdata/evalmatrix-merge-map/push.yml", "pkg/runner/testdata/evalmatrix/push.yml", "pkg/runner/testdata/evalmatrixneeds/push.yml", "pkg/runner/testdata/evalmatrixneeds2/push.yml"] | Issue: Dynamic Matrix not working | ## System information
- Operating System: macOS
- Architecture: x64 (64-bit)
- Apple M1: no
- Docker version: 20.10.8
- Docker image used in `act`:
- `act` version: act version HEAD-cad4bc8
## Expected behaviour
The following workflow file should work, the matrix dynamic value should be evaluated after the first job is done and passed to matrix of second job.
## Actual behaviour
Matrix is not evaluated
## Workflow and/or repository
<details>
<summary>workflow</summary>
```none
name: "Dynamic Matix"
on:
pull_request:
push:
jobs:
bar:
name: Bar
runs-on: ubuntu-latest
steps:
- id: output_data
run: |
echo '::set-output name=matrix::"{"package": ["a", "b"]}"'
outputs:
matrix: ${{ steps.output_data.outputs.matrix }}
foo:
name: Foo
needs: [ bar ]
runs-on: ubuntu-latest
strategy:
matrix: ${{ fromJson(needs.bar.outputs.matrix) }}
steps:
- name: foo ${{ matrix.package }}
run: |
echo 'Matrix "${{ matrix.package }}" JSON: ${{ toJSON(matrix) }} ${{ needs.bar.outputs.matrix }}'
```
</details>
## Steps to reproduce
## `act` output
<!--
- Use `act` with `-v`/`--verbose` and paste output from your terminal in code block below
-->
<details>
<summary>Log</summary>
```noneDEBU[0000] Loading environment from /tmp/foo/.env
DEBU[0000] Loading secrets from /tmp/foo/.secrets
DEBU[0000] Loading workflows from '/tmp/foo/.github/workflows'
DEBU[0000] Loading workflows recursively
DEBU[0000] Found workflow 'sample.yaml' in '/tmp/foo/.github/workflows/sample.yaml'
DEBU[0000] Reading workflow '/tmp/foo/.github/workflows/sample.yaml'
DEBU[0000] Correcting if statements '/tmp/foo/.github/workflows/sample.yaml'
DEBU[0000] Planning event: push
WARN[0000] unable to get git repo: unable to find git repo
WARN[0000] unable to get git revision: unable to find git repo
WARN[0000] unable to get git ref: unable to find git repo
DEBU[0000] context steps => map[]
DEBU[0000] context env => map[ACT:true]
DEBU[0000]
WARN[0000] unable to get git repo: unable to find git repo
WARN[0000] unable to get git revision: unable to find git repo
WARN[0000] unable to get git ref: unable to find git repo
DEBU[0000] context steps => map[]
DEBU[0000] context env => map[ACT:true]
DEBU[0000] expression 'success()' evaluated to 'true'
[Dynamic Matix/Bar] 🚀 Start image=ghcr.io/catthehacker/ubuntu:act-latest
WARN[0000] unable to get git repo: unable to find git repo
WARN[0000] unable to get git revision: unable to find git repo
WARN[0000] unable to get git ref: unable to find git repo
[Dynamic Matix/Bar] 🐳 docker pull image=ghcr.io/catthehacker/ubuntu:act-latest platform= username= forcePull=false
[Dynamic Matix/Bar] 🐳 docker pull ghcr.io/catthehacker/ubuntu:act-latest
DEBU[0000] Image exists? true
[Dynamic Matix/Bar] 🐳 docker create image=ghcr.io/catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Dynamic Matix/Bar] Created container name=act-Dynamic-Matix-Bar id=87b64055fc9b58ced103cf6e968da2bc3bf5be7dc9bcb4f8895c9800109a6e1f from image ghcr.io/catthehacker/ubuntu:act-latest (platform: )
[Dynamic Matix/Bar] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_TEMP=/tmp]
[Dynamic Matix/Bar] 🐳 docker run image=ghcr.io/catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Dynamic Matix/Bar] Starting container: 87b64055fc9b58ced103cf6e968da2bc3bf5be7dc9bcb4f8895c9800109a6e1f
[Dynamic Matix/Bar] Started container: 87b64055fc9b58ced103cf6e968da2bc3bf5be7dc9bcb4f8895c9800109a6e1f
[Dynamic Matix/Bar] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root workdir=
[Dynamic Matix/Bar] Exec command '[mkdir -m 0777 -p /var/run/act]'
[Dynamic Matix/Bar] Working directory '/tmp/foo'
DEBU[0000] Writing entry to tarball workflow/event.json len:2
DEBU[0000] Writing entry to tarball workflow/envs.txt len:0
DEBU[0000] Writing entry to tarball workflow/paths.txt len:0
[Dynamic Matix/Bar] Extracting content to '/var/run/act/'
WARN[0000] unable to get git repo: unable to find git repo
WARN[0000] unable to get git revision: unable to find git repo
WARN[0000] unable to get git ref: unable to find git repo
DEBU[0000] context steps => map[output_data:map[conclusion:success outcome:success outputs:map[]]]
DEBU[0000] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0000] context env => map[]
DEBU[0000] context needs => map[]
DEBU[0000] expression 'success()' evaluated to 'true'
WARN[0000] unable to get git repo: unable to find git repo
WARN[0000] unable to get git revision: unable to find git repo
WARN[0000] unable to get git ref: unable to find git repo
WARN[0001] unable to get git repo: unable to find git repo
WARN[0001] unable to get git revision: unable to find git repo
WARN[0001] unable to get git ref: unable to find git repo
DEBU[0001] context steps => map[output_data:map[conclusion:success outcome:success outputs:map[]]]
DEBU[0001] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:output_data GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:Bar GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF: GITHUB_REPOSITORY: GITHUB_REPOSITORY_OWNER: GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA: GITHUB_TOKEN: GITHUB_WORKFLOW:Dynamic Matix GITHUB_WORKSPACE:/tmp/foo IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0001] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:output_data GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:Bar GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF: GITHUB_REPOSITORY: GITHUB_REPOSITORY_OWNER: GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA: GITHUB_TOKEN: GITHUB_WORKFLOW:Dynamic Matix GITHUB_WORKSPACE:/tmp/foo IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0001] context needs => map[]
[Dynamic Matix/Bar] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:output_data GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:Bar GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF: GITHUB_REPOSITORY: GITHUB_REPOSITORY_OWNER: GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA: GITHUB_TOKEN: GITHUB_WORKFLOW:Dynamic Matix GITHUB_WORKSPACE:/tmp/foo IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[Dynamic Matix/Bar] ⭐ Run echo '::set-output name=matrix::"{"package": ["a", "b"]}"'
DEBU[0001] Wrote command '
echo '::set-output name=matrix::"{"package": ["a", "b"]}"'
' to 'workflow/output_data'
DEBU[0001] Writing entry to tarball workflow/output_data len:59
[Dynamic Matix/Bar] Extracting content to '/tmp/foo'
[Dynamic Matix/Bar] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /tmp/foo/workflow/output_data] user= workdir=
[Dynamic Matix/Bar] Exec command '[bash --noprofile --norc -e -o pipefail /tmp/foo/workflow/output_data]'
[Dynamic Matix/Bar] Working directory '/tmp/foo'
[Dynamic Matix/Bar] ⚙ ::set-output:: matrix="{"package": ["a", "b"]}"
[Dynamic Matix/Bar] ✅ Success - echo '::set-output name=matrix::"{"package": ["a", "b"]}"'
[Dynamic Matix/Bar] Removed container: 87b64055fc9b58ced103cf6e968da2bc3bf5be7dc9bcb4f8895c9800109a6e1f
[Dynamic Matix/Bar] 🐳 docker volume rm act-Dynamic-Matix-Bar
WARN[0001] unable to get git repo: unable to find git repo
WARN[0001] unable to get git revision: unable to find git repo
WARN[0001] unable to get git ref: unable to find git repo
DEBU[0001] context steps => map[output_data:map[conclusion:success outcome:success outputs:map[matrix:"{"package": ["a", "b"]}"]]]
DEBU[0001] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:output_data GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:Bar GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF: GITHUB_REPOSITORY: GITHUB_REPOSITORY_OWNER: GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA: GITHUB_TOKEN: GITHUB_WORKFLOW:Dynamic Matix GITHUB_WORKSPACE:/tmp/foo IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0001] Evaluating 'steps['output_data']['outputs']['matrix']' instead of 'steps.output_data.outputs.matrix'
DEBU[0001] expression 'success()' evaluated to 'true'
[Dynamic Matix/Foo] 🚀 Start image=ghcr.io/catthehacker/ubuntu:act-latest
WARN[0001] unable to get git repo: unable to find git repo
WARN[0001] unable to get git revision: unable to find git repo
WARN[0001] unable to get git ref: unable to find git repo
[Dynamic Matix/Foo] 🐳 docker pull image=ghcr.io/catthehacker/ubuntu:act-latest platform= username= forcePull=false
[Dynamic Matix/Foo] 🐳 docker pull ghcr.io/catthehacker/ubuntu:act-latest
DEBU[0001] Image exists? true
[Dynamic Matix/Foo] 🐳 docker create image=ghcr.io/catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Dynamic Matix/Foo] Created container name=act-Dynamic-Matix-Foo id=a2d3eff52f7d22fc4cdbf6a4f6f6b67bd6409725671bda491e641cf165076bf0 from image ghcr.io/catthehacker/ubuntu:act-latest (platform: )
[Dynamic Matix/Foo] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_TEMP=/tmp]
[Dynamic Matix/Foo] 🐳 docker run image=ghcr.io/catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Dynamic Matix/Foo] Starting container: a2d3eff52f7d22fc4cdbf6a4f6f6b67bd6409725671bda491e641cf165076bf0
[Dynamic Matix/Foo] Started container: a2d3eff52f7d22fc4cdbf6a4f6f6b67bd6409725671bda491e641cf165076bf0
[Dynamic Matix/Foo] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root workdir=
[Dynamic Matix/Foo] Exec command '[mkdir -m 0777 -p /var/run/act]'
[Dynamic Matix/Foo] Working directory '/tmp/foo'
DEBU[0001] Writing entry to tarball workflow/event.json len:2
DEBU[0001] Writing entry to tarball workflow/envs.txt len:0
DEBU[0001] Writing entry to tarball workflow/paths.txt len:0
[Dynamic Matix/Foo] Extracting content to '/var/run/act/'
WARN[0001] unable to get git repo: unable to find git repo
WARN[0001] unable to get git revision: unable to find git repo
WARN[0001] unable to get git ref: unable to find git repo
DEBU[0001] context steps => map[0:map[conclusion:success outcome:success outputs:map[]]]
DEBU[0001] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0001] context env => map[]
DEBU[0001] context needs => map[bar:map[outputs:map[matrix:"{"package": ["a", "b"]}"]]]
DEBU[0001] expression 'success()' evaluated to 'true'
WARN[0001] unable to get git repo: unable to find git repo
WARN[0001] unable to get git revision: unable to find git repo
WARN[0001] unable to get git ref: unable to find git repo
WARN[0001] unable to get git repo: unable to find git repo
WARN[0001] unable to get git revision: unable to find git repo
WARN[0001] unable to get git ref: unable to find git repo
DEBU[0001] context steps => map[0:map[conclusion:success outcome:success outputs:map[]]]
DEBU[0001] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:Foo GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF: GITHUB_REPOSITORY: GITHUB_REPOSITORY_OWNER: GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA: GITHUB_TOKEN: GITHUB_WORKFLOW:Dynamic Matix GITHUB_WORKSPACE:/tmp/foo IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0001] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:Foo GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF: GITHUB_REPOSITORY: GITHUB_REPOSITORY_OWNER: GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA: GITHUB_TOKEN: GITHUB_WORKFLOW:Dynamic Matix GITHUB_WORKSPACE:/tmp/foo IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0001] context needs => map[bar:map[outputs:map[matrix:"{"package": ["a", "b"]}"]]]
[Dynamic Matix/Foo] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:Foo GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF: GITHUB_REPOSITORY: GITHUB_REPOSITORY_OWNER: GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA: GITHUB_TOKEN: GITHUB_WORKFLOW:Dynamic Matix GITHUB_WORKSPACE:/tmp/foo IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[Dynamic Matix/Foo] ⭐ Run foo ${{ matrix.package }}
DEBU[0001] Evaluating 'matrix['package']' instead of 'matrix.package'
DEBU[0001] Evaluating 'needs['bar']['outputs']['matrix']' instead of 'needs.bar.outputs.matrix'
DEBU[0001] context needs => map[bar:{Outputs:map[matrix:"{"package": ["a", "b"]}"] Result:success}]
DEBU[0001] Wrote command '
echo 'Matrix "" JSON: {} "{"package": ["a", "b"]}"'
' to 'workflow/0'
DEBU[0001] Writing entry to tarball workflow/0 len:52
[Dynamic Matix/Foo] Extracting content to '/tmp/foo'
[Dynamic Matix/Foo] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /tmp/foo/workflow/0] user= workdir=
[Dynamic Matix/Foo] Exec command '[bash --noprofile --norc -e -o pipefail /tmp/foo/workflow/0]'
[Dynamic Matix/Foo] Working directory '/tmp/foo'
| Matrix "" JSON: {} "{"package": ["a", "b"]}"
[Dynamic Matix/Foo] ✅ Success - foo ${{ matrix.package }}
[Dynamic Matix/Foo] Removed container: a2d3eff52f7d22fc4cdbf6a4f6f6b67bd6409725671bda491e641cf165076bf0
[Dynamic Matix/Foo] 🐳 docker volume rm act-Dynamic-Matix-Foo
WARN[0001] unable to get git repo: unable to find git repo
WARN[0001] unable to get git revision: unable to find git repo
WARN[0001] unable to get git ref: unable to find git repo
DEBU[0001] context steps => map[0:map[conclusion:success outcome:success outputs:map[]]]
DEBU[0001] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:Foo GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF: GITHUB_REPOSITORY: GITHUB_REPOSITORY_OWNER: GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA: GITHUB_TOKEN: GITHUB_WORKFLOW:Dynamic Matix GITHUB_WORKSPACE:/tmp/foo IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.18.2/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
```
</details>
| https://github.com/nektos/act/issues/927 | https://github.com/nektos/act/pull/964 | 0fae96792c77b395587c4d8129d0f680bffad643 | d1e0216039d92a4253fecc2b11a775a37ba43ceb | "2021-12-14T11:51:14Z" | go | "2022-02-15T16:35:02Z" |
closed | nektos/act | https://github.com/nektos/act | 905 | ["go.mod", "go.sum", "pkg/runner/run_context.go"] | Issue: SELinux labels issue | <!--
- Make sure you are able to reproduce it on the [latest version](https://github.com/nektos/act/releases)
- Search the existing issues.
- Refer to [README](https://github.com/nektos/act/blob/master/README.md).
-->
## System information
<!--
- Operating System: < Windows | Linux | macOS | etc... >
- Architecture: < x64 (64-bit) | x86 (32-bit) | arm64 (64-bit) | arm (32-bit) | etc... >
- Apple M1: < yes | no >
- Docker version: < output of `docker system info -f "{{.ServerVersion}}"` >
- Docker image used in `act`: < can be omitted if it's included in log >
- `act` version: < output of `act --version`, if you've built `act` yourself, please provide commit hash >
-->
- Operating System: Fedora 35
- Architecture: x64
- Apple M1: no
- Docker version: podman 3.4.2
- Docker image used in `act`: ghcr.io/catthehacker/ubuntu:act-latest
- `act` version: 0.2.24
## Expected behaviour
<!--
- Describe how whole process should go and finish
-->
Able to use output from one step of workflow in next step.
## Actual behaviour
<!--
- Describe the issue
-->
"Permission denied" error while trying to read workflow/1
With `sealert` app I got more specific error:
```
type=AVC msg=audit(1637902118.808:707): avc: denied { read } for pid=314744 comm="bash" name="1" dev="dm-0" ino=7640029 scontext=system_u:system_r:container_t:s0:c241,c445 tcontext=unconfined_u:object_r:user_home_t:s0 tclass=file permissive=0
```
## Workflow and/or repository
<!--
- Provide workflow with which we can reproduce the issue
OR
- Provide link to your GitHub repository that contains the workflow
-->
<details>
<summary>workflow</summary>
```yaml
---
name: Get latest release version
on:
schedule:
- cron: '0 10 * * *'
jobs:
get-version:
runs-on: ubuntu-latest
steps:
- uses: octokit/[email protected]
id: get_latest_release
with:
route: GET /repos/{owner}/{repo}/releases/latest
owner: latex-lsp
repo: texlab
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: "echo latest release: ${{ steps.get_latest_release.outputs.data }}"
```
</details>
## Steps to reproduce
<!--
- Make sure to include full command with parameters you used to run `act`, example:
1. Clone example repo (https://github.com/cplee/github-actions-demo)
2. Enter cloned repo directory
3. Run `act -s SUPER_SECRET=im-a-value`
-->
1. Run `act schedule` with provided workflow on Fedora
## `act` output
<!--
- Use `act` with `-v`/`--verbose` and paste output from your terminal in code block below
-->
<details>
<summary>Log</summary>
```none
[Get latest release version/get-version] 🚀 Start image=ghcr.io/catthehacker/ubuntu:act-latest
[Get latest release version/get-version] 🐳 docker run image=ghcr.io/catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Get latest release version/get-version] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root
[Get latest release version/get-version] ⭐ Run octokit/[email protected]
INFO[0003] ☁ git clone 'https://github.com/octokit/request-action' # ref=v2.x
[Get latest release version/get-version] 🐳 docker cp src=/home/eaglesemanation/.cache/act/[email protected]/ dst=/var/run/act/actions/[email protected]/
[Get latest release version/get-version] 🐳 docker exec cmd=[mkdir -p /var/run/act/actions/[email protected]/] user=
[Get latest release version/get-version] 🐳 docker exec cmd=[node /var/run/act/actions/[email protected]/dist/index.js] user=
| GET /repos/{owner}/{repo}/releases/latest
| > mediaType: [object Object]
| > repo: texlab
| > owner: latex-lsp
[Get latest release version/get-version] 💬 ::debug::route: 'GET /repos/{owner}/{repo}/releases/latest'
[Get latest release version/get-version] 💬 ::debug::parameters: { mediaType: {}, repo: 'texlab', owner: 'latex-lsp' }
[Get latest release version/get-version] 💬 ::debug::parsed request options: {%0A method: 'GET',%0A headers: {%0A accept: 'application/vnd.github.v3+json',%0A 'user-agent': 'octokit-action.js/3.7.1 octokit-core.js/3.4.0 Node.js/14.18.1 (linux; x64)'%0A },%0A request: { hook: [Function: bound bound register] },%0A data: undefined,%0A url: 'https://api.github.com/repos/latex-lsp/texlab/releases/latest'%0A}
| < 200 363ms
|
[Get latest release version/get-version] ⚙ ::set-output:: status=200
|
[Get latest release version/get-version] ⚙ ::set-output:: headers={
"access-control-allow-origin": "*",
"access-control-expose-headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, Deprecation, Sunset",
"cache-control": "private, max-age=60, s-maxage=60",
"connection": "close",
"content-encoding": "gzip",
"content-security-policy": "default-src 'none'",
"content-type": "application/json; charset=utf-8",
"date": "Fri, 26 Nov 2021 04:48:37 GMT",
"etag": "W/\"60bb3ae326ebf7a8e30cfcfe2015edf70dcf5f4e5118ffc37126f0947a320217\"",
"last-modified": "Wed, 10 Nov 2021 20:07:15 GMT",
"referrer-policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
"server": "GitHub.com",
"strict-transport-security": "max-age=31536000; includeSubdomains; preload",
"transfer-encoding": "chunked",
"vary": "Accept, Authorization, Cookie, X-GitHub-OTP, Accept-Encoding, Accept, X-Requested-With",
"x-accepted-oauth-scopes": "repo",
"x-content-type-options": "nosniff",
"x-frame-options": "deny",
"x-github-media-type": "github.v3; format=json",
"x-github-request-id": "D136:0207:15DAAB2:29B36CA:61A06725",
"x-oauth-scopes": "",
"x-ratelimit-limit": "5000",
"x-ratelimit-remaining": "4997",
"x-ratelimit-reset": "1637905226",
"x-ratelimit-resource": "core",
"x-ratelimit-used": "3",
"x-xss-protection": "0"
}
|
[Get latest release version/get-version] ⚙ ::set-output:: data={
"url": "https://api.github.com/repos/latex-lsp/texlab/releases/53116650",
"assets_url": "https://api.github.com/repos/latex-lsp/texlab/releases/53116650/assets",
"upload_url": "https://uploads.github.com/repos/latex-lsp/texlab/releases/53116650/assets{?name,label}",
"html_url": "https://github.com/latex-lsp/texlab/releases/tag/v3.3.1",
"id": 53116650,
"author": {
"login": "pfoerster",
"id": 13584622,
"node_id": "MDQ6VXNlcjEzNTg0NjIy",
"avatar_url": "https://avatars.githubusercontent.com/u/13584622?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/pfoerster",
"html_url": "https://github.com/pfoerster",
"followers_url": "https://api.github.com/users/pfoerster/followers",
"following_url": "https://api.github.com/users/pfoerster/following{/other_user}",
"gists_url": "https://api.github.com/users/pfoerster/gists{/gist_id}",
"starred_url": "https://api.github.com/users/pfoerster/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/pfoerster/subscriptions",
"organizations_url": "https://api.github.com/users/pfoerster/orgs",
"repos_url": "https://api.github.com/users/pfoerster/repos",
"events_url": "https://api.github.com/users/pfoerster/events{/privacy}",
"received_events_url": "https://api.github.com/users/pfoerster/received_events",
"type": "User",
"site_admin": false
},
"node_id": "RE_kwDOCbLXNc4DKn7q",
"tag_name": "v3.3.1",
"target_commitish": "master",
"name": "v3.3.1",
"draft": false,
"prerelease": false,
"created_at": "2021-11-10T19:52:37Z",
"published_at": "2021-11-10T19:54:26Z",
"assets": [
{
"url": "https://api.github.com/repos/latex-lsp/texlab/releases/assets/49103474",
"id": 49103474,
"node_id": "RA_kwDOCbLXNc4C7UJy",
"name": "texlab-x86_64-linux.tar.gz",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
},
"content_type": "application/gzip",
"state": "uploaded",
"size": 12458352,
"download_count": 839,
"created_at": "2021-11-10T20:01:15Z",
"updated_at": "2021-11-10T20:01:16Z",
"browser_download_url": "https://github.com/latex-lsp/texlab/releases/download/v3.3.1/texlab-x86_64-linux.tar.gz"
},
{
"url": "https://api.github.com/repos/latex-lsp/texlab/releases/assets/49103753",
"id": 49103753,
"node_id": "RA_kwDOCbLXNc4C7UOJ",
"name": "texlab-x86_64-macos.tar.gz",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
},
"content_type": "application/gzip",
"state": "uploaded",
"size": 11805707,
"download_count": 262,
"created_at": "2021-11-10T20:06:39Z",
"updated_at": "2021-11-10T20:06:39Z",
"browser_download_url": "https://github.com/latex-lsp/texlab/releases/download/v3.3.1/texlab-x86_64-macos.tar.gz"
},
{
"url": "https://api.github.com/repos/latex-lsp/texlab/releases/assets/49103792",
"id": 49103792,
"node_id": "RA_kwDOCbLXNc4C7UOw",
"name": "texlab-x86_64-windows.zip",
"label": "",
"uploader": {
"login": "github-actions[bot]",
"id": 41898282,
"node_id": "MDM6Qm90NDE4OTgyODI=",
"avatar_url": "https://avatars.githubusercontent.com/in/15368?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/github-actions%5Bbot%5D",
"html_url": "https://github.com/apps/github-actions",
"followers_url": "https://api.github.com/users/github-actions%5Bbot%5D/followers",
"following_url": "https://api.github.com/users/github-actions%5Bbot%5D/following{/other_user}",
"gists_url": "https://api.github.com/users/github-actions%5Bbot%5D/gists{/gist_id}",
"starred_url": "https://api.github.com/users/github-actions%5Bbot%5D/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/github-actions%5Bbot%5D/subscriptions",
"organizations_url": "https://api.github.com/users/github-actions%5Bbot%5D/orgs",
"repos_url": "https://api.github.com/users/github-actions%5Bbot%5D/repos",
"events_url": "https://api.github.com/users/github-actions%5Bbot%5D/events{/privacy}",
"received_events_url": "https://api.github.com/users/github-actions%5Bbot%5D/received_events",
"type": "Bot",
"site_admin": false
},
"content_type": "application/zip",
"state": "uploaded",
"size": 11533708,
"download_count": 326,
"created_at": "2021-11-10T20:07:14Z",
"updated_at": "2021-11-10T20:07:15Z",
"browser_download_url": "https://github.com/latex-lsp/texlab/releases/download/v3.3.1/texlab-x86_64-windows.zip"
}
],
"tarball_url": "https://api.github.com/repos/latex-lsp/texlab/tarball/v3.3.1",
"zipball_url": "https://api.github.com/repos/latex-lsp/texlab/zipball/v3.3.1",
"body": ""
}
[Get latest release version/get-version] ✅ Success - octokit/[email protected]
[Get latest release version/get-version] ⭐ Run echo latest release: ${{ steps.get_latest_release.outputs.data }}
[Get latest release version/get-version] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /home/eaglesemanation/Documents/Projects/copr-texlab/workflow/1] user=
| bash: /home/eaglesemanation/Documents/Projects/copr-texlab/workflow/1: Permission denied
[Get latest release version/get-version] ❌ Failure - echo latest release: ${{ steps.get_latest_release.outputs.data }}
Error: exit with `FAILURE`: 1
```
</details>
| https://github.com/nektos/act/issues/905 | https://github.com/nektos/act/pull/906 | 6ebcac37710ae5d4eb87f63f31d7e1be8fe3d217 | f7263399b9146a43b988e011d986d18d180414d2 | "2021-11-26T05:04:57Z" | go | "2021-11-26T05:18:31Z" |
closed | nektos/act | https://github.com/nektos/act | 884 | [".editorconfig", "pkg/model/workflow_test.go", "pkg/runner/runner_test.go", "pkg/runner/step_context.go", "pkg/runner/testdata/shells/bash/push.yml", "pkg/runner/testdata/shells/custom/push.yml", "pkg/runner/testdata/shells/pwsh/push.yml", "pkg/runner/testdata/shells/python/push.yml", "pkg/runner/testdata/shells/sh/push.yml"] | Issue: Unable to run `pwsh` steps | <!--
- Make sure you are able to reproduce it on the [latest version](https://github.com/nektos/act/releases)
- Search the existing issues.
- Refer to [README](https://github.com/nektos/act/blob/master/README.md).
-->
## System information
- Operating System: Windows 10
- Architecture: x64 (64-bit)
- Docker version: `20.10.18`
- Docker image used in `act`: `ghcr.io/catthehacker/ubuntu:pwsh-20.04`
- `act` version: act version `0.2.24`
## Expected behaviour
Running [this](https://github.com/extendr/extendr/blob/master/.github/workflows/test.yml) workflow
```pwsh
act -v -j tests_no_bindgen -P ubuntu-20.04=ghcr.io/catthehacker/ubuntu:pwsh-20.04
```
The workflow finishes suceesfully.
## Actual behaviour
```
[Tests/ubuntu-20.04 (R-release rust-stable)-3 ] 🐳 docker exec cmd=[pwsh -command . '/mnt/d/OneDrive/Development/OSS/extendr/workflow/5'] user=
[Tests/ubuntu-20.04 (R-release rust-stable)-3 ] Exec command '[pwsh -command . '/mnt/d/OneDrive/Development/OSS/extendr/workflow/5']'
| ResourceUnavailable: Program '5' failed to run: Exec format errorAt line:1 char:1
| + . '/mnt/d/OneDrive/Development/OSS/extendr/workflow/5'
| + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~.
time="2021-11-15T19:02:58+03:00" level=debug msg="exit with `FAILURE`: 1"
[Tests/ubuntu-20.04 (R-release rust-stable)-3 ] ❌ Failure - Configure Linux
```
## Workflow and/or repository
- [extendr/extendr](https://github.com/extendr/extendr)
- [test.yml](https://github.com/extendr/extendr/blob/master/.github/workflows/test.yml)
## Possible explanation
According to the [docs](https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idstepsshell), when executing PowerShell scripts, GHA appends `.ps1` to the file name.
If I connect to the container and modify the name of the faulty workflow (in this case, `5`), I can execute `pwsh -command . '/mnt/d/OneDrive/Development/OSS/extendr/workflow/5'` with no problem (I mean, this particular problem goes away).
## Steps to reproduce
```pwsh
git clone https://github.com/extendr/extendr
cd extendr
act -v -j tests_no_bindgen -P ubuntu-20.04=ghcr.io/catthehacker/ubuntu:pwsh-20.04
```
<details>
<summary>Log</summary>
```none
```
</details>
| https://github.com/nektos/act/issues/884 | https://github.com/nektos/act/pull/930 | 4e0ba618d34a198fa30904b1bf8549010513a931 | adabf2a2027fa9da3410febc474d55327e2abeb7 | "2021-11-15T16:09:30Z" | go | "2021-12-22T06:37:16Z" |
closed | nektos/act | https://github.com/nektos/act | 865 | [".editorconfig", "pkg/model/workflow_test.go", "pkg/runner/runner_test.go", "pkg/runner/step_context.go", "pkg/runner/testdata/shells/bash/push.yml", "pkg/runner/testdata/shells/custom/push.yml", "pkg/runner/testdata/shells/pwsh/push.yml", "pkg/runner/testdata/shells/python/push.yml", "pkg/runner/testdata/shells/sh/push.yml"] | Issue: Unable to parse file paths that include spaces | <!--
- Make sure you are able to reproduce it on the [latest version](https://github.com/nektos/act/releases)
- Search the existing issues.
- Refer to [README](https://github.com/nektos/act/blob/master/README.md).
-->
## System information
- Operating System: macOS
- Architecture: x64 (64-bit)
- Apple M1: no
- Docker version: 20.10.8
- `act` version: 0.2.24
## Expected behaviour
When `uses/setup-node@v2` is used, the version of node should print
## Actual behaviour
I have spaces in my file path `/Users/[my_username]/Code Projects`. When I run `npm -v` I receive the error `bash: /Users/[my_username]/Code: No such file or directory`.
## Workflow and/or repository
<details>
<summary>workflow</summary>
```yaml
# This is a basic workflow to help you get started with Actions
name: Build
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
# Runs a single command using the runners shell
- name: Run a one-line script
run: npm -v
```
</details>
## Steps to reproduce
<!--
- Make sure to include full command with parameters you used to run `act`, example:
1. Clone any repo onto a machine that has a space in its file path
2. Enter cloned repo directory
3. Run `act -j build`
-->
## `act` output
if filepath = /Users/username/Code Projects/repo
`bash: /Users/username/Code : No such file or directory`
<details>
<summary>Log</summary>
```none
PASTE YOUR LOG HERE
```
</details>
| https://github.com/nektos/act/issues/865 | https://github.com/nektos/act/pull/930 | 4e0ba618d34a198fa30904b1bf8549010513a931 | adabf2a2027fa9da3410febc474d55327e2abeb7 | "2021-11-09T23:33:14Z" | go | "2021-12-22T06:37:16Z" |
closed | nektos/act | https://github.com/nektos/act | 852 | ["go.mod", "go.sum"] | Image selection issue when dealing with file system permissions and package selection | ## System information
- Operating System: Linux
- Architecture: x64 (64-bit)
- Apple M1: no
- Docker version: `20.10.9-ce`
- Docker image used in `act`: (discussed below)
- `act` version: `act version 0.2.24-31-g83a28d9`
## Expected behaviour
That using either `ghcr.io/catthehacker/ubuntu:act-latest` or `ghcr.io/catthehacker/ubuntu:full-latest`, I should be able to make a working directory in the current repo **and** be able to `apt install` `gcc-11`.
## Actual behaviour
Here's what I experience:
* With `ghcr.io/catthehacker/ubuntu:act-latest` (a4d332757f9a) and `--bind`:
+ `mkdir` works
+ no `gcc-11`
* With `ghcr.io/catthehacker/ubuntu:act-latest` (a4d332757f9a) and *without* `--bind`:
+ `mkdir` works
+ no `gcc-11`
* With `ghcr.io/catthehacker/ubuntu:full-latest` (469ca44c2e1c) and `--bind`:
+ `mkdir` fails
+ has `gcc-11`
* With `ghcr.io/catthehacker/ubuntu:full-latest` (469ca44c2e1c) and *without* `--bind`:
+ `mkdir` fails
+ has `gcc-11`
## Workflow and/or repository
```yaml
name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: deps
run: |
sudo apt update -y
sudo apt search gcc-11
mkdir moo
```
## `act` output
I can provide this, but it is pretty boring, it simply reflects what I gave above; that is:
- `ghcr.io/catthehacker/ubuntu:act-latest` allows me to make directories, but doesn't have `gcc-11`
- `ghcr.io/catthehacker/ubuntu:full-latest` has `gcc-11`, but doesn't allow me to make directories
### Output of `act -P ubuntu-latest=ghcr.io/catthehacker/ubuntu:full-latest --bind -v`
```
time="2021-10-30T19:16:25+01:00" level=debug msg="Loading environment from /home/avj/test/.env"
time="2021-10-30T19:16:25+01:00" level=debug msg="Loading secrets from /home/avj/test/.secrets"
time="2021-10-30T19:16:25+01:00" level=debug msg="Loading workflows from '/home/avj/test/.github/workflows'"
time="2021-10-30T19:16:25+01:00" level=debug msg="Loading workflows recursively"
time="2021-10-30T19:16:25+01:00" level=debug msg="Found workflow 'push.yml' in '/home/avj/test/.github/workflows/push.yml'"
time="2021-10-30T19:16:25+01:00" level=debug msg="Reading workflow '/home/avj/test/.github/workflows/push.yml'"
time="2021-10-30T19:16:25+01:00" level=debug msg="Correcting if statements '/home/avj/test/.github/workflows/push.yml'"
time="2021-10-30T19:16:25+01:00" level=debug msg="Planning event: push"
time="2021-10-30T19:16:25+01:00" level=debug msg="Loading slug from git directory '/home/avj/test/.git'"
time="2021-10-30T19:16:25+01:00" level=debug msg="Found revision: cebf212b374326e5bd79aef85867bdd357db4daa\n"
time="2021-10-30T19:16:25+01:00" level=debug msg="Loading revision from git directory '/home/avj/test/.git'"
time="2021-10-30T19:16:25+01:00" level=debug msg="Found revision: cebf212b374326e5bd79aef85867bdd357db4daa\n"
time="2021-10-30T19:16:25+01:00" level=debug msg="HEAD points to 'cebf212b374326e5bd79aef85867bdd357db4daa'"
time="2021-10-30T19:16:25+01:00" level=debug msg="using github ref: refs/heads/master"
time="2021-10-30T19:16:25+01:00" level=debug msg="context env => map[ACT:true]"
time="2021-10-30T19:16:25+01:00" level=debug msg="context needs => map[]"
[build/build] 🚀 Start image=ghcr.io/catthehacker/ubuntu:full-latest
[build/build] 🐳 docker pull image=ghcr.io/catthehacker/ubuntu:full-latest platform= username= forcePull=false
[build/build] 🐳 docker pull ghcr.io/catthehacker/ubuntu:full-latest
time="2021-10-30T19:16:25+01:00" level=debug msg="Image exists? true"
[build/build] Removed container: b235deed4423a402564b3b0a9ad4de74b29a7814e020be91991e36e3a1320f98
[build/build] 🐳 docker create image=ghcr.io/catthehacker/ubuntu:full-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[build/build] Created container name=act-build-build id=efe66f15daadd1d9a44f91b3c7d8bb089491df2ec1c1e40822d06b46baeb5f3f from image ghcr.io/catthehacker/ubuntu:full-latest (platform: )
[build/build] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_TEMP=/tmp]
[build/build] 🐳 docker run image=ghcr.io/catthehacker/ubuntu:full-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[build/build] Starting container: efe66f15daadd1d9a44f91b3c7d8bb089491df2ec1c1e40822d06b46baeb5f3f
[build/build] Started container: efe66f15daadd1d9a44f91b3c7d8bb089491df2ec1c1e40822d06b46baeb5f3f
[build/build] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root workdir=
[build/build] Exec command '[mkdir -m 0777 -p /var/run/act]'
[build/build] Working directory '/home/avj/test'
time="2021-10-30T19:16:26+01:00" level=debug msg="Writing entry to tarball workflow/event.json len:2"
time="2021-10-30T19:16:26+01:00" level=debug msg="Writing entry to tarball workflow/envs.txt len:0"
time="2021-10-30T19:16:26+01:00" level=debug msg="Writing entry to tarball workflow/paths.txt len:0"
[build/build] Extracting content to '/var/run/act/'
time="2021-10-30T19:16:26+01:00" level=debug msg="Loading slug from git directory '/home/avj/test/.git'"
time="2021-10-30T19:16:26+01:00" level=debug msg="Found revision: cebf212b374326e5bd79aef85867bdd357db4daa\n"
time="2021-10-30T19:16:26+01:00" level=debug msg="Loading revision from git directory '/home/avj/test/.git'"
time="2021-10-30T19:16:26+01:00" level=debug msg="Found revision: cebf212b374326e5bd79aef85867bdd357db4daa\n"
time="2021-10-30T19:16:26+01:00" level=debug msg="HEAD points to 'cebf212b374326e5bd79aef85867bdd357db4daa'"
time="2021-10-30T19:16:26+01:00" level=debug msg="using github ref: refs/heads/master"
time="2021-10-30T19:16:26+01:00" level=debug msg="Loading slug from git directory '/home/avj/test/.git'"
time="2021-10-30T19:16:26+01:00" level=debug msg="Found revision: cebf212b374326e5bd79aef85867bdd357db4daa\n"
time="2021-10-30T19:16:26+01:00" level=debug msg="Loading revision from git directory '/home/avj/test/.git'"
time="2021-10-30T19:16:26+01:00" level=debug msg="Found revision: cebf212b374326e5bd79aef85867bdd357db4daa\n"
time="2021-10-30T19:16:26+01:00" level=debug msg="HEAD points to 'cebf212b374326e5bd79aef85867bdd357db4daa'"
time="2021-10-30T19:16:26+01:00" level=debug msg="using github ref: refs/heads/master"
time="2021-10-30T19:16:26+01:00" level=debug msg="context env => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:build GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/master GITHUB_REPOSITORY:/tmp/ GITHUB_REPOSITORY_OWNER: GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:cebf212b374326e5bd79aef85867bdd357db4daa GITHUB_TOKEN: GITHUB_WORKFLOW:build GITHUB_WORKSPACE:/home/avj/test GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]"
time="2021-10-30T19:16:26+01:00" level=debug msg="context needs => map[]"
time="2021-10-30T19:16:26+01:00" level=debug msg="context env => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:build GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/master GITHUB_REPOSITORY:/tmp/ GITHUB_REPOSITORY_OWNER: GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:cebf212b374326e5bd79aef85867bdd357db4daa GITHUB_TOKEN: GITHUB_WORKFLOW:build GITHUB_WORKSPACE:/home/avj/test GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]"
[build/build] setupEnv => map[ACCEPT_EULA:Y ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_NDK_HOME:/usr/local/lib/android/sdk/ndk-bundle ANDROID_NDK_LATEST_HOME:/usr/local/lib/android/sdk/ndk/22.1.7171670 ANDROID_NDK_ROOT:/usr/local/lib/android/sdk/ndk-bundle ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BOOTSTRAP_HASKELL_NONINTERACTIVE:1 CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DEPLOYMENT_BASEPATH:/opt/runner DOTNET_MULTILEVEL_LOOKUP:0 DOTNET_NOLOGO:1 DOTNET_SKIP_FIRST_TIME_EXPERIENCE:1 GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:build GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/master GITHUB_REPOSITORY:/tmp/ GITHUB_REPOSITORY_OWNER: GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:cebf212b374326e5bd79aef85867bdd357db4daa GITHUB_TOKEN: GITHUB_WORKFLOW:build GITHUB_WORKSPACE:/home/avj/test GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.15/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.15/x64 GOROOT_1_16_X64:/opt/hostedtoolcache/go/1.16.7/x64 GRAALVM_11_ROOT:/usr/local/graalvm/graalvm-ce-java11-21.2.0 GRADLE_HOME:/usr/share/gradle-7.2 HOMEBREW_CELLAR:/home/linuxbrew/.linuxbrew/Cellar HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS:3650 HOMEBREW_NO_AUTO_UPDATE:1 HOMEBREW_PREFIX:/home/linuxbrew/.linuxbrew HOMEBREW_REPOSITORY:/home/linuxbrew/.linuxbrew/Homebrew HOMEBREW_SHELLENV_PREFIX:/home/linuxbrew/.linuxbrew IMAGE_OS:ubuntu20 ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.6-standalone.jar LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NVM_DIR:/home/runner/.nvm PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/home/runner/.local/bin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/usr/local/.ghcup/bin:/home/runner/.dotnet/tools:/snap/bin:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:/opt/pipx_bin PIPX_HOME:/opt/pipx RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin USER:runner VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg XDG_CONFIG_HOME:/home/runner/.config]
[build/build] ⭐ Run deps
time="2021-10-30T19:16:26+01:00" level=debug msg="Wrote command '\nmkdir moo\n\n' to 'workflow/0'"
time="2021-10-30T19:16:26+01:00" level=debug msg="Writing entry to tarball workflow/0 len:10"
[build/build] Extracting content to '/home/avj/test'
[build/build] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /home/avj/test/workflow/0] user= workdir=
[build/build] Exec command '[bash --noprofile --norc -e -o pipefail /home/avj/test/workflow/0]'
[build/build] Working directory '/home/avj/test'
[build/build] | mkdir: cannot create directory 'moo': Permission denied
time="2021-10-30T19:16:26+01:00" level=debug msg="exit with `FAILURE`: 1"
[build/build] ❌ Failure - deps
time="2021-10-30T19:16:26+01:00" level=debug msg="exit with `FAILURE`: 1"
Error: exit with `FAILURE`: 1
``` | https://github.com/nektos/act/issues/852 | https://github.com/nektos/act/pull/2067 | fb4f29fd6d38c6ce57654be5799cb0c911820de4 | 84a4025bc844eee060ad0d2d71af7b4bd2595a94 | "2021-10-30T18:17:13Z" | go | "2023-10-30T03:54:16Z" |
closed | nektos/act | https://github.com/nektos/act | 850 | ["pkg/runner/runner_test.go", "pkg/runner/step_context.go", "pkg/runner/testdata/container-hostname/push.yml", "pkg/runner/testdata/shells/bash/push.yml", "pkg/runner/testdata/shells/defaults/push.yml", "pkg/runner/testdata/shells/pwsh/push.yml", "pkg/runner/testdata/shells/python/push.yml", "pkg/runner/testdata/shells/sh/push.yml"] | Issue: act assumes bash shell when connecting to a container | ## System information
- Operating System: macOS
- Architecture: x64 (64-bit)
- Apple M1: no
- Docker version: `20.10.8`
- `act` version: 0.2.24 (via brew)
## Expected behaviour
- ideally it would run my workflow, but start-up currently fails
## Actual behaviour
- act fails running my command
<details>
<summary>log output (without verbose)</summary>
```
❯ act "pull_request"
[test/deployment] 🚀 Start image=quay.io/pngmbh/quantum-cli:latest
[test/deployment] 🐳 docker run image=quay.io/pngmbh/quantum-cli:latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[test/deployment] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root
[test/deployment] ⭐ Run quantum-cli
[test/deployment] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /dir/workflow/0] user=
| OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "bash": executable file not found in $PATH: unknown
[test/deployment] ❌ Failure - quantum-cli
Error: exit with `FAILURE`: 126
```
</details>
The image is alpine-based, so there is no `bash` included by default.
A simple test of the image works though:
```
$ docker run quay.io/pngmbh/quantum-cli quantum-cli -h
...
```
## Workflow and/or repository
<details>
<summary>runs quantum-cli --help</summary>
```yaml
---
name: test
on:
pull_request:
jobs:
deployment:
runs-on: ubuntu-latest
container:
image: quay.io/pngmbh/quantum-cli:latest
steps:
- name: quantum-cli
run: >
quantum-cli
--help
```
</details>
## Steps to reproduce
`act "pull_request"`
## `act` output
<details>
<summary>Log (without env stuff)</summary>
```none
...
[test/deployment] ⭐ Run quantum-cli
DEBU[0001] Wrote command '
quantum-cli --help
' to 'workflow/0'
DEBU[0001] Writing entry to tarball workflow/0 len:19
[test/deployment] Extracting content to '/dir'
[test/deployment] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /Users/till/Documents/workspaces/pngmbh/pn-ci/workflow/0] user=
[test/deployment] Exec command '[bash --noprofile --norc -e -o pipefail /dir/workflow/0]'
| OCI runtime exec failed: exec failed: container_linux.go:380: starting container process caused: exec: "bash": executable file not found in $PATH: unknown
DEBU[0001] exit with `FAILURE`: 126
[test/deployment] ❌ Failure - quantum-cli
DEBU[0001] exit with `FAILURE`: 126
Error: exit with `FAILURE`: 126
```
</details>
| https://github.com/nektos/act/issues/850 | https://github.com/nektos/act/pull/853 | 7c735310081f712d3331bac063d8bb9000bc3bff | e9ae7894e38ed276c41e6cd7b958a81da79249ad | "2021-10-22T08:58:46Z" | go | "2021-11-03T18:47:47Z" |
closed | nektos/act | https://github.com/nektos/act | 826 | ["go.mod", "go.sum"] | Issue: support for reusable workflows | ref: https://github.com/github/roadmap/issues/98
GitHub is going to support reusable workflows (similar to Azure DevOps Pipelines)
> How will it work?
> To reuse a workflow, ensure it listens to a new `workflow_call` event trigger, and then reference it with the familiar `uses` syntax. Optionally, use `inputs` and `outputs` to pass data between them, just like with actions.
>
> For example:
>
> ```yaml
> name: Build & Release App
>
> on:
> push:
>
> jobs:
> build:
> uses: example-org/automation/workflows/build.yml@1
>
> release:
> needs: build
> uses: example-org/automation/workflows/release.yml@1
> with:
> artifact-url: jobs.build.outputs.artifact-url
> ``` | https://github.com/nektos/act/issues/826 | https://github.com/nektos/act/pull/2011 | 83af8f8767091542dcc4263ebea06e6cc4edd7ce | b637d79ec3a0468e0ff968cdf57420c7020265c8 | "2021-09-26T05:27:32Z" | go | "2023-09-18T03:47:27Z" |
closed | nektos/act | https://github.com/nektos/act | 808 | ["go.mod", "go.sum", "pkg/container/docker_run.go", "pkg/runner/run_context.go", "pkg/runner/runner_test.go", "pkg/runner/testdata/container-hostname/push.yml"] | Enhancement: support for container option: --hostname | Currently container option `--hostname` is not supported.
Example:
```
name: container-hostname
on: push
jobs:
with-hostname:
runs-on: ubuntu-latest
container:
image: node:12-buster-slim
options: "--hostname my.host.local"
steps:
- run: |
[[ $(uname -n) == "my.host.local" ]]
```
above example will fail, because the container has default hostname, not requested hostname: `my.host.local`
# Expected behaviour:
above example run successfully
| https://github.com/nektos/act/issues/808 | https://github.com/nektos/act/pull/809 | f0fd0af5ce0f924e45c88aed4434ad5821da7b0d | 9126f15aa221099ef0e7613940e89c06375ea49e | "2021-09-09T19:35:27Z" | go | "2021-09-10T05:03:40Z" |
closed | nektos/act | https://github.com/nektos/act | 807 | [".github/workflows/stale.yml"] | Enhancement: set tag when using "act release" | ## Describe feature
I have in my yaml:
```
on:
release:
types: [created]
```
It would be really useful to be able to set the tag I want in this instance when using `act release`.
I've asked a couple of times on gitter and not received any responses, so I assume it's not possible at the moment? If it is, I can't find it 😄
Thank you! | https://github.com/nektos/act/issues/807 | https://github.com/nektos/act/pull/1357 | 96ba76bff23f2cc2345437ffc6b1815447ef1e45 | 9a494cac1ed5f22539d727f6958f4d24df7104b8 | "2021-09-08T22:30:23Z" | go | "2022-09-26T02:18:56Z" |
closed | nektos/act | https://github.com/nektos/act | 795 | ["go.mod", "pkg/container/docker_pull.go", "pkg/container/docker_pull_test.go"] | Actions Container image is misinterpreted when using own registry with short oci url | ## System information
- Operating System: MacOS
- Architecture: x64 (64-bit)
- Apple M1: no
- Docker version: 20.10.8
- `act` version: act version 0.2.24
## Expected behaviour
Pulls the correct image
## Actual behaviour
Adds docker.io to the image which already has a private repo specified and thus the url is invalid.
## Workflow and/or repository
<details>
<summary>workflow</summary>
```none
jobs:
myjob:
runs-on: [self-hosted, linux]
name: test job
container:
image: myregistry:50000/ubuntu:20.04
```
</details>
## Steps to reproduce
Create workflow with custom container image in job step(see workflow file above).
Watch pull fail.
## `act` output
If i just do a act without verbose i get:
```
[Run database tests/Run psql db tests] 🚀 Start image=myregistry:50000/ubuntu:20.04
Error: invalid reference format
```
So image pull URL looks fine.
However if i do act -vvv on the same workflow i get:
```
[Run database tests/Run psql db tests] 🐳 docker pull myregistry:50000/ubuntu:20.04
DEBU[0000] Image exists? false
[Run database tests/Run psql db tests] pulling image 'docker.io/myregistry:50000/ubuntu:20.04' ()
DEBU[0000] invalid reference format
```
So here one can see it puts a docker.io in front of the already complete OCI Resource URL.
Then it fails as this obviously is not allowed. | https://github.com/nektos/act/issues/795 | https://github.com/nektos/act/pull/877 | 62d2167f3b3fa956f8c5aaff3c660f386092db63 | ec34eb9532d314ba8d3c23472acf4037f2c084cd | "2021-09-01T12:00:55Z" | go | "2021-11-13T19:35:45Z" |
closed | nektos/act | https://github.com/nektos/act | 785 | ["go.mod", "go.sum"] | Issue: act does not update actions if version is taken from branch | <!--
- Make sure you are able to reproduce it on the [latest version](https://github.com/nektos/act/releases)
- Search the existing issues.
- Refer to [README](https://github.com/nektos/act/blob/master/README.md).
-->
## System information
- Operating System: Linux
- Architecture: x86 (32-bit), arm (32-bit)
- Apple M1: no
- Docker version: 20.10.8
- Docker image used in `act`: `arm32v7/debian:buster`
- `act` version: ?
## Expected behaviour
<!--
- Describe how whole process should go and finish
-->
1. refer to a custom action via branch name, e.g. `master`:
```yaml
- uses: myci-actions/add-deb-repo@master
# ...
```
2. run workflow
3. update the action, so that `master` points to another commit
4. run workflow
Result: on step 4 the updated action is used
## Actual behaviour
<!--
- Describe the issue
-->
on step 4 the old action is used. Repeating the workflow run makes it to use the proper updated action.
## Workflow and/or repository
<!--
- Provide workflow with which we can reproduce the issue
OR
- Provide link to your GitHub repository that contains the workflow
<details>
<summary>workflow</summary>
```none
name: example workflow
on: [push]
jobs:
[...]
```
</details>
## `act` output
<!--
- Use `act` with `-v`/`--verbose` and paste output from your terminal in code block below
-->
<details>
<summary>Log</summary>
```none
⭐ Run ChristopherHX/ghat2/.github/comp1@issue-49
☁ git clone 'https://github.com/ChristopherHX/ghat2' # ref=issue-49
cloning https://github.com/ChristopherHX/ghat2 to C:\Users\Christopher\.cache\act/ChristopherHX-ghat2-.github-comp1@issue-49
Provided ref is not a sha. Checking out branch before pulling changes
Unable to pull refs/heads/issue-49: non-fast-forward update
Cloned https://github.com/ChristopherHX/ghat2 to C:\Users\Christopher\.cache\act/ChristopherHX-ghat2-.github-comp1@issue-49
Checked out issue-49
open C:\Users\Christopher\.cache\act\ChristopherHX-ghat2-.github-comp1@issue-49\.github\comp1\action.yaml: Das System kann den angegebenen Pfad nicht finden.
open C:\Users\Christopher\.cache\act\ChristopherHX-ghat2-.github-comp1@issue-49\.github\comp1\action.yaml: Das System kann den angegebenen Pfad nicht finden.
❌ Failure - ChristopherHX/ghat2/.github/comp1@issue-49
```
</details>
## info
I faced this issue in context of github actions runner based on act, see corresponding issue there: https://github.com/ChristopherHX/github-act-runner/issues/49 | https://github.com/nektos/act/issues/785 | https://github.com/nektos/act/pull/1925 | 67f4baa618b3371cc0ec0c03b169141c25809c9e | 17bf4fc5afd147ea967445b9d0dc2e684f57377c | "2021-08-27T15:43:11Z" | go | "2023-07-24T02:53:35Z" |
closed | nektos/act | https://github.com/nektos/act | 783 | [".github/workflows/checks.yml"] | Using "uses" inside composite action | ## System information
<!--
- Operating System: < Windows | Linux | macOS | etc... >
- Architecture: < x64 (64-bit) | x86 (32-bit) | arm64 (64-bit) | arm (32-bit) | etc... >
- Apple M1: < yes | no >
- Docker version: < output of `docker system info -f "{{.ServerVersion}}"` >
- Docker image used in `act`: < can be omitted if it's included in log >
- `act` version: < output of `act --version`, if you've built `act` yourself, please provide commit hash >
-->
- Operating System: Linux
- Architecture: x64
- Apple M1: -
- Docker version: 20.10.8
- Docker image used in `act`: custom image
- `act` version: 0.2.24
## Expected behaviour
I would like to use other actions inside my own actions and it is now possible on GitHub actions: https://github.com/actions/runner/issues/646#issuecomment-901336347
Is this feature supported in act?
This is custom action:
```yml
name: 'Login to GitHub Container Registry'
description: 'Action that logs user in to GitHub Container Registry'
inputs:
token:
required: true
description: 'User GitHub token'
runs:
using: 'composite'
steps:
- name: Login
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ inputs.token }}
```
## Actual behaviour
`Error: (StepID: Login): Unexpected value 'uses'`
## Workflow and/or repository
```yml
job-2:
name: End to end (E2E) tests
runs-on: ubuntu-latest
steps:
- name: Checkout GitHub repository
uses: actions/checkout@v2
- name: Login to ghcr
uses: ./.github/actions/docker-ghcr-login
with:
token: ${{ secrets.GITHUB_TOKEN }}
```
## Steps to reproduce
`act pull_request -j job-2`
## `act` output
`Error: (StepID: Login): Unexpected value 'uses'` | https://github.com/nektos/act/issues/783 | https://github.com/nektos/act/pull/1359 | 3fccb5ae3467fbd013ca72ed08732d2916beb1c2 | d137ec82852083eef45009dcaf368c3dcdd0b9a6 | "2021-08-22T11:50:43Z" | go | "2022-09-26T02:37:58Z" |
closed | nektos/act | https://github.com/nektos/act | 778 | ["go.mod", "go.sum"] | Issue: Github action checkout tries to checkout old repo and doesn't follow redirects | ## System information
- Operating System: Linux
- Architecture: x64
- Docker version: 20.10.7
- `act` version: act no longer has the version tag but us quite recent few days.
## Actual behavior
The Repo has a redirect and the checkout step tries to checkout the old repo without following the redirect. The same workflow works when in github actions
https://github.com/brocaar/chirpstack-application-server/runs/3350138619?check_suite_focus=true
## Workflow and/or repository
https://github.com/brocaar/chirpstack-application-server/runs/3350138619?check_suite_focus=true
## Steps to reproduce
act -j docker -v -e .local/gh-event.json
## `act` output
<details>
<summary>Log</summary>
Event file
```
{
"repository": {
"name": "chirpstack-application-server"
},
"ref": "refs/tags/v/0.1"
}
```
```none
act -j docker -v -e .local/gh-event.json
DEBU[0000] Loading environment from /home/krasi/src/github.com/brocaar/chirpstack-application-server/.env
DEBU[0000] Loading secrets from /home/krasi/src/github.com/brocaar/chirpstack-application-server/.secrets
DEBU[0000] Loading workflows from '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.github/workflows'
DEBU[0000] Loading workflows recursively
DEBU[0000] Found workflow 'docker.yml' in '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.github/workflows/docker.yml'
DEBU[0000] Found workflow 'main.yml' in '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.github/workflows/main.yml'
DEBU[0000] Reading workflow '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.github/workflows/docker.yml'
DEBU[0000] Correcting if statements '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.github/workflows/docker.yml'
DEBU[0000] Reading workflow '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.github/workflows/main.yml'
DEBU[0000] Correcting if statements '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.github/workflows/main.yml'
DEBU[0000] Planning job: docker
DEBU[0000] Reading event.json from /home/krasi/src/github.com/brocaar/chirpstack-application-server/.local/gh-event.json
DEBU[0000] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0000] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0000] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0000] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0000] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0000] using github ref: refs/heads/multi-arch
DEBU[0000] context env => map[ACT:true]
DEBU[0000] context needs => map[]
[CI/docker] 🚀 Start image=catthehacker/ubuntu:act-latest
DEBU[0000] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0000] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0000] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0000] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0000] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0000] using github ref: refs/heads/multi-arch
[CI/docker] 🐳 docker pull image=catthehacker/ubuntu:act-latest platform= username= forcePull=false
[CI/docker] 🐳 docker pull catthehacker/ubuntu:act-latest
DEBU[0000] Image exists? false
[CI/docker] pulling image 'docker.io/catthehacker/ubuntu:act-latest' ()
[CI/docker] Pulling from catthehacker/ubuntu :: act-latest
[CI/docker] Pulling fs layer :: 16ec32c2132b
[CI/docker] Pulling fs layer :: e844d0dd6bf6
[CI/docker] Pulling fs layer :: 1e6e2a2dd736
[CI/docker] Pulling fs layer :: ebaacada9b34
[CI/docker] Pulling fs layer :: 47b6cb30d160
[CI/docker] Pulling fs layer :: c5db15d4a4ec
[CI/docker] Pulling fs layer :: ad064434cd3a
[CI/docker] Waiting :: ebaacada9b34
[CI/docker] Waiting :: 47b6cb30d160
[CI/docker] Downloading :: e844d0dd6bf6 :: [> ] REMOVED some download logs
[CI/docker] Extracting :: ad064434cd3a :: [==================================================>] 97.42MB/97.42MB
[CI/docker] Pull complete :: ad064434cd3a
[CI/docker] Digest: sha256:3f7d1579ecc0ff94da5aefaece3f4574552d73e7bb11e04d68cb41da9fa5aca7 ::
[CI/docker] Status: Downloaded newer image for catthehacker/ubuntu:act-latest ::
[CI/docker] 🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[CI/docker] Created container name=act-CI-docker id=13183c9e20fa31b42a7e773b24d77373b4deb10c1299066829182b5a72e72ec4 from image catthehacker/ubuntu:act-latest (platform: )
[CI/docker] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_TEMP=/tmp]
[CI/docker] 🐳 docker run image=catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[CI/docker] Starting container: 13183c9e20fa31b42a7e773b24d77373b4deb10c1299066829182b5a72e72ec4
[CI/docker] Started container: 13183c9e20fa31b42a7e773b24d77373b4deb10c1299066829182b5a72e72ec4
[CI/docker] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root workdir=
[CI/docker] Exec command '[mkdir -m 0777 -p /var/run/act]'
[CI/docker] Working directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server'
[CI/docker] 🐳 docker cp src=/home/krasi/src/github.com/brocaar/chirpstack-application-server/. dst=/home/krasi/src/github.com/brocaar/chirpstack-application-server
[CI/docker] 🐳 docker exec cmd=[mkdir -p /home/krasi/src/github.com/brocaar/chirpstack-application-server] user= workdir=
[CI/docker] Exec command '[mkdir -p /home/krasi/src/github.com/brocaar/chirpstack-application-server]'
[CI/docker] Working directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server'
DEBU[0053] Writing tarball /tmp/act648554476 from /home/krasi/src/github.com/brocaar/chirpstack-application-server/.
DEBU[0053] Stripping prefix:/home/krasi/src/github.com/brocaar/chirpstack-application-server/ src:/home/krasi/src/github.com/brocaar/chirpstack-application-server/.
[CI/docker] Extracting content from '/tmp/act648554476' to '/home/krasi/src/github.com/brocaar/chirpstack-application-server'
DEBU[0054] Writing entry to tarball workflow/event.json len:107
DEBU[0054] Writing entry to tarball workflow/envs.txt len:0
DEBU[0054] Writing entry to tarball workflow/paths.txt len:0
[CI/docker] Extracting content to '/var/run/act/'
DEBU[0054] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0054] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0054] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0054] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0054] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0054] using github ref: refs/heads/multi-arch
DEBU[0054] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0054] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0054] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0054] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0054] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0054] using github ref: refs/heads/multi-arch
DEBU[0054] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0054] context needs => map[]
DEBU[0054] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:docker GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/multi-arch GITHUB_REPOSITORY:brocaar/lora-app-server GITHUB_REPOSITORY_OWNER:brocaar GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:5a5c7031fa8d5b879d258836fb7e1decdeeffd24 GITHUB_TOKEN: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 GITHUB_WORKFLOW:CI GITHUB_WORKSPACE:/home/krasi/src/github.com/brocaar/chirpstack-application-server IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[CI/docker] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:docker GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/multi-arch GITHUB_REPOSITORY:brocaar/lora-app-server GITHUB_REPOSITORY_OWNER:brocaar GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:5a5c7031fa8d5b879d258836fb7e1decdeeffd24 GITHUB_TOKEN:*** GITHUB_WORKFLOW:CI GITHUB_WORKSPACE:/home/krasi/src/github.com/brocaar/chirpstack-application-server IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[CI/docker] ⭐ Run Checkout
DEBU[0054] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0054] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0054] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0054] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0054] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0054] using github ref: refs/heads/multi-arch
[CI/docker] Skipping local actions/checkout because workdir was already copied
DEBU[0054] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0054] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0054] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0054] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0054] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0054] using github ref: refs/heads/multi-arch
DEBU[0054] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0054] context needs => map[]
DEBU[0054] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:docker GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/multi-arch GITHUB_REPOSITORY:brocaar/lora-app-server GITHUB_REPOSITORY_OWNER:brocaar GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:5a5c7031fa8d5b879d258836fb7e1decdeeffd24 GITHUB_TOKEN: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 GITHUB_WORKFLOW:CI GITHUB_WORKSPACE:/home/krasi/src/github.com/brocaar/chirpstack-application-server IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[CI/docker] ✅ Success - Checkout
DEBU[0054] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0054] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0054] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0054] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0054] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0054] using github ref: refs/heads/multi-arch
DEBU[0054] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0054] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0054] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0054] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0054] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0054] using github ref: refs/heads/multi-arch
DEBU[0054] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0054] context needs => map[]
DEBU[0054] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0054] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0054] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0054] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0054] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0054] using github ref: refs/heads/multi-arch
DEBU[0054] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0054] context needs => map[]
DEBU[0054] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0054] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0054] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0054] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0054] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0054] using github ref: refs/heads/multi-arch
DEBU[0054] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0054] context needs => map[]
DEBU[0054] Evaluating 'github['event']['repository']['name']' instead of 'github.event.repository.name'
DEBU[0054] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:meta GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:docker GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/multi-arch GITHUB_REPOSITORY:brocaar/lora-app-server GITHUB_REPOSITORY_OWNER:brocaar GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:5a5c7031fa8d5b879d258836fb7e1decdeeffd24 GITHUB_TOKEN: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 GITHUB_WORKFLOW:CI GITHUB_WORKSPACE:/home/krasi/src/github.com/brocaar/chirpstack-application-server IMAGE_OS:ubuntu20 INPUT_IMAGES:chirpstack/${{ github.event.repository.name }} INPUT_TAGS:type=semver,pattern={{version}}
type=semver,pattern={{major}}
type=semver,pattern={{major}}.{{minor}}
ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0054] Evaluating 'github['event']['repository']['name']' instead of 'github.event.repository.name'
[CI/docker] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:meta GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:docker GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/multi-arch GITHUB_REPOSITORY:brocaar/lora-app-server GITHUB_REPOSITORY_OWNER:brocaar GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:5a5c7031fa8d5b879d258836fb7e1decdeeffd24 GITHUB_TOKEN:*** GITHUB_WORKFLOW:CI GITHUB_WORKSPACE:/home/krasi/src/github.com/brocaar/chirpstack-application-server IMAGE_OS:ubuntu20 INPUT_IMAGES:chirpstack/chirpstack-application-server INPUT_TAGS:type=semver,pattern={{version}}
type=semver,pattern={{major}}
type=semver,pattern={{major}}.{{minor}}
ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[CI/docker] ⭐ Run Docker meta
DEBU[0054] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0054] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0054] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0054] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0054] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0054] using github ref: refs/heads/multi-arch
INFO[0054] ☁ git clone 'https://github.com/docker/metadata-action' # ref=v3
DEBU[0054] cloning https://github.com/docker/metadata-action to /home/krasi/.cache/act/docker-metadata-action@v3
DEBU[0055] Unable to pull refs/heads/v3: worktree contains unstaged changes
DEBU[0055] Cloned https://github.com/docker/metadata-action to /home/krasi/.cache/act/docker-metadata-action@v3
DEBU[0055] Checked out v3
DEBU[0055] Read action &{Docker Metadata action docker GitHub Action to extract metadata (tags, labels) for Docker map[bake-target:{Bake target name (default docker-metadata-action) false } flavor:{Flavors to apply false } github-token:{GitHub Token as provided by secrets true ${{ github.token }}} images:{List of Docker images to use as base name for tags true } labels:{List of custom labels false } sep-labels:{Separator to use for labels output (default \n) false } sep-tags:{Separator to use for tags output (default \n) false } tags:{List of tags as key-value pair attributes false }] map[bake-file:{Bake definiton file } labels:{Generated Docker labels } tags:{Generated Docker tags } version:{Generated Docker image version }] {node12 map[] dist/index.js [] [] []} {blue anchor}} from 'Unknown'
DEBU[0055] About to run action &{Docker Metadata action docker GitHub Action to extract metadata (tags, labels) for Docker map[bake-target:{Bake target name (default docker-metadata-action) false } flavor:{Flavors to apply false } github-token:{GitHub Token as provided by secrets true ${{ github.token }}} images:{List of Docker images to use as base name for tags true } labels:{List of custom labels false } sep-labels:{Separator to use for labels output (default \n) false } sep-tags:{Separator to use for tags output (default \n) false } tags:{List of tags as key-value pair attributes false }] map[bake-file:{Bake definiton file } labels:{Generated Docker labels } tags:{Generated Docker tags } version:{Generated Docker image version }] {node12 map[] dist/index.js [] [] []} {blue anchor}}
DEBU[0055] Evaluating 'github['token']' instead of 'github.token'
DEBU[0055] type=3 actionDir=/home/krasi/.cache/act/docker-metadata-action@v3 actionPath= workdir=/home/krasi/src/github.com/brocaar/chirpstack-application-server actionCacheDir=/home/krasi/.cache/act actionName=docker-metadata-action@v3 containerActionDir=/var/run/act/actions/docker-metadata-action@v3
DEBU[0055] Removing /home/krasi/.cache/act/docker-metadata-action@v3/.gitignore before docker cp
DEBU[0055] /var/run/act/actions/docker-metadata-action@v3
[CI/docker] 🐳 docker cp src=/home/krasi/.cache/act/docker-metadata-action@v3/ dst=/var/run/act/actions/docker-metadata-action@v3/
[CI/docker] 🐳 docker exec cmd=[mkdir -p /var/run/act/actions/docker-metadata-action@v3/] user= workdir=
[CI/docker] Exec command '[mkdir -p /var/run/act/actions/docker-metadata-action@v3/]'
[CI/docker] Working directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server'
DEBU[0055] Writing tarball /tmp/act087187035 from /home/krasi/.cache/act/docker-metadata-action@v3/
DEBU[0055] Stripping prefix:/home/krasi/.cache/act/docker-metadata-action@v3/ src:/home/krasi/.cache/act/docker-metadata-action@v3/
[CI/docker] Extracting content from '/tmp/act087187035' to '/var/run/act/actions/docker-metadata-action@v3/'
DEBU[0055] executing remote job container: [node /var/run/act/actions/docker-metadata-action@v3/dist/index.js]
[CI/docker] 🐳 docker exec cmd=[node /var/run/act/actions/docker-metadata-action@v3/dist/index.js] user= workdir=
[CI/docker] Exec command '[node /var/run/act/actions/docker-metadata-action@v3/dist/index.js]'
[CI/docker] Working directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server'
[CI/docker] ❓ ::group::Context info
| eventName: push
| sha: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
| ref: refs/heads/multi-arch
| workflow: CI
| action: meta
| actor: nektos/act
| runNumber: 1
| runId: 1
[CI/docker] ❓ ::endgroup::
[CI/docker] ❓ ::group::Processing tags input
| type=semver,pattern={{version}},value=,enable=true,priority=900
| type=semver,pattern={{major}},value=,enable=true,priority=900
| type=semver,pattern={{major}}.{{minor}},value=,enable=true,priority=900
[CI/docker] ❓ ::endgroup::
[CI/docker] ❓ ::group::Processing flavor input
| latest=auto
| prefix=
| prefixLatest=false
| suffix=
| suffixLatest=false
[CI/docker] ❓ ::endgroup::
[CI/docker] 🚧 ::warning::No Docker image version has been generated. Check tags input.
[CI/docker] ⚙ ::set-output:: version=
[CI/docker] 🚧 ::warning::No Docker tag has been generated. Check tags input.
[CI/docker] ⚙ ::set-output:: tags=
[CI/docker] ❓ ::group::Docker labels
| org.opencontainers.image.title=chirpstack-application-server
| org.opencontainers.image.description=ChirpStack Application Server is an open-source LoRaWAN application-server.
| org.opencontainers.image.url=https://github.com/brocaar/chirpstack-application-server
| org.opencontainers.image.source=https://github.com/brocaar/chirpstack-application-server
| org.opencontainers.image.version=
| org.opencontainers.image.created=2021-08-17T11:53:25.291Z
| org.opencontainers.image.revision=5a5c7031fa8d5b879d258836fb7e1decdeeffd24
| org.opencontainers.image.licenses=MIT
[CI/docker] ❓ ::endgroup::
[CI/docker] ⚙ ::set-output:: labels=org.opencontainers.image.title=chirpstack-application-server
org.opencontainers.image.description=ChirpStack Application Server is an open-source LoRaWAN application-server.
org.opencontainers.image.url=https://github.com/brocaar/chirpstack-application-server
org.opencontainers.image.source=https://github.com/brocaar/chirpstack-application-server
org.opencontainers.image.version=
org.opencontainers.image.created=2021-08-17T11:53:25.291Z
org.opencontainers.image.revision=5a5c7031fa8d5b879d258836fb7e1decdeeffd24
org.opencontainers.image.licenses=MIT
[CI/docker] ❓ ::group::JSON output
| {
| "tags": [],
| "labels": {
| "org.opencontainers.image.title": "chirpstack-application-server",
| "org.opencontainers.image.description": "ChirpStack Application Server is an open-source LoRaWAN application-server.",
| "org.opencontainers.image.url": "https://github.com/brocaar/chirpstack-application-server",
| "org.opencontainers.image.source": "https://github.com/brocaar/chirpstack-application-server",
| "org.opencontainers.image.version": "",
| "org.opencontainers.image.created": "2021-08-17T11:53:25.291Z",
| "org.opencontainers.image.revision": "5a5c7031fa8d5b879d258836fb7e1decdeeffd24",
| "org.opencontainers.image.licenses": "MIT"
| }
| }
[CI/docker] ❓ ::endgroup::
[CI/docker] ⚙ ::set-output:: json={"tags":[],"labels":{"org.opencontainers.image.title":"chirpstack-application-server","org.opencontainers.image.description":"ChirpStack Application Server is an open-source LoRaWAN application-server.","org.opencontainers.image.url":"https://github.com/brocaar/chirpstack-application-server","org.opencontainers.image.source":"https://github.com/brocaar/chirpstack-application-server","org.opencontainers.image.version":"","org.opencontainers.image.created":"2021-08-17T11:53:25.291Z","org.opencontainers.image.revision":"5a5c7031fa8d5b879d258836fb7e1decdeeffd24","org.opencontainers.image.licenses":"MIT"}}
[CI/docker] ❓ ::group::Bake definition file
| {
| "target": {
| "docker-metadata-action": {
| "tags": [],
| "labels": {
| "org.opencontainers.image.title": "chirpstack-application-server",
| "org.opencontainers.image.description": "ChirpStack Application Server is an open-source LoRaWAN application-server.",
| "org.opencontainers.image.url": "https://github.com/brocaar/chirpstack-application-server",
| "org.opencontainers.image.source": "https://github.com/brocaar/chirpstack-application-server",
| "org.opencontainers.image.version": "",
| "org.opencontainers.image.created": "2021-08-17T11:53:25.291Z",
| "org.opencontainers.image.revision": "5a5c7031fa8d5b879d258836fb7e1decdeeffd24",
| "org.opencontainers.image.licenses": "MIT"
| },
| "args": {
| "DOCKER_META_IMAGES": "chirpstack/chirpstack-application-server"
| }
| }
| }
| }
[CI/docker] ❓ ::endgroup::
[CI/docker] ⚙ ::set-output:: bake-file=/tmp/docker-metadata-action-4zS59e/docker-metadata-action-bake.json
DEBU[0057] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0057] using github ref: refs/heads/multi-arch
DEBU[0057] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0057] context needs => map[]
DEBU[0057] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0057] using github ref: refs/heads/multi-arch
DEBU[0057] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0057] context needs => map[]
DEBU[0057] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0057] using github ref: refs/heads/multi-arch
DEBU[0057] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0057] context needs => map[]
DEBU[0057] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0057] using github ref: refs/heads/multi-arch
DEBU[0057] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0057] context needs => map[]
DEBU[0057] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0057] using github ref: refs/heads/multi-arch
DEBU[0057] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0057] context needs => map[]
DEBU[0057] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0057] using github ref: refs/heads/multi-arch
DEBU[0057] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0057] context needs => map[]
DEBU[0057] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0057] using github ref: refs/heads/multi-arch
DEBU[0057] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0057] context needs => map[]
DEBU[0057] Evaluating 'github['token']' instead of 'github.token'
DEBU[0057] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0057] using github ref: refs/heads/multi-arch
DEBU[0057] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0057] context needs => map[]
DEBU[0057] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0057] using github ref: refs/heads/multi-arch
DEBU[0057] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0057] context needs => map[]
DEBU[0057] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0057] using github ref: refs/heads/multi-arch
DEBU[0057] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0057] context needs => map[]
DEBU[0057] Evaluating 'github['event']['repository']['name']' instead of 'github.event.repository.name'
DEBU[0057] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0057] using github ref: refs/heads/multi-arch
DEBU[0057] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0057] context needs => map[]
DEBU[0057] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:meta GITHUB_ACTIONS:true GITHUB_ACTION_PATH:/var/run/act/actions/docker-metadata-action@v3 GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:docker GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/multi-arch GITHUB_REPOSITORY:brocaar/lora-app-server GITHUB_REPOSITORY_OWNER:brocaar GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:5a5c7031fa8d5b879d258836fb7e1decdeeffd24 GITHUB_TOKEN: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 GITHUB_WORKFLOW:CI GITHUB_WORKSPACE:/home/krasi/src/github.com/brocaar/chirpstack-application-server IMAGE_OS:ubuntu20 INPUT_BAKE-TARGET: INPUT_FLAVOR: INPUT_GITHUB-TOKEN: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 INPUT_IMAGES:chirpstack/chirpstack-application-server INPUT_LABELS: INPUT_SEP-LABELS: INPUT_SEP-TAGS: INPUT_TAGS:type=semver,pattern={{version}}
type=semver,pattern={{major}}
type=semver,pattern={{major}}.{{minor}}
ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[CI/docker] ✅ Success - Docker meta
DEBU[0057] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0057] using github ref: refs/heads/multi-arch
DEBU[0057] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0057] using github ref: refs/heads/multi-arch
DEBU[0057] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0057] context needs => map[]
DEBU[0057] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:2 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:docker GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/multi-arch GITHUB_REPOSITORY:brocaar/lora-app-server GITHUB_REPOSITORY_OWNER:brocaar GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:5a5c7031fa8d5b879d258836fb7e1decdeeffd24 GITHUB_TOKEN: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 GITHUB_WORKFLOW:CI GITHUB_WORKSPACE:/home/krasi/src/github.com/brocaar/chirpstack-application-server IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[CI/docker] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:2 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:docker GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/multi-arch GITHUB_REPOSITORY:brocaar/lora-app-server GITHUB_REPOSITORY_OWNER:brocaar GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:5a5c7031fa8d5b879d258836fb7e1decdeeffd24 GITHUB_TOKEN:*** GITHUB_WORKFLOW:CI GITHUB_WORKSPACE:/home/krasi/src/github.com/brocaar/chirpstack-application-server IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[CI/docker] ⭐ Run Set up QEMU
DEBU[0057] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0057] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0057] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0057] using github ref: refs/heads/multi-arch
INFO[0057] ☁ git clone 'https://github.com/docker/setup-qemu-action' # ref=v1
DEBU[0057] cloning https://github.com/docker/setup-qemu-action to /home/krasi/.cache/act/docker-setup-qemu-action@v1
DEBU[0058] Unable to pull refs/heads/v1: worktree contains unstaged changes
DEBU[0058] Cloned https://github.com/docker/setup-qemu-action to /home/krasi/.cache/act/docker-setup-qemu-action@v1
DEBU[0058] Checked out v1
DEBU[0058] Read action &{Docker Setup QEMU docker Install QEMU static binaries map[image:{QEMU static binaries Docker image (e.g. tonistiigi/binfmt:latest) false tonistiigi/binfmt:latest} platforms:{Platforms to install (e.g. arm64,riscv64,arm) false all}] map[platforms:{Available platforms (comma separated) }] {node12 map[] dist/index.js [] [] []} {blue anchor}} from 'Unknown'
DEBU[0058] About to run action &{Docker Setup QEMU docker Install QEMU static binaries map[image:{QEMU static binaries Docker image (e.g. tonistiigi/binfmt:latest) false tonistiigi/binfmt:latest} platforms:{Platforms to install (e.g. arm64,riscv64,arm) false all}] map[platforms:{Available platforms (comma separated) }] {node12 map[] dist/index.js [] [] []} {blue anchor}}
DEBU[0058] type=3 actionDir=/home/krasi/.cache/act/docker-setup-qemu-action@v1 actionPath= workdir=/home/krasi/src/github.com/brocaar/chirpstack-application-server actionCacheDir=/home/krasi/.cache/act actionName=docker-setup-qemu-action@v1 containerActionDir=/var/run/act/actions/docker-setup-qemu-action@v1
DEBU[0058] Removing /home/krasi/.cache/act/docker-setup-qemu-action@v1/.gitignore before docker cp
DEBU[0058] /var/run/act/actions/docker-setup-qemu-action@v1
[CI/docker] 🐳 docker cp src=/home/krasi/.cache/act/docker-setup-qemu-action@v1/ dst=/var/run/act/actions/docker-setup-qemu-action@v1/
[CI/docker] 🐳 docker exec cmd=[mkdir -p /var/run/act/actions/docker-setup-qemu-action@v1/] user= workdir=
[CI/docker] Exec command '[mkdir -p /var/run/act/actions/docker-setup-qemu-action@v1/]'
[CI/docker] Working directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server'
DEBU[0058] Writing tarball /tmp/act111440894 from /home/krasi/.cache/act/docker-setup-qemu-action@v1/
DEBU[0058] Stripping prefix:/home/krasi/.cache/act/docker-setup-qemu-action@v1/ src:/home/krasi/.cache/act/docker-setup-qemu-action@v1/
[CI/docker] Extracting content from '/tmp/act111440894' to '/var/run/act/actions/docker-setup-qemu-action@v1/'
DEBU[0058] executing remote job container: [node /var/run/act/actions/docker-setup-qemu-action@v1/dist/index.js]
[CI/docker] 🐳 docker exec cmd=[node /var/run/act/actions/docker-setup-qemu-action@v1/dist/index.js] user= workdir=
[CI/docker] Exec command '[node /var/run/act/actions/docker-setup-qemu-action@v1/dist/index.js]'
[CI/docker] Working directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server'
[CI/docker] ❓ ::group::Docker info
| [command]/usr/bin/docker version
| Client:
| Version: 20.10.8+azure
| API version: 1.41
| Go version: go1.16.7
| Git commit: 3967b7d28e15a020e4ee344283128ead633b3e0c
| Built: Thu Jul 29 13:55:47 2021
| OS/Arch: linux/amd64
| Context: default
| Experimental: true
|
| Server: Docker Engine - Community
| Engine:
| Version: 20.10.7
| API version: 1.41 (minimum version 1.12)
| Go version: go1.13.15
| Git commit: b0f5bc3
| Built: Wed Jun 2 11:54:50 2021
| OS/Arch: linux/amd64
| Experimental: false
| containerd:
| Version: 1.4.6
| GitCommit: d71fcd7d8303cbf684402823e425e9dd2e99285d
| runc:
| Version: 1.0.0-rc95
| GitCommit: b9ee9c6314599f1b4a7f497e1f1f856fe433d3b7
| docker-init:
| Version: 0.19.0
| GitCommit: de40ad0
| [command]/usr/bin/docker info
| Client:
| Context: default
| Debug Mode: false
| Plugins:
| buildx: Build with BuildKit (Docker Inc., 0.6.0+azure)
|
| Server:
| Containers: 1
| Running: 1
| Paused: 0
| Stopped: 0
| Images: 1
| Server Version: 20.10.7
| Storage Driver: overlay2
| Backing Filesystem: extfs
| Supports d_type: true
| Native Overlay Diff: true
| userxattr: false
| Logging Driver: json-file
| Cgroup Driver: cgroupfs
| Cgroup Version: 1
| Plugins:
| Volume: local
| Network: bridge host ipvlan macvlan null overlay
| Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
| Swarm: inactive
| Runtimes: io.containerd.runc.v2 io.containerd.runtime.v1.linux runc
| Default Runtime: runc
| Init Binary: docker-init
| containerd version: d71fcd7d8303cbf684402823e425e9dd2e99285d
| runc version: b9ee9c6314599f1b4a7f497e1f1f856fe433d3b7
| init version: de40ad0
| Security Options:
| apparmor
| seccomp
| Profile: default
| Kernel Version: 5.4.0-37-generic
| Operating System: Ubuntu 20.04 LTS
| OSType: linux
| Architecture: x86_64
| CPUs: 8
| Total Memory: 30.75GiB
| Name: krasi-ThinkPad-P50
| ID: 4MXC:DSLB:2YUD:APHV:RQ3X:SISN:ZDHV:Z6WM:3DPU:LGRG:GZMX:WZZV
| Docker Root Dir: /var/lib/docker
| Debug Mode: false
| Registry: https://index.docker.io/v1/
| Labels:
| Experimental: false
| Insecure Registries:
| 127.0.0.0/8
| Live Restore Enabled: false
|
| WARNING: No swap limit support
[CI/docker] ❓ ::endgroup::
[CI/docker] ❓ ::group::Pulling binfmt Docker image
| [command]/usr/bin/docker pull tonistiigi/binfmt:latest
| latest: Pulling from tonistiigi/binfmt
| a5644ca467e1: Pulling fs layer
| 6f3748a79141: Pulling fs layer
| 6f3748a79141: Verifying Checksum
| 6f3748a79141: Download complete
| a5644ca467e1: Verifying Checksum
| a5644ca467e1: Download complete
| a5644ca467e1: Pull complete
| 6f3748a79141: Pull complete
| Digest: sha256:ce4d5a2a6ac4a189047fca2d71cbd901cc7beebacf538be95fccb3aca87cb2ec
| Status: Downloaded newer image for tonistiigi/binfmt:latest
| docker.io/tonistiigi/binfmt:latest
[CI/docker] ❓ ::endgroup::
[CI/docker] ❓ ::group::Image info
| [command]/usr/bin/docker image inspect tonistiigi/binfmt:latest
| [
| {
| "Id": "sha256:258d55b22af6c9b5d9e637ba4349db3902f6a51d00625228e553175fd2f2f0f1",
| "RepoTags": [
| "tonistiigi/binfmt:latest"
| ],
| "RepoDigests": [
| "tonistiigi/binfmt@sha256:ce4d5a2a6ac4a189047fca2d71cbd901cc7beebacf538be95fccb3aca87cb2ec"
| ],
| "Parent": "",
| "Comment": "buildkit.dockerfile.v0",
| "Created": "2021-06-23T15:17:50.002649445Z",
| "Container": "",
| "ContainerConfig": {
| "Hostname": "",
| "Domainname": "",
| "User": "",
| "AttachStdin": false,
| "AttachStdout": false,
| "AttachStderr": false,
| "Tty": false,
| "OpenStdin": false,
| "StdinOnce": false,
| "Env": null,
| "Cmd": null,
| "Image": "",
| "Volumes": null,
| "WorkingDir": "",
| "Entrypoint": null,
| "OnBuild": null,
| "Labels": null
| },
| "DockerVersion": "",
| "Author": "",
| "Config": {
| "Hostname": "",
| "Domainname": "",
| "User": "",
| "AttachStdin": false,
| "AttachStdout": false,
| "AttachStderr": false,
| "Tty": false,
| "OpenStdin": false,
| "StdinOnce": false,
| "Env": [
| "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
| ],
| "Cmd": null,
| "Image": "",
| "Volumes": {
| "/tmp": {}
| },
| "WorkingDir": "/",
| "Entrypoint": [
| "/usr/bin/binfmt"
| ],
| "OnBuild": null,
| "Labels": {
| "org.opencontainers.image.created": "2021-06-23T14:20:49.955Z",
| "org.opencontainers.image.description": "Cross-platform emulator collection distributed with Docker images",
| "org.opencontainers.image.licenses": "",
| "org.opencontainers.image.revision": "8703596e93946b9e31161c060a9ac41a8b578c3f",
| "org.opencontainers.image.source": "https://github.com/tonistiigi/binfmt",
| "org.opencontainers.image.title": "Binfmt",
| "org.opencontainers.image.url": "https://github.com/tonistiigi/binfmt",
| "org.opencontainers.image.version": "qemu-v6.0.0-12"
| }
| },
| "Architecture": "amd64",
| "Os": "linux",
| "Size": 39053772,
| "VirtualSize": 39053772,
| "GraphDriver": {
| "Data": {
| "LowerDir": "/var/lib/docker/overlay2/bd3636e8afa761cad7d0064bea706546fb22f91f6e234d243503cd849a1a7b3f/diff",
| "MergedDir": "/var/lib/docker/overlay2/88e8fc3376e1b86bbe7f333f33b887724359935cc664ebe1e683c3ac331b2367/merged",
| "UpperDir": "/var/lib/docker/overlay2/88e8fc3376e1b86bbe7f333f33b887724359935cc664ebe1e683c3ac331b2367/diff",
| "WorkDir": "/var/lib/docker/overlay2/88e8fc3376e1b86bbe7f333f33b887724359935cc664ebe1e683c3ac331b2367/work"
| },
| "Name": "overlay2"
| },
| "RootFS": {
| "Type": "layers",
| "Layers": [
| "sha256:4d6ae40bf899404464e3a361f7479f663dc5e1dc03d29301b5b5d17a31242071",
| "sha256:9ac1e31a51d0465876c78dd8bfd50a1880f9c58a345b237d3bf99f46f6e9d6c3"
| ]
| },
| "Metadata": {
| "LastTagTime": "0001-01-01T00:00:00Z"
| }
| }
| ]
[CI/docker] ❓ ::endgroup::
[CI/docker] ❓ ::group::Installing QEMU static binaries
| [command]/usr/bin/docker run --rm --privileged tonistiigi/binfmt:latest --install all
| {
| "supported": [
| "linux/amd64",
| "linux/arm64",
| "linux/riscv64",
| "linux/ppc64le",
| "linux/s390x",
| "linux/386",
| "linux/mips64le",
| "linux/mips64",
| "linux/arm/v7",
| "linux/arm/v6"
| ],
| "emulators": [
| "qemu-aarch64",
| "qemu-arm",
| "qemu-mips64",
| "qemu-mips64el",
| "qemu-ppc64le",
| "qemu-riscv64",
| "qemu-s390x"
| ]
| }
[CI/docker] ❓ ::endgroup::
[CI/docker] ❓ ::group::Extracting available platforms
| linux/amd64,linux/arm64,linux/riscv64,linux/ppc64le,linux/s390x,linux/386,linux/mips64le,linux/mips64,linux/arm/v7,linux/arm/v6
[CI/docker] ⚙ ::set-output:: platforms=linux/amd64,linux/arm64,linux/riscv64,linux/ppc64le,linux/s390x,linux/386,linux/mips64le,linux/mips64,linux/arm/v7,linux/arm/v6
[CI/docker] ❓ ::endgroup::
DEBU[0067] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0067] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0067] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0067] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0067] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0067] using github ref: refs/heads/multi-arch
DEBU[0067] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0067] context needs => map[]
DEBU[0067] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0067] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0067] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0067] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0067] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0067] using github ref: refs/heads/multi-arch
DEBU[0067] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0067] context needs => map[]
DEBU[0067] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0067] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0067] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0067] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0067] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0067] using github ref: refs/heads/multi-arch
DEBU[0067] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0067] context needs => map[]
DEBU[0067] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:2 GITHUB_ACTIONS:true GITHUB_ACTION_PATH:/var/run/act/actions/docker-setup-qemu-action@v1 GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:docker GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/multi-arch GITHUB_REPOSITORY:brocaar/lora-app-server GITHUB_REPOSITORY_OWNER:brocaar GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:5a5c7031fa8d5b879d258836fb7e1decdeeffd24 GITHUB_TOKEN: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 GITHUB_WORKFLOW:CI GITHUB_WORKSPACE:/home/krasi/src/github.com/brocaar/chirpstack-application-server IMAGE_OS:ubuntu20 INPUT_IMAGE:tonistiigi/binfmt:latest INPUT_PLATFORMS:all ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[CI/docker] ✅ Success - Set up QEMU
DEBU[0067] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0067] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0067] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0067] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0067] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0067] using github ref: refs/heads/multi-arch
DEBU[0067] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0067] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0067] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0067] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0067] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0067] using github ref: refs/heads/multi-arch
DEBU[0067] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0067] context needs => map[]
DEBU[0067] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:docker GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/multi-arch GITHUB_REPOSITORY:brocaar/lora-app-server GITHUB_REPOSITORY_OWNER:brocaar GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:5a5c7031fa8d5b879d258836fb7e1decdeeffd24 GITHUB_TOKEN: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 GITHUB_WORKFLOW:CI GITHUB_WORKSPACE:/home/krasi/src/github.com/brocaar/chirpstack-application-server IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[CI/docker] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:docker GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/multi-arch GITHUB_REPOSITORY:brocaar/lora-app-server GITHUB_REPOSITORY_OWNER:brocaar GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:5a5c7031fa8d5b879d258836fb7e1decdeeffd24 GITHUB_TOKEN:*** GITHUB_WORKFLOW:CI GITHUB_WORKSPACE:/home/krasi/src/github.com/brocaar/chirpstack-application-server IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[CI/docker] ⭐ Run Set up Docker Buildx
DEBU[0067] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0067] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0067] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0067] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0067] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0067] using github ref: refs/heads/multi-arch
INFO[0067] ☁ git clone 'https://github.com/docker/setup-buildx-action' # ref=v1
DEBU[0067] cloning https://github.com/docker/setup-buildx-action to /home/krasi/.cache/act/docker-setup-buildx-action@v1
DEBU[0068] Unable to pull refs/heads/v1: worktree contains unstaged changes
DEBU[0068] Cloned https://github.com/docker/setup-buildx-action to /home/krasi/.cache/act/docker-setup-buildx-action@v1
DEBU[0068] Checked out v1
DEBU[0068] Read action &{Docker Setup Buildx docker Set up Docker Buildx map[buildkitd-flags:{Flags for buildkitd daemon false --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host} config:{BuildKit config file false } driver:{Sets the builder driver to be used false docker-container} driver-opts:{List of additional driver-specific options. (eg. image=moby/buildkit:master) false } endpoint:{Optional address for docker socket or context from `docker context ls` false } install:{Sets up docker build command as an alias to docker buildx false false} use:{Switch to this builder instance false true} version:{Buildx version. (eg. v0.3.0) false }] map[driver:{Builder driver } endpoint:{Builder node endpoint } flags:{Builder node flags (if applicable) } name:{Builder name } platforms:{Builder node platforms available (comma separated) } status:{Builder node status }] {node12 map[] dist/index.js [] [] []} {blue anchor}} from 'Unknown'
DEBU[0068] About to run action &{Docker Setup Buildx docker Set up Docker Buildx map[buildkitd-flags:{Flags for buildkitd daemon false --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host} config:{BuildKit config file false } driver:{Sets the builder driver to be used false docker-container} driver-opts:{List of additional driver-specific options. (eg. image=moby/buildkit:master) false } endpoint:{Optional address for docker socket or context from `docker context ls` false } install:{Sets up docker build command as an alias to docker buildx false false} use:{Switch to this builder instance false true} version:{Buildx version. (eg. v0.3.0) false }] map[driver:{Builder driver } endpoint:{Builder node endpoint } flags:{Builder node flags (if applicable) } name:{Builder name } platforms:{Builder node platforms available (comma separated) } status:{Builder node status }] {node12 map[] dist/index.js [] [] []} {blue anchor}}
DEBU[0068] type=3 actionDir=/home/krasi/.cache/act/docker-setup-buildx-action@v1 actionPath= workdir=/home/krasi/src/github.com/brocaar/chirpstack-application-server actionCacheDir=/home/krasi/.cache/act actionName=docker-setup-buildx-action@v1 containerActionDir=/var/run/act/actions/docker-setup-buildx-action@v1
DEBU[0068] Removing /home/krasi/.cache/act/docker-setup-buildx-action@v1/.gitignore before docker cp
DEBU[0068] /var/run/act/actions/docker-setup-buildx-action@v1
[CI/docker] 🐳 docker cp src=/home/krasi/.cache/act/docker-setup-buildx-action@v1/ dst=/var/run/act/actions/docker-setup-buildx-action@v1/
[CI/docker] 🐳 docker exec cmd=[mkdir -p /var/run/act/actions/docker-setup-buildx-action@v1/] user= workdir=
[CI/docker] Exec command '[mkdir -p /var/run/act/actions/docker-setup-buildx-action@v1/]'
[CI/docker] Working directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server'
DEBU[0068] Writing tarball /tmp/act199476549 from /home/krasi/.cache/act/docker-setup-buildx-action@v1/
DEBU[0068] Stripping prefix:/home/krasi/.cache/act/docker-setup-buildx-action@v1/ src:/home/krasi/.cache/act/docker-setup-buildx-action@v1/
[CI/docker] Extracting content from '/tmp/act199476549' to '/var/run/act/actions/docker-setup-buildx-action@v1/'
DEBU[0068] executing remote job container: [node /var/run/act/actions/docker-setup-buildx-action@v1/dist/index.js]
[CI/docker] 🐳 docker exec cmd=[node /var/run/act/actions/docker-setup-buildx-action@v1/dist/index.js] user= workdir=
[CI/docker] Exec command '[node /var/run/act/actions/docker-setup-buildx-action@v1/dist/index.js]'
[CI/docker] Working directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server'
[CI/docker] ❓ ::save-state name=isPost::true
[CI/docker] ❓ ::group::Docker info
| [command]/usr/bin/docker version
| Client:
| Version: 20.10.8+azure
| API version: 1.41
| Go version: go1.16.7
| Git commit: 3967b7d28e15a020e4ee344283128ead633b3e0c
| Built: Thu Jul 29 13:55:47 2021
| OS/Arch: linux/amd64
| Context: default
| Experimental: true
|
| Server: Docker Engine - Community
| Engine:
| Version: 20.10.7
| API version: 1.41 (minimum version 1.12)
| Go version: go1.13.15
| Git commit: b0f5bc3
| Built: Wed Jun 2 11:54:50 2021
| OS/Arch: linux/amd64
| Experimental: false
| containerd:
| Version: 1.4.6
| GitCommit: d71fcd7d8303cbf684402823e425e9dd2e99285d
| runc:
| Version: 1.0.0-rc95
| GitCommit: b9ee9c6314599f1b4a7f497e1f1f856fe433d3b7
| docker-init:
| Version: 0.19.0
| GitCommit: de40ad0
| [command]/usr/bin/docker info
| Client:
| Context: default
| Debug Mode: false
| Plugins:
| buildx: Build with BuildKit (Docker Inc., 0.6.0+azure)
|
| Server:
| Containers: 1
| Running: 1
| Paused: 0
| Stopped: 0
| Images: 2
| Server Version: 20.10.7
| Storage Driver: overlay2
| Backing Filesystem: extfs
| Supports d_type: true
| Native Overlay Diff: true
| userxattr: false
| Logging Driver: json-file
| Cgroup Driver: cgroupfs
| Cgroup Version: 1
| Plugins:
| Volume: local
| Network: bridge host ipvlan macvlan null overlay
| Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
| Swarm: inactive
| Runtimes: io.containerd.runc.v2 io.containerd.runtime.v1.linux runc
| Default Runtime: runc
| Init Binary: docker-init
| containerd version: d71fcd7d8303cbf684402823e425e9dd2e99285d
| runc version: b9ee9c6314599f1b4a7f497e1f1f856fe433d3b7
| init version: de40ad0
| Security Options:
| apparmor
| seccomp
| Profile: default
| Kernel Version: 5.4.0-37-generic
| Operating System: Ubuntu 20.04 LTS
| OSType: linux
| Architecture: x86_64
| CPUs: 8
| Total Memory: 30.75GiB
| Name: krasi-ThinkPad-P50
| ID: 4MXC:DSLB:2YUD:APHV:RQ3X:SISN:ZDHV:Z6WM:3DPU:LGRG:GZMX:WZZV
| Docker Root Dir: /var/lib/docker
| Debug Mode: false
| Registry: https://index.docker.io/v1/
| Labels:
| Experimental: false
| Insecure Registries:
| 127.0.0.0/8
| Live Restore Enabled: false
|
| WARNING: No swap limit support
[CI/docker] ❓ ::endgroup::
[CI/docker] ⚙ ::set-output:: name=builder-85543f5f-0ad5-4628-b8f9-8efbe6e49243
[CI/docker] ❓ ::save-state name=builderName::builder-85543f5f-0ad5-4628-b8f9-8efbe6e49243
[CI/docker] ❓ ::group::Creating a new builder instance
| [command]/usr/bin/docker buildx create --name builder-85543f5f-0ad5-4628-b8f9-8efbe6e49243 --driver docker-container --buildkitd-flags --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host --use
| builder-85543f5f-0ad5-4628-b8f9-8efbe6e49243
[CI/docker] ❓ ::endgroup::
[CI/docker] ❓ ::group::Booting builder
| [command]/usr/bin/docker buildx inspect --bootstrap --builder builder-85543f5f-0ad5-4628-b8f9-8efbe6e49243
| #1 [internal] booting buildkit
| #1 pulling image moby/buildkit:buildx-stable-1
| #1 pulling image moby/buildkit:buildx-stable-1 11.1s done
| #1 creating container buildx_buildkit_builder-85543f5f-0ad5-4628-b8f9-8efbe6e492430
| #1 creating container buildx_buildkit_builder-85543f5f-0ad5-4628-b8f9-8efbe6e492430 1.3s done
| #1 DONE 12.4s
| Name: builder-85543f5f-0ad5-4628-b8f9-8efbe6e49243
| Driver: docker-container
|
| Nodes:
| Name: builder-85543f5f-0ad5-4628-b8f9-8efbe6e492430
| Endpoint: unix:///var/run/docker.sock
| Status: running
| Flags: --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host
| Platforms: linux/amd64, linux/arm64, linux/riscv64, linux/ppc64le, linux/s390x, linux/386, linux/mips64le, linux/mips64, linux/arm/v7, linux/arm/v6
[CI/docker] ❓ ::endgroup::
[CI/docker] ❓ ::group::Inspect builder
| {
| "name": "builder-85543f5f-0ad5-4628-b8f9-8efbe6e49243",
| "driver": "docker-container",
| "node_name": "builder-85543f5f-0ad5-4628-b8f9-8efbe6e492430",
| "node_endpoint": "unix:///var/run/docker.sock",
| "node_status": "running",
| "node_flags": "--allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host",
| "node_platforms": "linux/amd64,linux/arm64,linux/riscv64,linux/ppc64le,linux/s390x,linux/386,linux/mips64le,linux/mips64,linux/arm/v7,linux/arm/v6"
| }
[CI/docker] ⚙ ::set-output:: driver=docker-container
[CI/docker] ⚙ ::set-output:: endpoint=unix:///var/run/docker.sock
[CI/docker] ⚙ ::set-output:: status=running
[CI/docker] ⚙ ::set-output:: flags=--allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host
[CI/docker] ⚙ ::set-output:: platforms=linux/amd64,linux/arm64,linux/riscv64,linux/ppc64le,linux/s390x,linux/386,linux/mips64le,linux/mips64,linux/arm/v7,linux/arm/v6
[CI/docker] ❓ ::endgroup::
[CI/docker] ❓ ::save-state name=containerName::buildx_buildkit_builder-85543f5f-0ad5-4628-b8f9-8efbe6e492430
[CI/docker] ❓ ::group::BuildKit version
| moby/buildkit:buildx-stable-1 => buildkitd github.com/moby/buildkit v0.9.0 c8bb937807d405d92be91f06ce2629e6202ac7a9
[CI/docker] ❓ ::endgroup::
DEBU[0084] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0084] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0084] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0084] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0084] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0084] using github ref: refs/heads/multi-arch
DEBU[0084] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0084] context needs => map[]
DEBU[0084] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0084] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0084] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0084] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0084] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0084] using github ref: refs/heads/multi-arch
DEBU[0084] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0084] context needs => map[]
DEBU[0084] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0084] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0084] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0084] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0084] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0084] using github ref: refs/heads/multi-arch
DEBU[0084] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0084] context needs => map[]
DEBU[0084] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0084] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0084] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0084] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0084] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0084] using github ref: refs/heads/multi-arch
DEBU[0084] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0084] context needs => map[]
DEBU[0084] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0084] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0084] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0084] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0084] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0084] using github ref: refs/heads/multi-arch
DEBU[0084] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0084] context needs => map[]
DEBU[0084] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0084] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0084] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0084] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0084] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0084] using github ref: refs/heads/multi-arch
DEBU[0084] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0084] context needs => map[]
DEBU[0084] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0084] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0084] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0084] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0084] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0084] using github ref: refs/heads/multi-arch
DEBU[0084] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0084] context needs => map[]
DEBU[0084] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0084] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0084] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0084] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0084] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0084] using github ref: refs/heads/multi-arch
DEBU[0084] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0084] context needs => map[]
DEBU[0084] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0084] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0084] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0084] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0084] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0084] using github ref: refs/heads/multi-arch
DEBU[0084] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0084] context needs => map[]
DEBU[0084] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:3 GITHUB_ACTIONS:true GITHUB_ACTION_PATH:/var/run/act/actions/docker-setup-buildx-action@v1 GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:docker GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/multi-arch GITHUB_REPOSITORY:brocaar/lora-app-server GITHUB_REPOSITORY_OWNER:brocaar GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:5a5c7031fa8d5b879d258836fb7e1decdeeffd24 GITHUB_TOKEN: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 GITHUB_WORKFLOW:CI GITHUB_WORKSPACE:/home/krasi/src/github.com/brocaar/chirpstack-application-server IMAGE_OS:ubuntu20 INPUT_BUILDKITD-FLAGS:--allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host INPUT_CONFIG: INPUT_DRIVER:docker-container INPUT_DRIVER-OPTS: INPUT_ENDPOINT: INPUT_INSTALL:false INPUT_USE:true INPUT_VERSION: ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[CI/docker] ✅ Success - Set up Docker Buildx
DEBU[0084] Evaluating 'Boolean(startsWith(github['ref'], 'refs/tags/v'))' instead of 'Boolean(startsWith(github.ref, 'refs/tags/v'))'
DEBU[0084] expression 'startsWith(github.ref, 'refs/tags/v')' evaluated to 'false'
DEBU[0084] Skipping step 'Login to DockerHub' due to 'startsWith(github.ref, 'refs/tags/v')'
DEBU[0084] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0084] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0084] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0084] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0084] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0084] using github ref: refs/heads/multi-arch
DEBU[0085] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0085] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0085] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0085] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0085] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0085] using github ref: refs/heads/multi-arch
DEBU[0085] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0085] context needs => map[]
DEBU[0085] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0085] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0085] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0085] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0085] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0085] using github ref: refs/heads/multi-arch
DEBU[0085] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0085] context needs => map[]
DEBU[0085] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0085] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0085] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0085] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0085] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0085] using github ref: refs/heads/multi-arch
DEBU[0085] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0085] context needs => map[]
DEBU[0085] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0085] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0085] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0085] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0085] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0085] using github ref: refs/heads/multi-arch
DEBU[0085] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0085] context needs => map[]
DEBU[0085] Evaluating 'steps['meta']['outputs']['tags']' instead of 'steps.meta.outputs.tags'
DEBU[0085] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0085] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0085] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0085] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0085] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0085] using github ref: refs/heads/multi-arch
DEBU[0085] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0085] context needs => map[]
DEBU[0085] Evaluating 'steps['meta']['outputs']['labels']' instead of 'steps.meta.outputs.labels'
DEBU[0085] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:docker_build GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:docker GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/multi-arch GITHUB_REPOSITORY:brocaar/lora-app-server GITHUB_REPOSITORY_OWNER:brocaar GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:5a5c7031fa8d5b879d258836fb7e1decdeeffd24 GITHUB_TOKEN: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 GITHUB_WORKFLOW:CI GITHUB_WORKSPACE:/home/krasi/src/github.com/brocaar/chirpstack-application-server IMAGE_OS:ubuntu20 INPUT_IF:startsWith(github.ref, 'refs/tags/v') INPUT_LABELS:${{ steps.meta.outputs.labels }} INPUT_PLATFORMS:linux/amd64,linux/arm64/v6,linux/arm64/v7,linux/arm64/v8 INPUT_TAGS:${{ steps.meta.outputs.tags }} ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0085] Evaluating 'steps['meta']['outputs']['tags']' instead of 'steps.meta.outputs.tags'
DEBU[0085] Evaluating 'steps['meta']['outputs']['labels']' instead of 'steps.meta.outputs.labels'
[CI/docker] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:docker_build GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:docker GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/multi-arch GITHUB_REPOSITORY:brocaar/lora-app-server GITHUB_REPOSITORY_OWNER:brocaar GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:5a5c7031fa8d5b879d258836fb7e1decdeeffd24 GITHUB_TOKEN:*** GITHUB_WORKFLOW:CI GITHUB_WORKSPACE:/home/krasi/src/github.com/brocaar/chirpstack-application-server IMAGE_OS:ubuntu20 INPUT_IF:startsWith(github.ref, 'refs/tags/v') INPUT_LABELS:org.opencontainers.image.title=chirpstack-application-server
org.opencontainers.image.description=ChirpStack Application Server is an open-source LoRaWAN application-server.
org.opencontainers.image.url=https://github.com/brocaar/chirpstack-application-server
org.opencontainers.image.source=https://github.com/brocaar/chirpstack-application-server
org.opencontainers.image.version=
org.opencontainers.image.created=2021-08-17T11:53:25.291Z
org.opencontainers.image.revision=5a5c7031fa8d5b879d258836fb7e1decdeeffd24
org.opencontainers.image.licenses=MIT INPUT_PLATFORMS:linux/amd64,linux/arm64/v6,linux/arm64/v7,linux/arm64/v8 INPUT_TAGS: ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.5/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[CI/docker] ⭐ Run Build and push
DEBU[0085] Loading slug from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0085] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0085] Loading revision from git directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server/.git'
DEBU[0085] Found revision: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
DEBU[0085] HEAD points to '5a5c7031fa8d5b879d258836fb7e1decdeeffd24'
DEBU[0085] using github ref: refs/heads/multi-arch
INFO[0085] ☁ git clone 'https://github.com/docker/build-push-action' # ref=v2
DEBU[0085] cloning https://github.com/docker/build-push-action to /home/krasi/.cache/act/docker-build-push-action@v2
DEBU[0086] Unable to pull refs/heads/v2: worktree contains unstaged changes
DEBU[0086] Cloned https://github.com/docker/build-push-action to /home/krasi/.cache/act/docker-build-push-action@v2
DEBU[0086] Checked out v2
DEBU[0086] Read action &{Build and push Docker images docker Build and push Docker images with Buildx map[allow:{List of extra privileged entitlement (eg. network.host,security.insecure) false } build-args:{List of build-time variables false } builder:{Builder instance false } cache-from:{List of external cache sources for buildx (eg. user/app:cache, type=local,src=path/to/dir) false } cache-to:{List of cache export destinations for buildx (eg. user/app:cache, type=local,dest=path/to/dir) false } context:{Build's context is the set of files located in the specified PATH or URL false } file:{Path to the Dockerfile false } github-token:{GitHub Token used to authenticate against a repository for Git context false ${{ github.token }}} labels:{List of metadata for an image false } load:{Load is a shorthand for --output=type=docker false false} network:{Set the networking mode for the RUN instructions during build false } no-cache:{Do not use cache when building the image false false} outputs:{List of output destinations (format: type=local,dest=path) false } platforms:{List of target platforms for build false } pull:{Always attempt to pull a newer version of the image false false} push:{Push is a shorthand for --output=type=registry false false} secret-files:{List of secret files to expose to the build (eg. key=filename, MY_SECRET=./secret.txt) false } secrets:{List of secrets to expose to the build (eg. key=string, GIT_AUTH_TOKEN=mytoken) false } ssh:{List of SSH agent socket or keys to expose to the build false } tags:{List of tags false } target:{Sets the target stage to build false }] map[digest:{Image content-addressable identifier also called a digest }] {node12 map[] dist/index.js [] [] []} {blue anchor}} from 'Unknown'
DEBU[0086] About to run action &{Build and push Docker images docker Build and push Docker images with Buildx map[allow:{List of extra privileged entitlement (eg. network.host,security.insecure) false } build-args:{List of build-time variables false } builder:{Builder instance false } cache-from:{List of external cache sources for buildx (eg. user/app:cache, type=local,src=path/to/dir) false } cache-to:{List of cache export destinations for buildx (eg. user/app:cache, type=local,dest=path/to/dir) false } context:{Build's context is the set of files located in the specified PATH or URL false } file:{Path to the Dockerfile false } github-token:{GitHub Token used to authenticate against a repository for Git context false ${{ github.token }}} labels:{List of metadata for an image false } load:{Load is a shorthand for --output=type=docker false false} network:{Set the networking mode for the RUN instructions during build false } no-cache:{Do not use cache when building the image false false} outputs:{List of output destinations (format: type=local,dest=path) false } platforms:{List of target platforms for build false } pull:{Always attempt to pull a newer version of the image false false} push:{Push is a shorthand for --output=type=registry false false} secret-files:{List of secret files to expose to the build (eg. key=filename, MY_SECRET=./secret.txt) false } secrets:{List of secrets to expose to the build (eg. key=string, GIT_AUTH_TOKEN=mytoken) false } ssh:{List of SSH agent socket or keys to expose to the build false } tags:{List of tags false } target:{Sets the target stage to build false }] map[digest:{Image content-addressable identifier also called a digest }] {node12 map[] dist/index.js [] [] []} {blue anchor}}
DEBU[0086] Evaluating 'github['token']' instead of 'github.token'
DEBU[0086] type=3 actionDir=/home/krasi/.cache/act/docker-build-push-action@v2 actionPath= workdir=/home/krasi/src/github.com/brocaar/chirpstack-application-server actionCacheDir=/home/krasi/.cache/act actionName=docker-build-push-action@v2 containerActionDir=/var/run/act/actions/docker-build-push-action@v2
DEBU[0086] Removing /home/krasi/.cache/act/docker-build-push-action@v2/.gitignore before docker cp
DEBU[0086] /var/run/act/actions/docker-build-push-action@v2
[CI/docker] 🐳 docker cp src=/home/krasi/.cache/act/docker-build-push-action@v2/ dst=/var/run/act/actions/docker-build-push-action@v2/
[CI/docker] 🐳 docker exec cmd=[mkdir -p /var/run/act/actions/docker-build-push-action@v2/] user= workdir=
[CI/docker] Exec command '[mkdir -p /var/run/act/actions/docker-build-push-action@v2/]'
[CI/docker] Working directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server'
DEBU[0086] Writing tarball /tmp/act138147263 from /home/krasi/.cache/act/docker-build-push-action@v2/
DEBU[0086] Stripping prefix:/home/krasi/.cache/act/docker-build-push-action@v2/ src:/home/krasi/.cache/act/docker-build-push-action@v2/
[CI/docker] Extracting content from '/tmp/act138147263' to '/var/run/act/actions/docker-build-push-action@v2/'
DEBU[0086] executing remote job container: [node /var/run/act/actions/docker-build-push-action@v2/dist/index.js]
[CI/docker] 🐳 docker exec cmd=[node /var/run/act/actions/docker-build-push-action@v2/dist/index.js] user= workdir=
[CI/docker] Exec command '[node /var/run/act/actions/docker-build-push-action@v2/dist/index.js]'
[CI/docker] Working directory '/home/krasi/src/github.com/brocaar/chirpstack-application-server'
[CI/docker] ❓ ::save-state name=isPost::true
[CI/docker] ❓ ::group::Docker info
| [command]/usr/bin/docker version
| Client:
| Version: 20.10.8+azure
| API version: 1.41
| Go version: go1.16.7
| Git commit: 3967b7d28e15a020e4ee344283128ead633b3e0c
| Built: Thu Jul 29 13:55:47 2021
| OS/Arch: linux/amd64
| Context: default
| Experimental: true
|
| Server: Docker Engine - Community
| Engine:
| Version: 20.10.7
| API version: 1.41 (minimum version 1.12)
| Go version: go1.13.15
| Git commit: b0f5bc3
| Built: Wed Jun 2 11:54:50 2021
| OS/Arch: linux/amd64
| Experimental: false
| containerd:
| Version: 1.4.6
| GitCommit: d71fcd7d8303cbf684402823e425e9dd2e99285d
| runc:
| Version: 1.0.0-rc95
| GitCommit: b9ee9c6314599f1b4a7f497e1f1f856fe433d3b7
| docker-init:
| Version: 0.19.0
| GitCommit: de40ad0
| [command]/usr/bin/docker info
| Client:
| Context: default
| Debug Mode: false
| Plugins:
| buildx: Build with BuildKit (Docker Inc., 0.6.0+azure)
|
| Server:
| Containers: 2
| Running: 2
| Paused: 0
| Stopped: 0
| Images: 3
| Server Version: 20.10.7
| Storage Driver: overlay2
| Backing Filesystem: extfs
| Supports d_type: true
| Native Overlay Diff: true
| userxattr: false
| Logging Driver: json-file
| Cgroup Driver: cgroupfs
| Cgroup Version: 1
| Plugins:
| Volume: local
| Network: bridge host ipvlan macvlan null overlay
| Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
| Swarm: inactive
| Runtimes: io.containerd.runc.v2 io.containerd.runtime.v1.linux runc
| Default Runtime: runc
| Init Binary: docker-init
| containerd version: d71fcd7d8303cbf684402823e425e9dd2e99285d
| runc version: b9ee9c6314599f1b4a7f497e1f1f856fe433d3b7
| init version: de40ad0
| Security Options:
| apparmor
| seccomp
| Profile: default
| Kernel Version: 5.4.0-37-generic
| Operating System: Ubuntu 20.04 LTS
| OSType: linux
| Architecture: x86_64
| CPUs: 8
| Total Memory: 30.75GiB
| Name: krasi-ThinkPad-P50
| ID: 4MXC:DSLB:2YUD:APHV:RQ3X:SISN:ZDHV:Z6WM:3DPU:LGRG:GZMX:WZZV
| Docker Root Dir: /var/lib/docker
| Debug Mode: false
| Registry: https://index.docker.io/v1/
| Labels:
| Experimental: false
| Insecure Registries:
| 127.0.0.0/8
| Live Restore Enabled: false
|
| WARNING: No swap limit support
[CI/docker] ❓ ::endgroup::
[CI/docker] ❓ ::save-state name=tmpDir::/tmp/docker-build-push-wEiEWn
| [command]/usr/bin/docker buildx build --label org.opencontainers.image.title=chirpstack-application-server --label org.opencontainers.image.description=ChirpStack Application Server is an open-source LoRaWAN application-server. --label org.opencontainers.image.url=https://github.com/brocaar/chirpstack-application-server --label org.opencontainers.image.source=https://github.com/brocaar/chirpstack-application-server --label org.opencontainers.image.version= --label org.opencontainers.image.created=2021-08-17T11:53:25.291Z --label org.opencontainers.image.revision=5a5c7031fa8d5b879d258836fb7e1decdeeffd24 --label org.opencontainers.image.licenses=MIT --platform linux/amd64,linux/arm64/v6,linux/arm64/v7,linux/arm64/v8 --iidfile /tmp/docker-build-push-wEiEWn/iidfile --secret id=GIT_AUTH_TOKEN,src=/tmp/docker-build-push-wEiEWn/tmp-373-DWD2G1bFRUFY https://github.com/brocaar/lora-app-server.git#5a5c7031fa8d5b879d258836fb7e1decdeeffd24
| time="2021-08-17T11:53:56Z" level=warning msg="No output specified for docker-container driver. Build result will only remain in the build cache. To push result image into registry use --push or to load image into docker use --load"
| #1 [internal] load git source https://github.com/brocaar/lora-app-server.git#5a5c7031fa8d5b879d258836fb7e1decdeeffd24
| #1 0.093 hint: Using 'master' as the name for the initial branch. This default branch name
| #1 0.093 hint: is subject to change. To configure the initial branch name to use in all
| #1 0.093 hint: of your new repositories, which will suppress this warning, call:
| #1 0.093 hint:
| #1 0.093 hint: git config --global init.defaultBranch <name>
| #1 0.093 hint:
| #1 0.093 hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
| #1 0.093 hint: 'development'. The just-created branch can be renamed via this command:
| #1 0.093 hint:
| #1 0.093 hint: git branch -m <name>
| #1 0.094 Initialized empty Git repository in /var/lib/buildkit/runc-overlayfs/snapshots/snapshots/1/fs/
| #1 0.111 fatal: Not a valid object name 5a5c7031fa8d5b879d258836fb7e1decdeeffd24^{commit}
| #1 8.394 From https://github.com/brocaar/lora-app-server
| #1 8.394 * [new branch] improve_frame_log -> origin/improve_frame_log
| #1 8.394 * [new branch] improve_gw_stats -> origin/improve_gw_stats
| #1 8.394 * [new branch] master -> origin/master
| #1 8.394 * [new branch] refactor-sql-migration -> origin/refactor-sql-migration
| #1 8.430 * [new tag] 0.1.0 -> 0.1.0
| #1 8.430 * [new tag] 0.1.1 -> 0.1.1
| #1 8.430 * [new tag] 0.1.2 -> 0.1.2
| #1 8.430 * [new tag] 0.1.3 -> 0.1.3
| #1 8.430 * [new tag] 0.1.4 -> 0.1.4
| #1 8.431 * [new tag] 0.10.0 -> 0.10.0
| #1 8.431 * [new tag] 0.10.1 -> 0.10.1
| #1 8.431 * [new tag] 0.11.0 -> 0.11.0
| #1 8.431 * [new tag] 0.12.0 -> 0.12.0
| #1 8.431 * [new tag] 0.13.0 -> 0.13.0
| #1 8.431 * [new tag] 0.13.1 -> 0.13.1
| #1 8.432 * [new tag] 0.13.2 -> 0.13.2
| #1 8.432 * [new tag] 0.14.0 -> 0.14.0
| #1 8.432 * [new tag] 0.14.1 -> 0.14.1
| #1 8.432 * [new tag] 0.14.2 -> 0.14.2
| #1 8.432 * [new tag] 0.15.0 -> 0.15.0
| #1 8.432 * [new tag] 0.16.0 -> 0.16.0
| #1 8.433 * [new tag] 0.16.1 -> 0.16.1
| #1 8.433 * [new tag] 0.17.0 -> 0.17.0
| #1 8.433 * [new tag] 0.17.1 -> 0.17.1
| #1 8.433 * [new tag] 0.18.0 -> 0.18.0
| #1 8.433 * [new tag] 0.18.1 -> 0.18.1
| #1 8.433 * [new tag] 0.18.2 -> 0.18.2
| #1 8.433 * [new tag] 0.19.0 -> 0.19.0
| #1 8.434 * [new tag] 0.2.0 -> 0.2.0
| #1 8.434 * [new tag] 0.20.0 -> 0.20.0
| #1 8.434 * [new tag] 0.20.1 -> 0.20.1
| #1 8.434 * [new tag] 0.20.2 -> 0.20.2
| #1 8.434 * [new tag] 0.21.0 -> 0.21.0
| #1 8.434 * [new tag] 0.21.1 -> 0.21.1
| #1 8.435 * [new tag] 0.3.0 -> 0.3.0
| #1 8.435 * [new tag] 0.4.0 -> 0.4.0
| #1 8.435 * [new tag] 0.5.0 -> 0.5.0
| #1 8.435 * [new tag] 0.6.0 -> 0.6.0
| #1 8.435 * [new tag] 0.7.0 -> 0.7.0
| #1 8.435 * [new tag] 0.7.1 -> 0.7.1
| #1 8.435 * [new tag] 0.7.2 -> 0.7.2
| #1 8.436 * [new tag] 0.8.0 -> 0.8.0
| #1 8.436 * [new tag] 0.9.0 -> 0.9.0
| #1 8.436 * [new tag] 0.9.1 -> 0.9.1
| #1 8.436 * [new tag] v1.0.0 -> v1.0.0
| #1 8.436 * [new tag] v1.0.1 -> v1.0.1
| #1 8.436 * [new tag] v2.0.0 -> v2.0.0
| #1 8.436 * [new tag] v2.0.0-alpha.1 -> v2.0.0-alpha.1
| #1 8.437 * [new tag] v2.0.0-alpha.2 -> v2.0.0-alpha.2
| #1 8.437 * [new tag] v2.0.0-test.1 -> v2.0.0-test.1
| #1 8.437 * [new tag] v2.0.1 -> v2.0.1
| #1 8.437 * [new tag] v2.1.0 -> v2.1.0
| #1 8.437 * [new tag] v2.2.0 -> v2.2.0
| #1 8.437 * [new tag] v2.3.0 -> v2.3.0
| #1 8.437 * [new tag] v2.4.0 -> v2.4.0
| #1 8.438 * [new tag] v2.4.1 -> v2.4.1
| #1 8.438 * [new tag] v2.5.0 -> v2.5.0
| #1 8.438 * [new tag] v2.5.1 -> v2.5.1
| #1 8.438 * [new tag] v2.6.0 -> v2.6.0
| #1 8.438 * [new tag] v3.0.0 -> v3.0.0
| #1 8.439 * [new tag] v3.0.0-test.1 -> v3.0.0-test.1
| #1 8.439 * [new tag] v3.0.0-test.2 -> v3.0.0-test.2
| #1 8.439 * [new tag] v3.0.0-test.3 -> v3.0.0-test.3
| #1 8.439 * [new tag] v3.0.0-test.4 -> v3.0.0-test.4
| #1 8.439 * [new tag] v3.1.0 -> v3.1.0
| #1 8.439 * [new tag] v3.1.0-test.1 -> v3.1.0-test.1
| #1 8.439 * [new tag] v3.10.0 -> v3.10.0
| #1 8.440 * [new tag] v3.10.0-test.1 -> v3.10.0-test.1
| #1 8.440 * [new tag] v3.10.0-test.2 -> v3.10.0-test.2
| #1 8.440 * [new tag] v3.11.0 -> v3.11.0
| #1 8.440 * [new tag] v3.11.0-test.1 -> v3.11.0-test.1
| #1 8.440 * [new tag] v3.11.0-test.2 -> v3.11.0-test.2
| #1 8.440 * [new tag] v3.11.0-test.3 -> v3.11.0-test.3
| #1 8.440 * [new tag] v3.11.1 -> v3.11.1
| #1 8.441 * [new tag] v3.12.0 -> v3.12.0
| #1 8.441 * [new tag] v3.12.1 -> v3.12.1
| #1 8.441 * [new tag] v3.12.2 -> v3.12.2
| #1 8.441 * [new tag] v3.13.0 -> v3.13.0
| #1 8.441 * [new tag] v3.13.0-test.1 -> v3.13.0-test.1
| #1 8.441 * [new tag] v3.13.1 -> v3.13.1
| #1 8.441 * [new tag] v3.13.2 -> v3.13.2
| #1 8.442 * [new tag] v3.14.0 -> v3.14.0
| #1 8.442 * [new tag] v3.14.0-test.1 -> v3.14.0-test.1
| #1 8.442 * [new tag] v3.14.0-test.2 -> v3.14.0-test.2
| #1 8.442 * [new tag] v3.14.0-test.3 -> v3.14.0-test.3
| #1 8.442 * [new tag] v3.15.0 -> v3.15.0
| #1 8.442 * [new tag] v3.15.0-test.1 -> v3.15.0-test.1
| #1 8.442 * [new tag] v3.15.0-test.2 -> v3.15.0-test.2
| #1 8.443 * [new tag] v3.15.0-test.3 -> v3.15.0-test.3
| #1 8.443 * [new tag] v3.16.0 -> v3.16.0
| #1 8.443 * [new tag] v3.16.0-test.1 -> v3.16.0-test.1
| #1 8.443 * [new tag] v3.16.0-test.2 -> v3.16.0-test.2
| #1 8.443 * [new tag] v3.16.0-test.3 -> v3.16.0-test.3
| #1 8.443 * [new tag] v3.17.0-test.1 -> v3.17.0-test.1
| #1 8.443 * [new tag] v3.2.0 -> v3.2.0
| #1 8.443 * [new tag] v3.3.0 -> v3.3.0
| #1 8.444 * [new tag] v3.3.1 -> v3.3.1
| #1 8.444 * [new tag] v3.4.0 -> v3.4.0
| #1 8.444 * [new tag] v3.4.0-test.1 -> v3.4.0-test.1
| #1 8.444 * [new tag] v3.4.0-test.2 -> v3.4.0-test.2
| #1 8.444 * [new tag] v3.5.0 -> v3.5.0
| #1 8.444 * [new tag] v3.5.1 -> v3.5.1
| #1 8.444 * [new tag] v3.6.0 -> v3.6.0
| #1 8.445 * [new tag] v3.6.0-test.1 -> v3.6.0-test.1
| #1 8.445 * [new tag] v3.6.0-test.2 -> v3.6.0-test.2
| #1 8.445 * [new tag] v3.6.1 -> v3.6.1
| #1 8.445 * [new tag] v3.7.0 -> v3.7.0
| #1 8.445 * [new tag] v3.7.0-test.1 -> v3.7.0-test.1
| #1 8.445 * [new tag] v3.7.0-test.2 -> v3.7.0-test.2
| #1 8.445 * [new tag] v3.8.0 -> v3.8.0
| #1 8.446 * [new tag] v3.8.0-test.1 -> v3.8.0-test.1
| #1 8.446 * [new tag] v3.9.0 -> v3.9.0
| #1 8.507 fatal: reference is not a tree: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
| #1 ERROR: failed to checkout remote https://github.com/brocaar/lora-app-server.git: exit status 128
| ------
| > [internal] load git source https://github.com/brocaar/lora-app-server.git#5a5c7031fa8d5b879d258836fb7e1decdeeffd24:
| #1 8.445 * [new tag] v3.6.0-test.1 -> v3.6.0-test.1
| #1 8.445 * [new tag] v3.6.0-test.2 -> v3.6.0-test.2
| #1 8.445 * [new tag] v3.6.1 -> v3.6.1
| #1 8.445 * [new tag] v3.7.0 -> v3.7.0
| #1 8.445 * [new tag] v3.7.0-test.1 -> v3.7.0-test.1
| #1 8.445 * [new tag] v3.7.0-test.2 -> v3.7.0-test.2
| #1 8.445 * [new tag] v3.8.0 -> v3.8.0
| #1 8.446 * [new tag] v3.8.0-test.1 -> v3.8.0-test.1
| #1 8.446 * [new tag] v3.9.0 -> v3.9.0
| #1 8.507 fatal: reference is not a tree: 5a5c7031fa8d5b879d258836fb7e1decdeeffd24
| ------
| error: failed to solve: failed to read dockerfile: failed to checkout remote https://github.com/brocaar/lora-app-server.git: exit status 128
[CI/docker] ❗ ::error::buildx failed with: error: failed to solve: failed to read dockerfile: failed to checkout remote https://github.com/brocaar/lora-app-server.git: exit status 128
DEBU[0097] exit with `FAILURE`: 1
[CI/docker] ❌ Failure - Build and push
DEBU[0097] exit with `FAILURE`: 1
DEBU[0097] exit with `FAILURE`: 1
Error: exit with `FAILURE`: 1```
</details>
| https://github.com/nektos/act/issues/778 | https://github.com/nektos/act/pull/1925 | 67f4baa618b3371cc0ec0c03b169141c25809c9e | 17bf4fc5afd147ea967445b9d0dc2e684f57377c | "2021-08-17T12:12:01Z" | go | "2023-07-24T02:53:35Z" |
closed | nektos/act | https://github.com/nektos/act | 777 | ["pkg/runner/step_context.go", "pkg/runner/testdata/local-action-dockerfile/push.yml"] | Issue: Environment variables are merged in wrong order | ## System information
- Operating System: macOS
- Architecture: x64 (64-bit)
- Apple M1: no
- Docker version: 20.10.7
- Docker image used in `act`: image=catthehacker/ubuntu:act-latest
- `act` version: 0.2.24
## Expected behaviour
Environment variable defined locally in the **Step** should override the ones defined in **Previous Steps**.
## Actual behaviour
Environment variable defined locally in the **Step** are ignored when collide with the ones defined in **Previous Steps**.
Think the incorrect merging happens [here](https://github.com/nektos/act/blob/de44a505da37f9405db195902b277821df2742b6/cmd/root.go#L176)
## Workflow and/or repository
```yaml
name: Node.js Package
on:
push
jobs:
build:
runs-on: ubuntu-latest
steps:
# Setup .npmrc file to publish to npm
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '12.x'
registry-url: 'https://registry.npmjs.org'
- run: |
echo ${NODE_AUTH_TOKEN}
npm who
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
```
Here `actions/setup-node` exports `NODE_AUTH_TOKEN` set to `XXXX-XXXX-XXXX-XXXX`.
See the code [here](https://github.com/actions/setup-node/blob/5c355be17065acf11598c7a9bb47112fbcf2bbdc/src/authutil.ts#L59)
The **Next Step** has same locally defined variable, set to `secrets.NPM_TOKEN`.
## Steps to reproduce
1. Create new workflow setup using the example above
2. Create `.secrets` file with `NPM_TOKEN=<any string>`.
3. Run `act`
4. See `XXXX-XXXX-XXXX-XXXX` instead of `<any_string>` printed in the log
## `act` output
<details>
<summary>Log</summary>
```none
[Node.js Package/build] 🚀 Start image=catthehacker/ubuntu:act-latest
[Node.js Package/build] 🐳 docker pull catthehacker/ubuntu:act-latest
[Node.js Package/build] Removed container: a0990c4f6f00e1d7a89b07bfebfe043231bd08d1615ca45cb7a09efb022e0ccc
[Node.js Package/build] 🐳 docker volume rm act-Node-js-Package-build
[Node.js Package/build] 🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Node.js Package/build] Created container name=act-Node-js-Package-build id=79b550b28001a48e8c0621709b57da5010b99df821682647872ee54c9f3e5f39 from image catthehacker/ubuntu:act-latest (platform: )
[Node.js Package/build] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_TEMP=/tmp]
[Node.js Package/build] 🐳 docker run image=catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Node.js Package/build] Starting container: 79b550b28001a48e8c0621709b57da5010b99df821682647872ee54c9f3e5f39
[Node.js Package/build] Started container: 79b550b28001a48e8c0621709b57da5010b99df821682647872ee54c9f3e5f39
[Node.js Package/build] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root
[Node.js Package/build] Exec command '[mkdir -m 0777 -p /var/run/act]'
[Node.js Package/build] 🐳 docker cp src=/Users/psx/dev/act-test/. dst=/Users/psx/dev/act-test
[Node.js Package/build] 🐳 docker exec cmd=[mkdir -p /Users/psx/dev/act-test] user=
[Node.js Package/build] Exec command '[mkdir -p /Users/psx/dev/act-test]'
[Node.js Package/build] Extracting content from '/var/folders/w0/xrh58xjx21bbhkyfcmpsl9t40000gn/T/act283057225' to '/Users/psx/dev/act-test'
[Node.js Package/build] Extracting content to '/var/run/act/'
[Node.js Package/build] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:build GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/master GITHUB_REPOSITORY:psxcode/act-test GITHUB_REPOSITORY_OWNER:psxcode GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:685afc65211e203a87b1a3e59afff564bc73e235 GITHUB_TOKEN: GITHUB_WORKFLOW:Node.js Package GITHUB_WORKSPACE:/Users/psx/dev/act-test IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.4/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[Node.js Package/build] ⭐ Run actions/checkout@v2
[Node.js Package/build] Skipping local actions/checkout because workdir was already copied
[Node.js Package/build] ✅ Success - actions/checkout@v2
[Node.js Package/build] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:build GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/master GITHUB_REPOSITORY:psxcode/act-test GITHUB_REPOSITORY_OWNER:psxcode GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:685afc65211e203a87b1a3e59afff564bc73e235 GITHUB_TOKEN: GITHUB_WORKFLOW:Node.js Package GITHUB_WORKSPACE:/Users/psx/dev/act-test IMAGE_OS:ubuntu20 INPUT_NODE-VERSION:12.x INPUT_REGISTRY-URL:https://registry.npmjs.org ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.4/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[Node.js Package/build] ⭐ Run actions/setup-node@v2
[Node.js Package/build] 🐳 docker cp src=/Users/psx/.cache/act/actions-setup-node@v2/ dst=/var/run/act/actions/actions-setup-node@v2/
[Node.js Package/build] 🐳 docker exec cmd=[mkdir -p /var/run/act/actions/actions-setup-node@v2/] user=
[Node.js Package/build] Exec command '[mkdir -p /var/run/act/actions/actions-setup-node@v2/]'
[Node.js Package/build] Extracting content from '/var/folders/w0/xrh58xjx21bbhkyfcmpsl9t40000gn/T/act223943444' to '/var/run/act/actions/actions-setup-node@v2/'
[Node.js Package/build] 🐳 docker exec cmd=[node /var/run/act/actions/actions-setup-node@v2/dist/setup/index.js] user=
[Node.js Package/build] Exec command '[node /var/run/act/actions/actions-setup-node@v2/dist/setup/index.js]'
[Node.js Package/build] 💬 ::debug::isExplicit:
[Node.js Package/build] 💬 ::debug::explicit? false
[Node.js Package/build] 💬 ::debug::isExplicit: 14.17.4
[Node.js Package/build] 💬 ::debug::explicit? true
[Node.js Package/build] 💬 ::debug::evaluating 0 versions
[Node.js Package/build] 💬 ::debug::match not found
[Node.js Package/build] | Attempting to download 12.x...
[Node.js Package/build] 💬 ::debug::No manifest cached
[Node.js Package/build] 💬 ::debug::Getting manifest from actions/node-versions@main
[Node.js Package/build] 💬 ::debug::check 16.6.2 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 16.6.1 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 16.6.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 16.5.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 16.4.2 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 16.4.1 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 16.4.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 16.3.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 16.2.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 16.1.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 16.0.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.17.5 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.17.4 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.17.3 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.17.2 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.17.1 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.17.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.16.1 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.16.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.15.5 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.15.4 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.15.3 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.15.2 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.15.1 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.15.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.14.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.13.1 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.13.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.12.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.11.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.10.1 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.10.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.9.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.8.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.7.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.6.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.5.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.4.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.3.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.2.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.1.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 14.0.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 13.14.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 13.13.0 satisfies 12.x
[Node.js Package/build] 💬 ::debug::check 12.22.5 satisfies 12.x
[Node.js Package/build] 💬 ::debug::x64===x64 && darwin===linux
[Node.js Package/build] 💬 ::debug::x64===x64 && linux===linux
[Node.js Package/build] 💬 ::debug::matched 12.22.5
[Node.js Package/build] | Acquiring 12.22.5 - x64 from https://github.com/actions/node-versions/releases/download/12.22.5-1122930631/node-12.22.5-linux-x64.tar.gz
[Node.js Package/build] 💬 ::debug::Downloading https://github.com/actions/node-versions/releases/download/12.22.5-1122930631/node-12.22.5-linux-x64.tar.gz
[Node.js Package/build] 💬 ::debug::Destination /tmp/029010c5-1f17-4bc9-87b9-859793a428c2
[Node.js Package/build] 💬 ::debug::download complete
[Node.js Package/build] | Extracting ...
[Node.js Package/build] 💬 ::debug::Checking tar --version
[Node.js Package/build] 💬 ::debug::tar (GNU tar) 1.30%0ACopyright (C) 2017 Free Software Foundation, Inc.%0ALicense GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>.%0AThis is free software: you are free to change and redistribute it.%0AThere is NO WARRANTY, to the extent permitted by law.%0A%0AWritten by John Gilmore and Jay Fenlason.
[Node.js Package/build] | [command]/usr/bin/tar xz --strip 1 --warning=no-unknown-keyword -C /tmp/d4d103a8-87ae-43a4-9e95-8ef37c27de31 -f /tmp/029010c5-1f17-4bc9-87b9-859793a428c2
[Node.js Package/build] | Adding to the cache ...
[Node.js Package/build] 💬 ::debug::Caching tool node 12.22.5 x64
[Node.js Package/build] 💬 ::debug::source dir: /tmp/d4d103a8-87ae-43a4-9e95-8ef37c27de31
[Node.js Package/build] 💬 ::debug::destination /opt/hostedtoolcache/node/12.22.5/x64
[Node.js Package/build] 💬 ::debug::finished caching tool
[Node.js Package/build] | Done
[Node.js Package/build] 💬 ::debug::Setting auth in /tmp/.npmrc
[Node.js Package/build] ❓ ##[add-matcher]/run/act/actions/actions-setup-node@v2/.github/tsc.json
[Node.js Package/build] ❓ ##[add-matcher]/run/act/actions/actions-setup-node@v2/.github/eslint-stylish.json
[Node.js Package/build] ❓ ##[add-matcher]/run/act/actions/actions-setup-node@v2/.github/eslint-compact.json
[Node.js Package/build] ✅ Success - actions/setup-node@v2
[Node.js Package/build] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:2 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:build GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/master GITHUB_REPOSITORY:psxcode/act-test GITHUB_REPOSITORY_OWNER:psxcode GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:685afc65211e203a87b1a3e59afff564bc73e235 GITHUB_TOKEN: GITHUB_WORKFLOW:Node.js Package GITHUB_WORKSPACE:/Users/psx/dev/act-test IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_OS_VERSION:2004 LSB_RELEASE:20.04 NODE_AUTH_TOKEN:XXXXX-XXXXX-XXXXX-XXXXX NPM_CONFIG_USERCONFIG:/tmp/.npmrc PATH:/opt/hostedtoolcache/node/12.22.5/x64/bin:/opt/hostedtoolcache/node/14.17.4/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[Node.js Package/build] ⭐ Run echo ${NODE_AUTH_TOKEN}
npm who
[Node.js Package/build] Extracting content to '/Users/psx/dev/act-test'
[Node.js Package/build] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /Users/psx/dev/act-test/workflow/2] user=
[Node.js Package/build] Exec command '[bash --noprofile --norc -e -o pipefail /Users/psx/dev/act-test/workflow/2]'
[Node.js Package/build] | XXXXX-XXXXX-XXXXX-XXXXX
[Node.js Package/build] | npm ERR! code E401
[Node.js Package/build] | npm ERR! 401 Unauthorized - GET https://registry.npmjs.org/-/whoami
[Node.js Package/build] |
[Node.js Package/build] | npm ERR! A complete log of this run can be found in:
[Node.js Package/build] | npm ERR! /root/.npm/_logs/2021-08-15T19_59_52_179Z-debug.log
[Node.js Package/build] ❌ Failure - echo ${NODE_AUTH_TOKEN}
npm who
```
</details>
| https://github.com/nektos/act/issues/777 | https://github.com/nektos/act/pull/832 | 6c60af76779b739b7487e3fbe83ea15cd2ab8ad5 | a0d360236ef5466a441631c2f93794b55d4b76c5 | "2021-08-15T20:08:35Z" | go | "2021-09-28T01:18:59Z" |
closed | nektos/act | https://github.com/nektos/act | 770 | [".github/workflows/checks.yml", ".github/workflows/promote.yml", ".github/workflows/release.yml"] | Issue: Ubuntu dependencies fail to install during job run | ## System information
- Operating System: Linux (RHEL)
- Architecture: x86_64
- Apple M1: no
- Docker version: 20.10.7
- Docker image used in `act`: `catthehacker/ubuntu:act-latest`
- `act` version: `0.2.24`
## Expected behaviour
I am trying to set up `act` on the `meson_tweaks` branch of my [Scipy fork](https://github.com/harshcasper/scipy-fork) to run all the GitHub actions workflows locally. I have three jobs: `build`, `test_meson`, `test_macos`. Right now, I'm concerned with the `test_meson` job which builds and tests Scipy.
The expected behaviour is that the job should successfully run after installing all Ubuntu and Python dependencies, and build, install and test Scipy.
## Actual behaviour
As of now, when I'm running `act -j test_meson`, the Ubuntu dependencies fail to install. Due to this the whole job fails and I'm not able to validate the entire job run.
## Workflow and/or repository
<details>
<summary>workflow</summary>
```none
name: Linux Tests
on:
push:
branches:
- meson
pull_request:
branches:
- meson
jobs:
test_meson:
name: Meson build
# if: "github.repository == 'rgommers/scipy' && !contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]') && !contains(github.event.head_commit.message, '[skip github]') && !contains(github.ref, 'maintenance/') && !contains(github.base_ref, 'maintenance/')"
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Ubuntu dependencies
run: |
# NOTE: not the same OpenBLAS version as in upstream CI (I'm being lazy here)
apt-get update
yes | apt-get -o Debug::pkgProblemResolver=true -o Debug::Acquire::http=true install libopenblas-dev libatlas-base-dev liblapack-dev gfortran libgmp-dev libmpfr-dev libsuitesparse-dev ccache libmpc-dev
- name: Install Python packages
run: |
python -m pip install numpy setuptools wheel cython pytest pytest-xdist pybind11 pytest-xdist mpmath gmpy2 pythran ninja
python -m pip install --user git+https://github.com/rgommers/meson.git@fix-cython-mixed-sources
- name: Build SciPy
run: |
meson setup build --prefix=$PWD/installdir
ninja -C build -j 2
- name: Cache build dir
id: cache-scipy-build
uses: actions/cache@v2
with:
path: build
key: ${{ runner.os }}-${{ matrix.python-version }}
- name: Install SciPy
run: |
meson install -C build
- name: Test SciPy
run: |
export PYTHONPATH=$PWD/installdir/lib/python3.9/site-packages/
# FIXME: run all tests, not just one simple module - create a dev.py
# interface. Also ensure that fails CI if tests fail (see runtests.py)
# Avoid being in a directory which has a scipy/ dir
pushd installdir
python -c "import scipy; import sys; sys.exit(int(not scipy.test(parallel=2)))"
popd
```
</details>
Workflow link: [linux.yml](https://github.com/HarshCasper/scipy-fork/blob/meson_tweaks/.github/workflows/linux.yml)
## Steps to reproduce
1. Clone the repo: `https://github.com/HarshCasper/scipy-fork` and `cd` into it.
2. Run `act -l` to see all the available jobs.
3. Run `act -j test_meson` to run the `test_meson` job and see the error.
## `act` output
<details>
<summary>Log</summary>
```none
hmishra@hmishra ~/quansight/scipy meson_tweaks act -j test_meson
[Linux Tests/Meson build] 🧪 Matrix: map[python-version:3.9]
[Linux Tests/Meson build] 🚀 Start image=catthehacker/ubuntu:act-latest
[Linux Tests/Meson build] 🐳 docker run image=catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Linux Tests/Meson build] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root
[Linux Tests/Meson build] 🐳 docker cp src=/home/hmishra/quansight/scipy/. dst=/home/hmishra/quansight/scipy
[Linux Tests/Meson build] 🐳 docker exec cmd=[mkdir -p /home/hmishra/quansight/scipy] user=
[Linux Tests/Meson build] ⭐ Run actions/checkout@v2
[Linux Tests/Meson build] ✅ Success - actions/checkout@v2
[Linux Tests/Meson build] ⭐ Run Setup Python
INFO[0005] ☁ git clone 'https://github.com/actions/setup-python' # ref=v2
[Linux Tests/Meson build] 🐳 docker cp src=/home/hmishra/.cache/act/actions-setup-python@v2/ dst=/var/run/act/actions/actions-setup-python@v2/
[Linux Tests/Meson build] 🐳 docker exec cmd=[mkdir -p /var/run/act/actions/actions-setup-python@v2/] user=
[Linux Tests/Meson build] 🐳 docker exec cmd=[node /var/run/act/actions/actions-setup-python@v2/dist/index.js] user=
[Linux Tests/Meson build] 💬 ::debug::Semantic version spec of 3.9 is 3.9
[Linux Tests/Meson build] 💬 ::debug::isExplicit:
[Linux Tests/Meson build] 💬 ::debug::explicit? false
[Linux Tests/Meson build] 💬 ::debug::evaluating 0 versions
[Linux Tests/Meson build] 💬 ::debug::match not found
| Version 3.9 was not found in the local cache
[Linux Tests/Meson build] 💬 ::debug::check 3.10.0-rc.1 satisfies 3.9
[Linux Tests/Meson build] 💬 ::debug::check 3.10.0-beta.4 satisfies 3.9
[Linux Tests/Meson build] 💬 ::debug::check 3.10.0-beta.3 satisfies 3.9
[Linux Tests/Meson build] 💬 ::debug::check 3.10.0-beta.2 satisfies 3.9
[Linux Tests/Meson build] 💬 ::debug::check 3.10.0-beta.1 satisfies 3.9
[Linux Tests/Meson build] 💬 ::debug::check 3.10.0-alpha.7 satisfies 3.9
[Linux Tests/Meson build] 💬 ::debug::check 3.10.0-alpha.6 satisfies 3.9
[Linux Tests/Meson build] 💬 ::debug::check 3.10.0-alpha.5 satisfies 3.9
[Linux Tests/Meson build] 💬 ::debug::check 3.10.0-alpha.4 satisfies 3.9
[Linux Tests/Meson build] 💬 ::debug::check 3.10.0-alpha.3 satisfies 3.9
[Linux Tests/Meson build] 💬 ::debug::check 3.10.0-alpha.2 satisfies 3.9
[Linux Tests/Meson build] 💬 ::debug::check 3.10.0-alpha.1 satisfies 3.9
[Linux Tests/Meson build] 💬 ::debug::check 3.9.6 satisfies 3.9
[Linux Tests/Meson build] 💬 ::debug::x64===x64 && darwin===linux
[Linux Tests/Meson build] 💬 ::debug::x64===x64 && linux===linux
[Linux Tests/Meson build] 💬 ::debug::x64===x64 && linux===linux
[Linux Tests/Meson build] 💬 ::debug::x64===x64 && linux===linux
[Linux Tests/Meson build] 💬 ::debug::matched 3.9.6
| Version 3.9 is available for downloading
| Download from "https://github.com/actions/python-versions/releases/download/3.9.6-112667/python-3.9.6-linux-20.04-x64.tar.gz"
[Linux Tests/Meson build] 💬 ::debug::Downloading https://github.com/actions/python-versions/releases/download/3.9.6-112667/python-3.9.6-linux-20.04-x64.tar.gz
[Linux Tests/Meson build] 💬 ::debug::Destination /tmp/b5c83d94-e3dc-4914-8376-43ffc54e950a
[Linux Tests/Meson build] 💬 ::debug::download complete
| Extract downloaded archive
[Linux Tests/Meson build] 💬 ::debug::Checking tar --version
[Linux Tests/Meson build] 💬 ::debug::tar (GNU tar) 1.30%0ACopyright (C) 2017 Free Software Foundation, Inc.%0ALicense GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>.%0AThis is free software: you are free to change and redistribute it.%0AThere is NO WARRANTY, to the extent permitted by law.%0A%0AWritten by John Gilmore and Jay Fenlason.
| [command]/usr/bin/tar xz --warning=no-unknown-keyword -C /tmp/c365bb97-e663-4806-8b1b-ada386f04318 -f /tmp/b5c83d94-e3dc-4914-8376-43ffc54e950a
| Execute installation script
| Check if Python hostedtoolcache folder exist...
| Creating Python hostedtoolcache folder...
| Create Python 3.9.6 folder
| Copy Python binaries to hostedtoolcache folder
| Create additional symlinks (Required for the UsePythonVersion Azure Pipelines task and the setup-python GitHub Action)
| Upgrading PIP...
| Looking in links: /tmp/tmp1_s03nps
| Requirement already satisfied: setuptools in /opt/hostedtoolcache/Python/3.9.6/x64/lib/python3.9/site-packages (56.0.0)
| Requirement already satisfied: pip in /opt/hostedtoolcache/Python/3.9.6/x64/lib/python3.9/site-packages (21.1.3)
[Linux Tests/Meson build] ❗ ::error::WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
| Collecting pip
| Downloading pip-21.2.3-py3-none-any.whl (1.6 MB)
| Installing collected packages: pip
| Successfully installed pip-21.2.3
[Linux Tests/Meson build] ❗ ::error::WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
[Linux Tests/Meson build] ❗ ::error::WARNING: You are using pip version 21.1.3; however, version 21.2.3 is available.%0AYou should consider upgrading via the '/opt/hostedtoolcache/Python/3.9.6/x64/bin/python -m pip install --upgrade pip' command.
| Create complete file
[Linux Tests/Meson build] 💬 ::debug::isExplicit:
[Linux Tests/Meson build] 💬 ::debug::explicit? false
[Linux Tests/Meson build] 💬 ::debug::isExplicit: 3.9.6
[Linux Tests/Meson build] 💬 ::debug::explicit? true
[Linux Tests/Meson build] 💬 ::debug::evaluating 1 versions
[Linux Tests/Meson build] 💬 ::debug::matched: 3.9.6
[Linux Tests/Meson build] 💬 ::debug::checking cache: /opt/hostedtoolcache/Python/3.9.6/x64
[Linux Tests/Meson build] 💬 ::debug::Found tool in cache Python 3.9.6 x64
[Linux Tests/Meson build] ⚙ ::set-output:: python-version=3.9.6
| Successfully setup CPython (3.9.6)
[Linux Tests/Meson build] ❓ ##[add-matcher]/run/act/actions/actions-setup-python@v2/.github/python.json
[Linux Tests/Meson build] ✅ Success - Setup Python
[Linux Tests/Meson build] ⭐ Run Install Ubuntu dependencies
[Linux Tests/Meson build] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /home/hmishra/quansight/scipy/workflow/2] user=
Get:1 http://archive.ubuntu.com/ubuntu focal InRelease [265 kB]
Get:2 http://security.ubuntu.com/ubuntu focal-security InRelease [114 kB]
Get:3 https://packages.microsoft.com/ubuntu/20.04/prod focal InRelease [10.5 kB]
Get:4 http://archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB]
Get:5 https://packages.microsoft.com/ubuntu/20.04/prod focal/main amd64 Packages [94.4 kB]
Get:6 http://archive.ubuntu.com/ubuntu focal-backports InRelease [101 kB]
Get:7 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [432 kB]
Get:8 http://archive.ubuntu.com/ubuntu focal/multiverse amd64 Packages [177 kB]
Get:9 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [30.6 kB]
Get:10 http://archive.ubuntu.com/ubuntu focal/main amd64 Packages [1275 kB]
Get:11 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [786 kB]
Get:12 http://archive.ubuntu.com/ubuntu focal/universe amd64 Packages [11.3 MB]
Get:13 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [989 kB]
Get:14 http://archive.ubuntu.com/ubuntu focal/restricted amd64 Packages [33.4 kB]
Get:15 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [39.0 kB]
Get:16 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [478 kB]
Get:17 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [1424 kB]
Get:18 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1056 kB]
Get:19 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [2668 B]
Get:20 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [6319 B]
Fetched 18.8 MB in 9s (2202 kB/s)
Reading package lists... Done
Reading package lists... Done
Building dependency tree
Reading state information... Done
| libgmp-dev is already the newest version (2:6.2.0+dfsg-4).
| Starting pkgProblemResolver with broken count: 0
| Starting 2 pkgProblemResolver with broken count: 0
| Done
| The following additional packages will be installed:
| gfortran-9 libamd2 libatlas3-base libbtf1 libcamd2 libccolamd2 libcholmod3
| libcolamd2 libcxsparse3 libgfortran-9-dev libgfortran5 libgraphblas3 libklu1
| liblapack3 libldl2 libmetis5 libmongoose2 libopenblas-pthread-dev
| libopenblas0 libopenblas0-pthread librbio2 libspqr2 libsuitesparseconfig5
| libumfpack5
| Suggested packages:
| distcc | icecc gfortran-multilib gfortran-doc gfortran-9-multilib
| gfortran-9-doc libcoarrays-dev libatlas-doc liblapack-doc libmpfr-doc
| The following NEW packages will be installed:
| ccache gfortran gfortran-9 libamd2 libatlas-base-dev libatlas3-base libbtf1
| libcamd2 libccolamd2 libcholmod3 libcolamd2 libcxsparse3 libgfortran-9-dev
| libgfortran5 libgraphblas3 libklu1 liblapack-dev liblapack3 libldl2
| libmetis5 libmongoose2 libmpc-dev libmpfr-dev libopenblas-dev
| libopenblas-pthread-dev libopenblas0 libopenblas0-pthread librbio2 libspqr2
| libsuitesparse-dev libsuitesparseconfig5 libumfpack5
| 0 upgraded, 32 newly installed, 0 to remove and 3 not upgraded.
| Need to get 46.6 MB of archives.
| After this operation, 395 MB of additional disk space will be used.
0% [Working]GET /ubuntu/pool/main/c/ccache/ccache_3.7.7-1_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
0% [Waiting for headers]Answer for: http://archive.ubuntu.com/ubuntu/pool/main/c/ccache/ccache_3.7.7-1_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:02 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Mon, 06 Jan 2020 23:39:02 GMT
| ETag: "1d768-59b812a0af180"
| Accept-Ranges: bytes
| Content-Length: 120680
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:1 http://archive.ubuntu.com/ubuntu focal/main amd64 ccache amd64 3.7.7-1 [121 kB]
0% [1 ccache 95.2 kB/121 kB 79%]GET /ubuntu/pool/main/g/gcc-10/libgfortran5_10.3.0-1ubuntu1%7e20.04_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
1% [Working]GET /ubuntu/pool/main/g/gcc-9/libgfortran-9-dev_9.3.0-17ubuntu1%7e20.04_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| GET /ubuntu/pool/main/g/gcc-9/gfortran-9_9.3.0-17ubuntu1%7e20.04_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| GET /ubuntu/pool/main/g/gcc-defaults/gfortran_9.3.0-1ubuntu2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| GET /ubuntu/pool/main/s/suitesparse/libsuitesparseconfig5_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| GET /ubuntu/pool/main/s/suitesparse/libamd2_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| GET /ubuntu/pool/universe/a/atlas/libatlas3-base_3.10.3-8ubuntu7_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| GET /ubuntu/pool/universe/a/atlas/libatlas-base-dev_3.10.3-8ubuntu7_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| GET /ubuntu/pool/main/s/suitesparse/libbtf1_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| GET /ubuntu/pool/main/g/gcc-10/libgfortran5_10.3.0-1ubuntu1%7e20.04_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
1% [Waiting for headers]Answer for: http://archive.ubuntu.com/ubuntu/pool/main/g/gcc-10/libgfortran5_10.3.0-1ubuntu1~20.04_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:04 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Mon, 14 Jun 2021 19:28:55 GMT
| ETag: "b3c9c-5c4bede4c061c"
| Accept-Ranges: bytes
| Content-Length: 736412
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:2 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libgfortran5 amd64 10.3.0-1ubuntu1~20.04 [736 kB]
2% [2 libgfortran5 724 kB/736 kB 98%]GET /ubuntu/pool/main/g/gcc-9/libgfortran-9-dev_9.3.0-17ubuntu1%7e20.04_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
3% [Working]GET /ubuntu/pool/main/g/gcc-9/libgfortran-9-dev_9.3.0-17ubuntu1%7e20.04_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| Answer for: http://archive.ubuntu.com/ubuntu/pool/main/g/gcc-9/libgfortran-9-dev_9.3.0-17ubuntu1~20.04_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:05 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Fri, 04 Sep 2020 13:24:43 GMT
| ETag: "a713c-5ae7ccaabfcc0"
| Accept-Ranges: bytes
| Content-Length: 684348
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:3 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libgfortran-9-dev amd64 9.3.0-17ubuntu1~20.04 [684 kB]
4% [3 libgfortran-9-dev 479 kB/684 kB 70%]GET /ubuntu/pool/main/g/gcc-9/gfortran-9_9.3.0-17ubuntu1%7e20.04_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
5% [Working]GET /ubuntu/pool/main/g/gcc-9/gfortran-9_9.3.0-17ubuntu1%7e20.04_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| Answer for: http://archive.ubuntu.com/ubuntu/pool/main/g/gcc-9/gfortran-9_9.3.0-17ubuntu1~20.04_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:06 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Fri, 04 Sep 2020 13:24:44 GMT
| ETag: "78dd2c-5ae7ccabb3f00"
| Accept-Ranges: bytes
| Content-Length: 7920940
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:4 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 gfortran-9 amd64 9.3.0-17ubuntu1~20.04 [7921 kB]
17% [4 gfortran-9 7033 kB/7921 kB 89%] 300 kB/s 2min 7sGET /ubuntu/pool/main/g/gcc-defaults/gfortran_9.3.0-1ubuntu2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
19% [Working] 300 kB/s 2min 4sGET /ubuntu/pool/main/g/gcc-defaults/gfortran_9.3.0-1ubuntu2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| Answer for: http://archive.ubuntu.com/ubuntu/pool/main/g/gcc-defaults/gfortran_9.3.0-1ubuntu2_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:10 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Tue, 24 Mar 2020 09:54:27 GMT
| ETag: "55c-5a196bcb99ac0"
| Accept-Ranges: bytes
| Content-Length: 1372
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:5 http://archive.ubuntu.com/ubuntu focal/main amd64 gfortran amd64 4:9.3.0-1ubuntu2 [1372 B]
19% [5 gfortran 1372 B/1372 B 100%] 300 kB/s 2min 4sGET /ubuntu/pool/main/s/suitesparse/libsuitesparseconfig5_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
19% [Working] 300 kB/s 2min 4sAnswer for: http://archive.ubuntu.com/ubuntu/pool/main/s/suitesparse/libsuitesparseconfig5_5.7.1+dfsg-2_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:11 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Mon, 02 Mar 2020 15:08:25 GMT
| ETag: "2608-59fe08f0c6c40"
| Accept-Ranges: bytes
| Content-Length: 9736
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:6 http://archive.ubuntu.com/ubuntu focal/main amd64 libsuitesparseconfig5 amd64 1:5.7.1+dfsg-2 [9736 B]
20% [Working] 300 kB/s 2min 4sGET /ubuntu/pool/main/s/suitesparse/libamd2_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| Answer for: http://archive.ubuntu.com/ubuntu/pool/main/s/suitesparse/libamd2_5.7.1+dfsg-2_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:11 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Mon, 02 Mar 2020 15:08:27 GMT
| ETag: "4e00-59fe08f2af0c0"
| Accept-Ranges: bytes
| Content-Length: 19968
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:7 http://archive.ubuntu.com/ubuntu focal/main amd64 libamd2 amd64 1:5.7.1+dfsg-2 [20.0 kB]
20% [7 libamd2 8407 B/20.0 kB 42%] 300 kB/s 2min 4sGET /ubuntu/pool/universe/a/atlas/libatlas3-base_3.10.3-8ubuntu7_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
21% [Working] 300 kB/s 2min 3sGET /ubuntu/pool/universe/a/atlas/libatlas3-base_3.10.3-8ubuntu7_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| Answer for: http://archive.ubuntu.com/ubuntu/pool/universe/a/atlas/libatlas3-base_3.10.3-8ubuntu7_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:11 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Thu, 26 Mar 2020 12:23:33 GMT
| ETag: "39021c-5a1c10da17b40"
| Accept-Ranges: bytes
| Content-Length: 3736092
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:8 http://archive.ubuntu.com/ubuntu focal/universe amd64 libatlas3-base amd64 3.10.3-8ubuntu7 [3736 kB]
25% [8 libatlas3-base 2292 kB/3736 kB 61%] 300 kB/s 1min 56sGET /ubuntu/pool/universe/a/atlas/libatlas-base-dev_3.10.3-8ubuntu7_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
28% [Working] 300 kB/s 1min 51sGET /ubuntu/pool/universe/a/atlas/libatlas-base-dev_3.10.3-8ubuntu7_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| Answer for: http://archive.ubuntu.com/ubuntu/pool/universe/a/atlas/libatlas-base-dev_3.10.3-8ubuntu7_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:13 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Thu, 26 Mar 2020 12:23:33 GMT
| ETag: "3e0c48-5a1c10da17b40"
| Accept-Ranges: bytes
| Content-Length: 4066376
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:9 http://archive.ubuntu.com/ubuntu focal/universe amd64 libatlas-base-dev amd64 3.10.3-8ubuntu7 [4066 kB]
28% [9 libatlas-base-dev 4059 B/4066 kB 0%] 300 kB/s 1min 51sGET /ubuntu/pool/main/s/suitesparse/libbtf1_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
35% [Working] 300 kB/s 1min 37sGET /ubuntu/pool/main/s/suitesparse/libbtf1_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| Answer for: http://archive.ubuntu.com/ubuntu/pool/main/s/suitesparse/libbtf1_5.7.1+dfsg-2_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:13 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Mon, 02 Mar 2020 15:08:25 GMT
| ETag: "2c18-59fe08f0c6c40"
| Accept-Ranges: bytes
| Content-Length: 11288
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:10 http://archive.ubuntu.com/ubuntu focal/main amd64 libbtf1 amd64 1:5.7.1+dfsg-2 [11.3 kB]
36% [Working] 2483 kB/s 11sGET /ubuntu/pool/main/s/suitesparse/libcamd2_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| GET /ubuntu/pool/main/s/suitesparse/libcamd2_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
36% [Waiting for headers] 2483 kB/s 11sAnswer for: http://archive.ubuntu.com/ubuntu/pool/main/s/suitesparse/libcamd2_5.7.1+dfsg-2_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:14 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Mon, 02 Mar 2020 15:08:26 GMT
| ETag: "54b4-59fe08f1bae80"
| Accept-Ranges: bytes
| Content-Length: 21684
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:11 http://archive.ubuntu.com/ubuntu focal/main amd64 libcamd2 amd64 1:5.7.1+dfsg-2 [21.7 kB]
37% [Working] 2483 kB/s 11sGET /ubuntu/pool/main/s/suitesparse/libccolamd2_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| GET /ubuntu/pool/main/s/suitesparse/libccolamd2_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
37% [Waiting for headers] 2483 kB/s 11sAnswer for: http://archive.ubuntu.com/ubuntu/pool/main/s/suitesparse/libccolamd2_5.7.1+dfsg-2_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:15 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Mon, 02 Mar 2020 15:08:25 GMT
| ETag: "5ad0-59fe08f0c6c40"
| Accept-Ranges: bytes
| Content-Length: 23248
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:12 http://archive.ubuntu.com/ubuntu focal/main amd64 libccolamd2 amd64 1:5.7.1+dfsg-2 [23.2 kB]
37% [12 libccolamd2 14.2 kB/23.2 kB 61%] 2483 kB/s 11sGET /ubuntu/pool/universe/o/openblas/libopenblas0-pthread_0.3.8%2bds-1ubuntu0.20.04.1_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
37% [Working] 2483 kB/s 11sGET /ubuntu/pool/universe/o/openblas/libopenblas0-pthread_0.3.8%2bds-1ubuntu0.20.04.1_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
37% [Waiting for headers] 2483 kB/s 11sAnswer for: http://archive.ubuntu.com/ubuntu/pool/universe/o/openblas/libopenblas0-pthread_0.3.8+ds-1ubuntu0.20.04.1_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:15 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Wed, 10 Jun 2020 14:11:07 GMT
| ETag: "8b4450-5a7bb6a4234c0"
| Accept-Ranges: bytes
| Content-Length: 9126992
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:13 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 libopenblas0-pthread amd64 0.3.8+ds-1ubuntu0.20.04.1 [9127 kB]
54% [Working] 2483 kB/s 8sGET /ubuntu/pool/main/s/suitesparse/libcolamd2_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| GET /ubuntu/pool/main/s/suitesparse/libcolamd2_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| Answer for: http://archive.ubuntu.com/ubuntu/pool/main/s/suitesparse/libcolamd2_5.7.1+dfsg-2_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:17 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Mon, 02 Mar 2020 15:08:26 GMT
| ETag: "427c-59fe08f1bae80"
| Accept-Ranges: bytes
| Content-Length: 17020
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:14 http://archive.ubuntu.com/ubuntu focal/main amd64 libcolamd2 amd64 1:5.7.1+dfsg-2 [17.0 kB]
54% [14 libcolamd2 9358 B/17.0 kB 55%] 2483 kB/s 8sGET /ubuntu/pool/main/l/lapack/liblapack3_3.9.0-1build1_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
54% [Working] 2483 kB/s 8sGET /ubuntu/pool/main/l/lapack/liblapack3_3.9.0-1build1_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
54% [Waiting for headers] 2483 kB/s 8sAnswer for: http://archive.ubuntu.com/ubuntu/pool/main/l/lapack/liblapack3_3.9.0-1build1_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:17 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Sat, 21 Mar 2020 13:18:55 GMT
| ETag: "20dc30-5a15d3e6e4dc0"
| Accept-Ranges: bytes
| Content-Length: 2153520
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:15 http://archive.ubuntu.com/ubuntu focal/main amd64 liblapack3 amd64 3.9.0-1build1 [2154 kB]
57% [15 liblapack3 1647 kB/2154 kB 76%] 2483 kB/s 7sGET /ubuntu/pool/main/m/metis/libmetis5_5.1.0.dfsg-5_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
59% [Working] 2483 kB/s 7sGET /ubuntu/pool/main/m/metis/libmetis5_5.1.0.dfsg-5_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| Answer for: http://archive.ubuntu.com/ubuntu/pool/main/m/metis/libmetis5_5.1.0.dfsg-5_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:19 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Wed, 02 Nov 2016 04:08:50 GMT
| ETag: "29326-540499929d880"
| Accept-Ranges: bytes
| Content-Length: 168742
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:16 http://archive.ubuntu.com/ubuntu focal/main amd64 libmetis5 amd64 5.1.0.dfsg-5 [169 kB]
59% [16 libmetis5 8405 B/169 kB 5%] 1882 kB/s 9sGET /ubuntu/pool/main/s/suitesparse/libcholmod3_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
59% [Working] 1882 kB/s 9sGET /ubuntu/pool/main/s/suitesparse/libcholmod3_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| Answer for: http://archive.ubuntu.com/ubuntu/pool/main/s/suitesparse/libcholmod3_5.7.1+dfsg-2_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:20 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Mon, 02 Mar 2020 15:08:26 GMT
| ETag: "4b300-59fe08f1bae80"
| Accept-Ranges: bytes
| Content-Length: 307968
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:17 http://archive.ubuntu.com/ubuntu focal/main amd64 libcholmod3 amd64 1:5.7.1+dfsg-2 [308 kB]
59% [17 libcholmod3 2613 B/308 kB 1%] 1882 kB/s 9sGET /ubuntu/pool/main/s/suitesparse/libcxsparse3_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
61% [Working] 1882 kB/s 9sGET /ubuntu/pool/main/s/suitesparse/libcxsparse3_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| Answer for: http://archive.ubuntu.com/ubuntu/pool/main/s/suitesparse/libcxsparse3_5.7.1+dfsg-2_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:21 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Mon, 02 Mar 2020 15:08:27 GMT
| ETag: "facc-59fe08f2af0c0"
| Accept-Ranges: bytes
| Content-Length: 64204
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:18 http://archive.ubuntu.com/ubuntu focal/main amd64 libcxsparse3 amd64 1:5.7.1+dfsg-2 [64.2 kB]
61% [18 libcxsparse3 7910 B/64.2 kB 12%] 1882 kB/s 9sGET /ubuntu/pool/main/s/suitesparse/libgraphblas3_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
61% [Working] 1882 kB/s 9sGET /ubuntu/pool/main/s/suitesparse/libgraphblas3_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| Answer for: http://archive.ubuntu.com/ubuntu/pool/main/s/suitesparse/libgraphblas3_5.7.1+dfsg-2_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:21 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Mon, 02 Mar 2020 15:08:24 GMT
| ETag: "3986f0-59fe08efd2a00"
| Accept-Ranges: bytes
| Content-Length: 3770096
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:19 http://archive.ubuntu.com/ubuntu focal/main amd64 libgraphblas3 amd64 1:5.7.1+dfsg-2 [3770 kB]
64% [19 libgraphblas3 1368 kB/3770 kB 36%] 1882 kB/s 8sGET /ubuntu/pool/main/s/suitesparse/libklu1_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
68% [Working] 1882 kB/s 7sGET /ubuntu/pool/main/s/suitesparse/libklu1_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| Answer for: http://archive.ubuntu.com/ubuntu/pool/main/s/suitesparse/libklu1_5.7.1+dfsg-2_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:24 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Mon, 02 Mar 2020 15:08:25 GMT
| ETag: "1181c-59fe08f0c6c40"
| Accept-Ranges: bytes
| Content-Length: 71708
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:20 http://archive.ubuntu.com/ubuntu focal/main amd64 libklu1 amd64 1:5.7.1+dfsg-2 [71.7 kB]
68% [20 libklu1 9854 B/71.7 kB 14%] 1882 kB/s 7sGET /ubuntu/pool/universe/o/openblas/libopenblas-pthread-dev_0.3.8%2bds-1ubuntu0.20.04.1_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
69% [Working] 1882 kB/s 7sGET /ubuntu/pool/universe/o/openblas/libopenblas-pthread-dev_0.3.8%2bds-1ubuntu0.20.04.1_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| Answer for: http://archive.ubuntu.com/ubuntu/pool/universe/o/openblas/libopenblas-pthread-dev_0.3.8+ds-1ubuntu0.20.04.1_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:24 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Wed, 10 Jun 2020 14:11:07 GMT
| ETag: "450f44-5a7bb6a4234c0"
| Accept-Ranges: bytes
| Content-Length: 4525892
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:21 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 libopenblas-pthread-dev amd64 0.3.8+ds-1ubuntu0.20.04.1 [4526 kB]
75% [21 libopenblas-pthread-dev 3638 kB/4526 kB 80%] 1882 kB/s 5sGET /ubuntu/pool/main/l/lapack/liblapack-dev_3.9.0-1build1_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
78% [Working] 1882 kB/s 4sGET /ubuntu/pool/main/l/lapack/liblapack-dev_3.9.0-1build1_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| Answer for: http://archive.ubuntu.com/ubuntu/pool/main/l/lapack/liblapack-dev_3.9.0-1build1_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:26 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Sat, 21 Mar 2020 13:18:53 GMT
| ETag: "40b8ec-5a15d3e4fc940"
| Accept-Ranges: bytes
| Content-Length: 4241644
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:22 http://archive.ubuntu.com/ubuntu focal/main amd64 liblapack-dev amd64 3.9.0-1build1 [4242 kB]
81% [22 liblapack-dev 2091 kB/4242 kB 49%] 1430 kB/s 4sGET /ubuntu/pool/main/s/suitesparse/libldl2_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
85% [Connecting to archive.ubuntu.com (91.189.88.142)] 1430 kB/s 3sGET /ubuntu/pool/main/s/suitesparse/libldl2_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| Answer for: http://archive.ubuntu.com/ubuntu/pool/main/s/suitesparse/libldl2_5.7.1+dfsg-2_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:28 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Mon, 02 Mar 2020 15:08:25 GMT
| ETag: "2acc-59fe08f0c6c40"
| Accept-Ranges: bytes
| Content-Length: 10956
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:23 http://archive.ubuntu.com/ubuntu focal/main amd64 libldl2 amd64 1:5.7.1+dfsg-2 [11.0 kB]
85% [23 libldl2 10.8 kB/11.0 kB 99%] 1430 kB/s 3sGET /ubuntu/pool/main/s/suitesparse/libmongoose2_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
86% [Working] 1430 kB/s 3sGET /ubuntu/pool/main/s/suitesparse/libmongoose2_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
86% [Waiting for headers] 1430 kB/s 3sAnswer for: http://archive.ubuntu.com/ubuntu/pool/main/s/suitesparse/libmongoose2_5.7.1+dfsg-2_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:28 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Mon, 02 Mar 2020 15:08:25 GMT
| ETag: "7a98-59fe08f0c6c40"
| Accept-Ranges: bytes
| Content-Length: 31384
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:24 http://archive.ubuntu.com/ubuntu focal/main amd64 libmongoose2 amd64 1:5.7.1+dfsg-2 [31.4 kB]
86% [24 libmongoose2 8407 B/31.4 kB 27%] 1430 kB/s 3sGET /ubuntu/pool/main/m/mpfr4/libmpfr-dev_4.0.2-1_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
87% [Working] 1430 kB/s 3sGET /ubuntu/pool/main/m/mpfr4/libmpfr-dev_4.0.2-1_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
87% [Waiting for headers] 1430 kB/s 3sAnswer for: http://archive.ubuntu.com/ubuntu/pool/main/m/mpfr4/libmpfr-dev_4.0.2-1_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:29 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Fri, 01 Feb 2019 13:18:25 GMT
| ETag: "3a9d8-580d4fa574a40"
| Accept-Ranges: bytes
| Content-Length: 240088
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:25 http://archive.ubuntu.com/ubuntu focal/main amd64 libmpfr-dev amd64 4.0.2-1 [240 kB]
87% [25 libmpfr-dev 5509 B/240 kB 2%] 1430 kB/s 3sGET /ubuntu/pool/universe/o/openblas/libopenblas0_0.3.8%2bds-1ubuntu0.20.04.1_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
88% [Working] 1430 kB/s 3sGET /ubuntu/pool/universe/o/openblas/libopenblas0_0.3.8%2bds-1ubuntu0.20.04.1_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| Answer for: http://archive.ubuntu.com/ubuntu/pool/universe/o/openblas/libopenblas0_0.3.8+ds-1ubuntu0.20.04.1_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:30 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Wed, 10 Jun 2020 14:11:06 GMT
| ETag: "1704-5a7bb6a32f280"
| Accept-Ranges: bytes
| Content-Length: 5892
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:26 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 libopenblas0 amd64 0.3.8+ds-1ubuntu0.20.04.1 [5892 B]
88% [26 libopenblas0 5892 B/5892 B 100%] 1430 kB/s 3sGET /ubuntu/pool/universe/o/openblas/libopenblas-dev_0.3.8%2bds-1ubuntu0.20.04.1_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
88% [Working] 1430 kB/s 3sAnswer for: http://archive.ubuntu.com/ubuntu/pool/universe/o/openblas/libopenblas-dev_0.3.8+ds-1ubuntu0.20.04.1_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:30 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Wed, 10 Jun 2020 14:11:07 GMT
| ETag: "4028-5a7bb6a4234c0"
| Accept-Ranges: bytes
| Content-Length: 16424
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:27 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 libopenblas-dev amd64 0.3.8+ds-1ubuntu0.20.04.1 [16.4 kB]
88% [27 libopenblas-dev 9358 B/16.4 kB 57%] 1430 kB/s 3sGET /ubuntu/pool/main/s/suitesparse/librbio2_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
89% [Working] 1430 kB/s 3sGET /ubuntu/pool/main/s/suitesparse/librbio2_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| Answer for: http://archive.ubuntu.com/ubuntu/pool/main/s/suitesparse/librbio2_5.7.1+dfsg-2_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:30 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Mon, 02 Mar 2020 15:08:26 GMT
| ETag: "5f94-59fe08f1bae80"
| Accept-Ranges: bytes
| Content-Length: 24468
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:28 http://archive.ubuntu.com/ubuntu focal/main amd64 librbio2 amd64 1:5.7.1+dfsg-2 [24.5 kB]
89% [28 librbio2 8407 B/24.5 kB 34%] 1430 kB/s 3sGET /ubuntu/pool/main/s/suitesparse/libspqr2_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
90% [Working] 1430 kB/s 3sGET /ubuntu/pool/main/s/suitesparse/libspqr2_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| Answer for: http://archive.ubuntu.com/ubuntu/pool/main/s/suitesparse/libspqr2_5.7.1+dfsg-2_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:31 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Mon, 02 Mar 2020 15:08:26 GMT
| ETag: "fd0c-59fe08f1bae80"
| Accept-Ranges: bytes
| Content-Length: 64780
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:29 http://archive.ubuntu.com/ubuntu focal/main amd64 libspqr2 amd64 1:5.7.1+dfsg-2 [64.8 kB]
91% [Working] 1430 kB/s 3sGET /ubuntu/pool/main/s/suitesparse/libumfpack5_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| GET /ubuntu/pool/main/s/suitesparse/libumfpack5_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
91% [Waiting for headers] 1430 kB/s 3sAnswer for: http://archive.ubuntu.com/ubuntu/pool/main/s/suitesparse/libumfpack5_5.7.1+dfsg-2_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:31 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Mon, 02 Mar 2020 15:08:25 GMT
| ETag: "37de4-59fe08f0c6c40"
| Accept-Ranges: bytes
| Content-Length: 228836
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:30 http://archive.ubuntu.com/ubuntu focal/main amd64 libumfpack5 amd64 1:5.7.1+dfsg-2 [229 kB]
91% [30 libumfpack5 13.7 kB/229 kB 6%] 1430 kB/s 3sGET /ubuntu/pool/main/s/suitesparse/libsuitesparse-dev_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
92% [Working] 1430 kB/s 2sGET /ubuntu/pool/main/s/suitesparse/libsuitesparse-dev_5.7.1%2bdfsg-2_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| Answer for: http://archive.ubuntu.com/ubuntu/pool/main/s/suitesparse/libsuitesparse-dev_5.7.1+dfsg-2_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:32 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Mon, 02 Mar 2020 15:08:26 GMT
| ETag: "3f7f14-59fe08f1bae80"
| Accept-Ranges: bytes
| Content-Length: 4161300
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:31 http://archive.ubuntu.com/ubuntu focal/main amd64 libsuitesparse-dev amd64 1:5.7.1+dfsg-2 [4161 kB]
99% [31 libsuitesparse-dev 4159 kB/4161 kB 100%] 776 kB/s 0sGET /ubuntu/pool/main/m/mpclib3/libmpc-dev_1.1.0-1_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
99% [Working] 776 kB/s 0sGET /ubuntu/pool/main/m/mpclib3/libmpc-dev_1.1.0-1_amd64.deb HTTP/1.1
| Host: archive.ubuntu.com
| User-Agent: Debian APT-HTTP/1.3 (2.0.6)
|
|
| Answer for: http://archive.ubuntu.com/ubuntu/pool/main/m/mpclib3/libmpc-dev_1.1.0-1_amd64.deb
| HTTP/1.1 200 OK
| Date: Mon, 09 Aug 2021 12:22:34 GMT
| Server: Apache/2.4.29 (Ubuntu)
| Last-Modified: Tue, 23 Jan 2018 23:28:50 GMT
| ETag: "c51c-56379e8b63080"
| Accept-Ranges: bytes
| Content-Length: 50460
| Cache-Control: max-age=86400
| Content-Type: application/x-debian-package
|
Get:32 http://archive.ubuntu.com/ubuntu focal/main amd64 libmpc-dev amd64 1.1.0-1 [50.5 kB]
Fetched 46.6 MB in 33s (1421 kB/s)
| debconf: delaying package configuration, since apt-utils is not installed
| Selecting previously unselected package ccache.
(Reading database ... 26223 files and directories currently installed.)
| Preparing to unpack .../00-ccache_3.7.7-1_amd64.deb ...
| Unpacking ccache (3.7.7-1) ...
| Selecting previously unselected package libgfortran5:amd64.
| Preparing to unpack .../01-libgfortran5_10.3.0-1ubuntu1~20.04_amd64.deb ...
| Unpacking libgfortran5:amd64 (10.3.0-1ubuntu1~20.04) ...
| Selecting previously unselected package libgfortran-9-dev:amd64.
| Preparing to unpack .../02-libgfortran-9-dev_9.3.0-17ubuntu1~20.04_amd64.deb ...
| Unpacking libgfortran-9-dev:amd64 (9.3.0-17ubuntu1~20.04) ...
| Selecting previously unselected package gfortran-9.
| Preparing to unpack .../03-gfortran-9_9.3.0-17ubuntu1~20.04_amd64.deb ...
| Unpacking gfortran-9 (9.3.0-17ubuntu1~20.04) ...
| Selecting previously unselected package gfortran.
| Preparing to unpack .../04-gfortran_4%3a9.3.0-1ubuntu2_amd64.deb ...
| Unpacking gfortran (4:9.3.0-1ubuntu2) ...
| Selecting previously unselected package libsuitesparseconfig5:amd64.
| Preparing to unpack .../05-libsuitesparseconfig5_1%3a5.7.1+dfsg-2_amd64.deb ...
| Unpacking libsuitesparseconfig5:amd64 (1:5.7.1+dfsg-2) ...
| Selecting previously unselected package libamd2:amd64.
| Preparing to unpack .../06-libamd2_1%3a5.7.1+dfsg-2_amd64.deb ...
| Unpacking libamd2:amd64 (1:5.7.1+dfsg-2) ...
| Selecting previously unselected package libatlas3-base:amd64.
| Preparing to unpack .../07-libatlas3-base_3.10.3-8ubuntu7_amd64.deb ...
| Unpacking libatlas3-base:amd64 (3.10.3-8ubuntu7) ...
| Selecting previously unselected package libatlas-base-dev:amd64.
| Preparing to unpack .../08-libatlas-base-dev_3.10.3-8ubuntu7_amd64.deb ...
| Unpacking libatlas-base-dev:amd64 (3.10.3-8ubuntu7) ...
| Selecting previously unselected package libbtf1:amd64.
| Preparing to unpack .../09-libbtf1_1%3a5.7.1+dfsg-2_amd64.deb ...
| Unpacking libbtf1:amd64 (1:5.7.1+dfsg-2) ...
| Selecting previously unselected package libcamd2:amd64.
| Preparing to unpack .../10-libcamd2_1%3a5.7.1+dfsg-2_amd64.deb ...
| Unpacking libcamd2:amd64 (1:5.7.1+dfsg-2) ...
| Selecting previously unselected package libccolamd2:amd64.
| Preparing to unpack .../11-libccolamd2_1%3a5.7.1+dfsg-2_amd64.deb ...
| Unpacking libccolamd2:amd64 (1:5.7.1+dfsg-2) ...
| Selecting previously unselected package libopenblas0-pthread:amd64.
| Preparing to unpack .../12-libopenblas0-pthread_0.3.8+ds-1ubuntu0.20.04.1_amd64.deb ...
| Unpacking libopenblas0-pthread:amd64 (0.3.8+ds-1ubuntu0.20.04.1) ...
| Selecting previously unselected package libcolamd2:amd64.
| Preparing to unpack .../13-libcolamd2_1%3a5.7.1+dfsg-2_amd64.deb ...
| Unpacking libcolamd2:amd64 (1:5.7.1+dfsg-2) ...
| Selecting previously unselected package liblapack3:amd64.
| Preparing to unpack .../14-liblapack3_3.9.0-1build1_amd64.deb ...
| Unpacking liblapack3:amd64 (3.9.0-1build1) ...
| Selecting previously unselected package libmetis5:amd64.
| Preparing to unpack .../15-libmetis5_5.1.0.dfsg-5_amd64.deb ...
| Unpacking libmetis5:amd64 (5.1.0.dfsg-5) ...
| Selecting previously unselected package libcholmod3:amd64.
| Preparing to unpack .../16-libcholmod3_1%3a5.7.1+dfsg-2_amd64.deb ...
| Unpacking libcholmod3:amd64 (1:5.7.1+dfsg-2) ...
| Selecting previously unselected package libcxsparse3:amd64.
| Preparing to unpack .../17-libcxsparse3_1%3a5.7.1+dfsg-2_amd64.deb ...
| Unpacking libcxsparse3:amd64 (1:5.7.1+dfsg-2) ...
| Selecting previously unselected package libgraphblas3:amd64.
| Preparing to unpack .../18-libgraphblas3_1%3a5.7.1+dfsg-2_amd64.deb ...
| Unpacking libgraphblas3:amd64 (1:5.7.1+dfsg-2) ...
| Selecting previously unselected package libklu1:amd64.
| Preparing to unpack .../19-libklu1_1%3a5.7.1+dfsg-2_amd64.deb ...
| Unpacking libklu1:amd64 (1:5.7.1+dfsg-2) ...
| Selecting previously unselected package libopenblas-pthread-dev:amd64.
| Preparing to unpack .../20-libopenblas-pthread-dev_0.3.8+ds-1ubuntu0.20.04.1_amd64.deb ...
| Unpacking libopenblas-pthread-dev:amd64 (0.3.8+ds-1ubuntu0.20.04.1) ...
| Selecting previously unselected package liblapack-dev:amd64.
| Preparing to unpack .../21-liblapack-dev_3.9.0-1build1_amd64.deb ...
| Unpacking liblapack-dev:amd64 (3.9.0-1build1) ...
| Selecting previously unselected package libldl2:amd64.
| Preparing to unpack .../22-libldl2_1%3a5.7.1+dfsg-2_amd64.deb ...
| Unpacking libldl2:amd64 (1:5.7.1+dfsg-2) ...
| Selecting previously unselected package libmongoose2:amd64.
| Preparing to unpack .../23-libmongoose2_1%3a5.7.1+dfsg-2_amd64.deb ...
| Unpacking libmongoose2:amd64 (1:5.7.1+dfsg-2) ...
| Selecting previously unselected package libmpfr-dev:amd64.
| Preparing to unpack .../24-libmpfr-dev_4.0.2-1_amd64.deb ...
| Unpacking libmpfr-dev:amd64 (4.0.2-1) ...
| Selecting previously unselected package libopenblas0:amd64.
| Preparing to unpack .../25-libopenblas0_0.3.8+ds-1ubuntu0.20.04.1_amd64.deb ...
| Unpacking libopenblas0:amd64 (0.3.8+ds-1ubuntu0.20.04.1) ...
| Selecting previously unselected package libopenblas-dev:amd64.
| Preparing to unpack .../26-libopenblas-dev_0.3.8+ds-1ubuntu0.20.04.1_amd64.deb ...
| Unpacking libopenblas-dev:amd64 (0.3.8+ds-1ubuntu0.20.04.1) ...
| Selecting previously unselected package librbio2:amd64.
| Preparing to unpack .../27-librbio2_1%3a5.7.1+dfsg-2_amd64.deb ...
| Unpacking librbio2:amd64 (1:5.7.1+dfsg-2) ...
| Selecting previously unselected package libspqr2:amd64.
| Preparing to unpack .../28-libspqr2_1%3a5.7.1+dfsg-2_amd64.deb ...
| Unpacking libspqr2:amd64 (1:5.7.1+dfsg-2) ...
| Selecting previously unselected package libumfpack5:amd64.
| Preparing to unpack .../29-libumfpack5_1%3a5.7.1+dfsg-2_amd64.deb ...
| Unpacking libumfpack5:amd64 (1:5.7.1+dfsg-2) ...
| Selecting previously unselected package libsuitesparse-dev:amd64.
| Preparing to unpack .../30-libsuitesparse-dev_1%3a5.7.1+dfsg-2_amd64.deb ...
| Unpacking libsuitesparse-dev:amd64 (1:5.7.1+dfsg-2) ...
| Selecting previously unselected package libmpc-dev:amd64.
| Preparing to unpack .../31-libmpc-dev_1.1.0-1_amd64.deb ...
| Unpacking libmpc-dev:amd64 (1.1.0-1) ...
| Setting up libgraphblas3:amd64 (1:5.7.1+dfsg-2) ...
| Setting up ccache (3.7.7-1) ...
| Updating symlinks in /usr/lib/ccache ...
| Setting up libldl2:amd64 (1:5.7.1+dfsg-2) ...
| Setting up libmetis5:amd64 (5.1.0.dfsg-5) ...
| Setting up libmpfr-dev:amd64 (4.0.2-1) ...
| Setting up libbtf1:amd64 (1:5.7.1+dfsg-2) ...
| Setting up libmpc-dev:amd64 (1.1.0-1) ...
| Setting up libgfortran5:amd64 (10.3.0-1ubuntu1~20.04) ...
| Setting up libcxsparse3:amd64 (1:5.7.1+dfsg-2) ...
| Setting up libsuitesparseconfig5:amd64 (1:5.7.1+dfsg-2) ...
| Setting up librbio2:amd64 (1:5.7.1+dfsg-2) ...
| Setting up libamd2:amd64 (1:5.7.1+dfsg-2) ...
| Setting up libopenblas0-pthread:amd64 (0.3.8+ds-1ubuntu0.20.04.1) ...
| update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so.3 to provide /usr/lib/x86_64-linux-gnu/libblas.so.3 (libblas.so.3-x86_64-linux-gnu) in auto mode
| update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/liblapack.so.3 to provide /usr/lib/x86_64-linux-gnu/liblapack.so.3 (liblapack.so.3-x86_64-linux-gnu) in auto mode
| update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblas.so.0 to provide /usr/lib/x86_64-linux-gnu/libopenblas.so.0 (libopenblas.so.0-x86_64-linux-gnu) in auto mode
| Setting up libatlas3-base:amd64 (3.10.3-8ubuntu7) ...
| Setting up libcolamd2:amd64 (1:5.7.1+dfsg-2) ...
| Setting up libgfortran-9-dev:amd64 (9.3.0-17ubuntu1~20.04) ...
| Setting up libatlas-base-dev:amd64 (3.10.3-8ubuntu7) ...
| update-alternatives: using /usr/lib/x86_64-linux-gnu/atlas/libblas.so to provide /usr/lib/x86_64-linux-gnu/libblas.so (libblas.so-x86_64-linux-gnu) in auto mode
| update-alternatives: using /usr/lib/x86_64-linux-gnu/atlas/liblapack.so to provide /usr/lib/x86_64-linux-gnu/liblapack.so (liblapack.so-x86_64-linux-gnu) in auto mode
| Setting up libcamd2:amd64 (1:5.7.1+dfsg-2) ...
| Setting up libmongoose2:amd64 (1:5.7.1+dfsg-2) ...
| Setting up libopenblas0:amd64 (0.3.8+ds-1ubuntu0.20.04.1) ...
| Setting up libklu1:amd64 (1:5.7.1+dfsg-2) ...
| Setting up libccolamd2:amd64 (1:5.7.1+dfsg-2) ...
| Setting up libcholmod3:amd64 (1:5.7.1+dfsg-2) ...
| Setting up libopenblas-pthread-dev:amd64 (0.3.8+ds-1ubuntu0.20.04.1) ...
| update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so to provide /usr/lib/x86_64-linux-gnu/libblas.so (libblas.so-x86_64-linux-gnu) in auto mode
| update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/liblapack.so to provide /usr/lib/x86_64-linux-gnu/liblapack.so (liblapack.so-x86_64-linux-gnu) in auto mode
| update-alternatives: using /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblas.so to provide /usr/lib/x86_64-linux-gnu/libopenblas.so (libopenblas.so-x86_64-linux-gnu) in auto mode
| Setting up libspqr2:amd64 (1:5.7.1+dfsg-2) ...
| Setting up liblapack3:amd64 (3.9.0-1build1) ...
| Setting up gfortran-9 (9.3.0-17ubuntu1~20.04) ...
| Setting up gfortran (4:9.3.0-1ubuntu2) ...
| update-alternatives: using /usr/bin/gfortran to provide /usr/bin/f95 (f95) in auto mode
| update-alternatives: warning: skip creation of /usr/share/man/man1/f95.1.gz because associated file /usr/share/man/man1/gfortran.1.gz (of link group f95) doesn't exist
| update-alternatives: using /usr/bin/gfortran to provide /usr/bin/f77 (f77) in auto mode
| update-alternatives: warning: skip creation of /usr/share/man/man1/f77.1.gz because associated file /usr/share/man/man1/gfortran.1.gz (of link group f77) doesn't exist
| Setting up libopenblas-dev:amd64 (0.3.8+ds-1ubuntu0.20.04.1) ...
| Setting up libumfpack5:amd64 (1:5.7.1+dfsg-2) ...
| Setting up liblapack-dev:amd64 (3.9.0-1build1) ...
| Setting up libsuitesparse-dev:amd64 (1:5.7.1+dfsg-2) ...
| Processing triggers for libc-bin (2.31-0ubuntu9.2) ...
[Linux Tests/Meson build] ❌ Failure - Install Ubuntu dependencies
Error: exit with `FAILURE`: 141
```
</details>
| https://github.com/nektos/act/issues/770 | https://github.com/nektos/act/pull/1998 | 603b44b585ee35090a13498c7af15f79a8a12a51 | 0dfb06748ebd077c25451e07a55e563d7bdc6b4a | "2021-08-09T12:24:58Z" | go | "2023-12-16T23:47:32Z" |
closed | nektos/act | https://github.com/nektos/act | 769 | ["go.mod", "go.sum"] | Issue: Matrix construction does not match GitHub | Nothing which blocks this PR,
I think you aren't really aware of the behavior of the matrix include statement, (this is not introduced in this PR, but not fixed either)
Example Workflow run:
https://github.com/actions/runner/actions/runs/1082604590/workflow
This workflow demonstrates that includes needs to be handeled differently, if your matrix cross product is non empty and you have includes.
In [my c# implementation](https://github.com/ChristopherHX/runner.server/blob/5d55db086c97e9bc45e97f18fadaf4043588fdf0/src/Runner.Server/Controllers/MessageController.cs#L890-L914) of this,
- Create the cross product (this seems to work in act with this PR)
- apply excludes (this seems to work in act with this PR)
- Merge the cross product if all member which are both in the cross product and include mapping are equal (added members or matrix entries to the cross product via include are not considered), otherwise do it like this code does.
Well this might be not perfect either, but this seems for me to be more like github actions.
_Originally posted by @ChristopherHX in https://github.com/nektos/act/pull/763#discussion_r680346444_ | https://github.com/nektos/act/issues/769 | https://github.com/nektos/act/pull/1830 | 481999f59da465d2d8743fd3d97e24bb6e1a2311 | b0996e057750223a14321ff92c1c6d6fbb8e1a10 | "2021-08-08T16:04:43Z" | go | "2023-05-29T03:35:06Z" |
closed | nektos/act | https://github.com/nektos/act | 764 | [".github/workflows/stale.yml"] | Issue: can not copy the symbolic links, if symlink to file which does not exist yet | ## System information
- Operating System: < Ubuntu 18.04>
- Architecture: < x64 (64-bit) >
- Apple M1: < no >
- Docker version: < Docker version 20.10.2, build 20.10.2-0ubuntu1~18.04.3>
- `act` version: <act version 0.2.24>
## Expected behaviour
Handle symbolic links correctly, never follow symbolic links in SOURCE.
## Actual behaviour
run act failed.
## Workflow and/or repository
```none
name: Build Firmware
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- name: Install Tools
run: apt-get install mtd-utils rsync
- name: imagebuild
run: |
echo "pack rootfs" >pack.log
- name: Archive Binary
uses: actions/upload-artifact@v2
with:
name: rootfs
path: |
pack.log
```
```
# create a repository for test
mkdir act_test
cd act_test
mkdir rootfs
cd rootfs
ln -sf /tmp/file_not_exist file_symbolic
~/act_test$ tree -a
.
├── .github
│ └── workflows
│ └── build_fimware.yml
└── rootfs
└── file_symbolic -> /tmp/file_not_exist
3 directories, 2 files
```
## Steps to reproduce
sudo act -v
## `act` output
<details>
<summary>Log</summary>
```none
:~/act_test$ sudo act -v
DEBU[0000] Loading environment from /home/jwli/act_test/.env
DEBU[0000] Loading secrets from /home/jwli/act_test/.secrets
DEBU[0000] Loading workflows from '/home/jwli/act_test/.github/workflows'
DEBU[0000] Loading workflows recursively
DEBU[0000] Found workflow 'build_fimware.yml' in '/home/jwli/act_test/.github/workflows/build_fimware.yml'
DEBU[0000] Reading workflow '/home/jwli/act_test/.github/workflows/build_fimware.yml'
DEBU[0000] Correcting if statements '/home/jwli/act_test/.github/workflows/build_fimware.yml'
DEBU[0000] Planning event: push
WARN[0000] unable to get git repo: unable to find git repo
WARN[0000] unable to get git revision: unable to find git repo
WARN[0000] unable to get git ref: unable to find git repo
DEBU[0000] context env => map[ACT:true]
DEBU[0000] context needs => map[]
[Build Firmware/build] 🚀 Start image=catthehacker/ubuntu:act-18.04
WARN[0000] unable to get git repo: unable to find git repo
WARN[0000] unable to get git revision: unable to find git repo
WARN[0000] unable to get git ref: unable to find git repo
[Build Firmware/build] 🐳 docker pull catthehacker/ubuntu:act-18.04
DEBU[0000] Image exists? true
[Build Firmware/build] Removed container: 1ef247b48476aaf876d5f594e87eec583a78a2b9a52d369cfa7c42e8197fc509
[Build Firmware/build] 🐳 docker volume rm act-Build-Firmware-build
[Build Firmware/build] 🐳 docker create image=catthehacker/ubuntu:act-18.04 platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Build Firmware/build] Created container name=act-Build-Firmware-build id=03e5dfaa1fd86e73e0cd84d240e9798610d41fdd4a5b62421c3c46a4f3536bd1 from image catthehacker/ubuntu:act-18.04 (platform: )
[Build Firmware/build] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_TEMP=/tmp]
[Build Firmware/build] 🐳 docker run image=catthehacker/ubuntu:act-18.04 platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Build Firmware/build] Starting container: 03e5dfaa1fd86e73e0cd84d240e9798610d41fdd4a5b62421c3c46a4f3536bd1
[Build Firmware/build] Started container: 03e5dfaa1fd86e73e0cd84d240e9798610d41fdd4a5b62421c3c46a4f3536bd1
[Build Firmware/build] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root
[Build Firmware/build] Exec command '[mkdir -m 0777 -p /var/run/act]'
[Build Firmware/build] 🐳 docker cp src=/home/jwli/act_test/. dst=/home/jwli/act_test
[Build Firmware/build] 🐳 docker exec cmd=[mkdir -p /home/jwli/act_test] user=
[Build Firmware/build] Exec command '[mkdir -p /home/jwli/act_test]'
DEBU[0002] Writing tarball /tmp/act775934521 from /home/jwli/act_test/.
DEBU[0002] Stripping prefix:/home/jwli/act_test/ src:/home/jwli/act_test/.
DEBU[0002] open /home/jwli/act_test/rootfs/file_symbolic: no such file or directory
DEBU[0002] open /home/jwli/act_test/rootfs/file_symbolic: no such file or directory
DEBU[0002] open /home/jwli/act_test/rootfs/file_symbolic: no such file or directory
DEBU[0002] open /home/jwli/act_test/rootfs/file_symbolic: no such file or directory
DEBU[0002] open /home/jwli/act_test/rootfs/file_symbolic: no such file or directory
DEBU[0002] open /home/jwli/act_test/rootfs/file_symbolic: no such file or directory
Error: open /home/jwli/act_test/rootfs/file_symbolic: no such file or directory
```
</details>
| https://github.com/nektos/act/issues/764 | https://github.com/nektos/act/pull/2120 | 0806c8b10946de509889eb723aaba45cc100c8de | 6b0ef97c52e7cbab64513b3de7e6618bc2579f28 | "2021-08-05T10:38:39Z" | go | "2023-12-17T09:14:56Z" |
closed | nektos/act | https://github.com/nektos/act | 758 | ["go.mod", "go.sum"] | Issue: Only first step is able to set output variables | ## System information
- Operating System: Windows 10
- Architecture: x64 (64-bit)
- Apple M1: no
- Docker version: 20.10.7
- `act` version: c865a56 (current commit on `master` at the time of submission)
## Expected behaviour
Output variables should be able to be defined in multiple steps under the same job
## Actual behaviour
Currently, output variables can only be successfully defined in the first step inside a job (see official [documentation](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idoutputs) for reference).
## Workflow and/or repository
<details>
<summary>workflow</summary>
```yml
name: Test
on:
workflow_dispatch:
jobs:
set_vars:
name: Set variables
runs-on: ubuntu-latest
steps:
- id: set_1
run: |
echo "::set-output name=var_1::$(echo hello)"
echo "::set-output name=var_2::$(echo world)"
- id: set_2
run: echo "::set-output name=var_3::$(echo 1234)"
outputs:
variable_1: ${{ steps.set_1.outputs.var_1 }}
variable_2: ${{ steps.set_1.outputs.var_2 }}
variable_3: ${{ steps.set_2.outputs.var_3 }}
printing:
name: Printing
needs: set_vars
runs-on: ubuntu-latest
steps:
- name: Print variables from another job
run: |
echo "${{ needs.set_vars.outputs.variable_1 }}" # Gets printed
echo "${{ needs.set_vars.outputs.variable_2 }}" # As well
echo "${{ needs.set_vars.outputs.variable_3 }}" # Empty space in logs, variable not resolved
```
</details>
## Steps to reproduce
Run: `act workflow_dispatch -W <path to the workflow file with content above>`
<!--
- Make sure to include full command with parameters you used to run `act`, example:
1. Clone example repo (https://github.com/cplee/github-actions-demo)
2. Enter cloned repo directory
3. Run `act -s SUPER_SECRET=im-a-value`
-->
## `act` output
<!--
- Use `act` with `-v`/`--verbose` and paste output from your terminal in code block below
-->
<details>
<summary>Log</summary>
```none
[Test/Set variables] 🚀 Start image=catthehacker/ubuntu:act-latest
[Test/Set variables] 🐳 docker run image=catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Test/Set variables] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root
[Test/Set variables] ⭐ Run echo "::set-output name=var_1::$(echo hello)"
echo "::set-output name=var_2::$(echo world)"
[Test/Set variables] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /mnt/c/testrepo/workflow/set_1] user=
[Test/Set variables] ⚙ ::set-output:: var_1=hello
[Test/Set variables] ⚙ ::set-output:: var_2=world
time="2021-07-20T21:21:08+02:00" level=error msg="Unable to interpolate string '${{ steps.set_2.outputs.var_3 }}' - [TypeError: Cannot access member 'outputs' of undefined]"
[Test/Set variables] ✅ Success - echo "::set-output name=var_1::$(echo hello)"
echo "::set-output name=var_2::$(echo world)"
[Test/Set variables] ⭐ Run echo "::set-output name=var_3::$(echo 1234)"
[Test/Set variables] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /mnt/c/testrepo/workflow/set_2] user=
[Test/Set variables] ⚙ ::set-output:: var_3=1234
[Test/Set variables] ✅ Success - echo "::set-output name=var_3::$(echo 1234)"
[Test/Printing ] 🚀 Start image=catthehacker/ubuntu:act-latest
[Test/Printing ] 🐳 docker run image=catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Test/Printing ] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root
[Test/Printing ] ⭐ Run Print variables from another job
[Test/Printing ] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /mnt/c/testrepo/workflow/0] user=
| hello
| world
|
[Test/Printing ] ✅ Success - Print variables from another job
```
</details>
## Comments
May relate to [issue 295](https://github.com/nektos/act/issues/295) based on the comments at the end, but this one is a different issue as `needs` now work on the master branch, although not released yet.
This can affect workflows where the first step pulls in an action, e.g. using the digitalocean/action-doctl@v2 as the first step in order to execute `doctl` commands that gets the IP address of a Droplet and sets it as the output in the second step will not be possible due to this issue. | https://github.com/nektos/act/issues/758 | https://github.com/nektos/act/pull/1925 | 67f4baa618b3371cc0ec0c03b169141c25809c9e | 17bf4fc5afd147ea967445b9d0dc2e684f57377c | "2021-07-20T19:33:44Z" | go | "2023-07-24T02:53:35Z" |
closed | nektos/act | https://github.com/nektos/act | 757 | ["pkg/container/docker_run.go", "pkg/container/docker_run_test.go", "pkg/container/testdata/Dockerfile", "pkg/runner/run_context.go", "pkg/runner/step_context.go"] | Environment variables defined in the container are not evaluatable | <!--
- Make sure you are able to reproduce it on the [latest version](https://github.com/nektos/act/releases)
- Search the existing issues.
- Refer to [README](https://github.com/nektos/act/blob/master/README.md).
-->
## System information
<!--
- Operating System: < Windows | Linux | macOS | etc... >
- Architecture: < x64 (64-bit) | x86 (32-bit) | arm64 (64-bit) | arm (32-bit) | etc... >
- Apple M1: < yes | no >
- Docker version: < output of `docker system info -f "{{.ServerVersion}}"` >
- Docker image used in `act`: < can be omitted if it's included in log >
- `act` version: < output of `act --version`, if you've built `act` yourself, please provide commit hash >
-->
- Operating System: macOS
- Architecture: x86_64
- Docker version: Docker version 20.10.7, build f0df350
- Docker image used in `act`: catthehacker/ubuntu:act-20.04
- `act` version: 0.2.23
## Expected behaviour
I expected to be able to use container defined environment variables in if: statements.
```
name: CI
on: [push]
env:
# ENV2: # undefined here, but defined in local container
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest] # macos-latest,
steps:
- name: Dump Environment
run: env | sort
- name: Test
if: ${{ env.ENV2 }}
run: echo Test
```
## Actual behaviour
`ENV2` value is ignored, unless defined in workflow file.
## Workflow and/or repository
See the complete workflow with step by step instructions on how to reproduce:
https://github.com/mulle-nat/act-and-github
</details>
| https://github.com/nektos/act/issues/757 | https://github.com/nektos/act/pull/828 | 7a426a0f37d21e32a01e85d9403edba17a54d545 | 6c60af76779b739b7487e3fbe83ea15cd2ab8ad5 | "2021-07-20T13:12:24Z" | go | "2021-09-27T19:01:14Z" |
closed | nektos/act | https://github.com/nektos/act | 756 | ["go.mod", "go.sum"] | Issue: Local actions not working. |
## System information
<!--
- Operating System: < Windows | Linux | macOS | etc... >
- Architecture: < x64 (64-bit) | x86 (32-bit) | arm64 (64-bit) | arm (32-bit) | etc... >
- Apple M1: < yes | no >
- Docker version: < output of `docker system info -f "{{.ServerVersion}}"` >
- Docker image used in `act`: < can be omitted if it's included in log >
- `act` version: < output of `act --version`, if you've built `act` yourself, please provide commit hash >
-->
- Operating System: Linux
- Architecture: x86_64
- Docker version: 1.13.1
- Docker image used in `act`: catthehacker/ubuntu:act-latest
- `act` version: act version 0.2.23
## Expected behaviour
I have a local action in the repo. I'm getting a `invalid reference format` when running the local action. However, when I use action from git checkout, the process works.
## Workflow and/or repository
<!--
- Provide workflow with which we can reproduce the issue
OR
- Provide link to your GitHub repository that contains the workflow
<details>
<summary>workflow</summary>
```none
on: [push, pull_request]
jobs:
unit_tests:
runs-on: ubuntu-latest
name: Testing
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Run action
uses: ./
# uses: {org}/{repo}@master
```
</details>
However, when uncomment the last line above, the workflow works.
## `act` output
<details>
<summary>Log</summary>
```none
[main.yml/Testing] 🐳 docker build -t act-:latest --platform /home/$user/workspace/git-stage/$repo
[main.yml/Testing] Building image from '/home/$user/workspace/git-stage/$repo'
DEBU[0001] Creating archive for build context dir '/home/$user/workspace/git-stage/$repo' with relative dockerfile 'Dockerfile'
[main.yml/Testing] Creating image from context dir '/home/$user/workspace/git-stage/$repo' with tag 'act-:latest' and platform ''
[main.yml/Testing] 🐳 docker pull act-:latest
DEBU[0001] Image exists? false
[main.yml/Testing] pulling image 'docker.io/library/act-:latest' ()
DEBU[0001] invalid reference format
DEBU[0001] invalid reference format
DEBU[0001] invalid reference format
[main.yml/Testing] ❌ Failure - unit tests
DEBU[0001] invalid reference format
INFO[0001] Cleaning up container for job Testing
[main.yml/Testing] Removed container: 50a2d6d7f1f059085a06ba8a674863268491de4f96a86905354ae14035c91b02
[main.yml/Testing] 🐳 docker volume rm act-main-yml-Testing
Error: invalid reference format
```
</details>
| https://github.com/nektos/act/issues/756 | https://github.com/nektos/act/pull/1925 | 67f4baa618b3371cc0ec0c03b169141c25809c9e | 17bf4fc5afd147ea967445b9d0dc2e684f57377c | "2021-07-19T14:26:40Z" | go | "2023-07-24T02:53:35Z" |
closed | nektos/act | https://github.com/nektos/act | 755 | ["go.mod", "go.sum"] | Enhancement: Allow for spawning a shell on failure | Would be nice to get act to a spawn a shell on error to investigate what might be going wrong.
Something along the lines of:
```
$ act --shell-on-error
...
root@host:/tmp/testing#
```
| https://github.com/nektos/act/issues/755 | https://github.com/nektos/act/pull/1830 | 481999f59da465d2d8743fd3d97e24bb6e1a2311 | b0996e057750223a14321ff92c1c6d6fbb8e1a10 | "2021-07-18T15:01:27Z" | go | "2023-05-29T03:35:06Z" |
closed | nektos/act | https://github.com/nektos/act | 754 | ["pkg/runner/step_context.go"] | Issue: MODULE_NOT_FOUND for an action in Marketplace | ## System information
- Operating System: Windows 10
- Architecture: 64 bit
- Docker version: 20.10.7, build f0df350
- act version: 0.2.23
## Expected behaviour
Should run the workflow_dispatch action locally
## Actual behaviour
Getting MODULE_NOT_FOUND error. The action folder with index.js is not in the container.

## Workflow and/or repository
```none
on:
workflow_dispatch:
inputs:
name:
required: false
default: World
name: temp
jobs:
temp:
runs-on: ubuntu-latest
env:
url: https://xxxx.crm6.dynamics.com
username: [email protected]
solution: GitHubSolution
steps:
- uses: actions/checkout@v2
- id: who-am-i
uses: microsoft/powerplatform-actions/who-am-i@main
with:
environment-url: ${{ env.url }}
user-name: ${{ env.username }}
password-secret: ${{ secrets.password }}
```
</details>
## Steps to reproduce
1. Use workflow with who-am-i action as above
2. Run `act -j temp --use-gitignore false`
## `act` output
<!--
- Use `act` with `-v`/`--verbose` and paste output from your terminal in code block below
-->
<details>
<summary>Log</summary>
```none
[temp/temp] 🚀 Start image=catthehacker/ubuntu:act-latest
[temp/temp] 🐳 docker pull catthehacker/ubuntu:act-latest
[temp/temp] Removed container: 2175605dc05d8dd783eea77ea0250b966fc720655171e047324f2de6a23d3c2c
[temp/temp] 🐳 docker volume rm act-temp-temp
[temp/temp] 🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[temp/temp] Created container name=act-temp-temp id=c11c3c07c5aa8efbe2fc0ca87426bb5c4dcca4195e6e7099a3e9ca5f40387fae from image catthehacker/ubuntu:act-latest (platform: )
[temp/temp] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_TEMP=/tmp]
[temp/temp] 🐳 docker run image=catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[temp/temp] Starting container: c11c3c07c5aa8efbe2fc0ca87426bb5c4dcca4195e6e7099a3e9ca5f40387fae
[temp/temp] Started container: c11c3c07c5aa8efbe2fc0ca87426bb5c4dcca4195e6e7099a3e9ca5f40387fae
[temp/temp] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root
[temp/temp] Exec command '[mkdir -m 0777 -p /var/run/act]'
[temp/temp] 🐳 docker cp src=/mnt/d/github/powerplatform-actions-private/. dst=/mnt/d/github/powerplatform-actions-private
[temp/temp] 🐳 docker exec cmd=[mkdir -p /mnt/d/github/powerplatform-actions-private] user=
[temp/temp] Exec command '[mkdir -p /mnt/d/github/powerplatform-actions-private]'
[temp/temp] Extracting content from '/tmp/act421746419' to '/mnt/d/github/powerplatform-actions-private'
[temp/temp] Extracting content to '/var/run/act/'
[temp/temp] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt GITHUB_EVENT_NAME:false GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:temp GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/master GITHUB_REPOSITORY:rajyraman/powerplatform-actions-private GITHUB_REPOSITORY_OWNER:rajyraman GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:0c78094681099dae9ece9cf55cdeef7f1a7f7f47 GITHUB_TOKEN: GITHUB_WORKFLOW:temp GITHUB_WORKSPACE:/mnt/d/github/powerplatform-actions-private IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.1/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root solution:GitHubSolution url:https://xxxx.crm6.dynamics.com username:[email protected]]
[temp/temp] ⭐ Run actions/checkout@v2
[temp/temp] Skipping local actions/checkout because workdir was already copied
[temp/temp] ✅ Success - actions/checkout@v2
[temp/temp] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:who-am-i GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt GITHUB_EVENT_NAME:false GITHUB_EVENT_PATH:/var/run/act/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_HEAD_REF: GITHUB_JOB:temp GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/master GITHUB_REPOSITORY:rajyraman/powerplatform-actions-private GITHUB_REPOSITORY_OWNER:rajyraman GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:0c78094681099dae9ece9cf55cdeef7f1a7f7f47 GITHUB_TOKEN: GITHUB_WORKFLOW:temp GITHUB_WORKSPACE:/mnt/d/github/powerplatform-actions-private IMAGE_OS:ubuntu20 INPUT_ENVIRONMENT-URL:https://xxxx.crm6.dynamics.com INPUT_PASSWORD-SECRET: INPUT_USER-NAME:[email protected] ImageOS:ubuntu20 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.1/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root solution:GitHubSolution url:https://xxxx.crm6.dynamics.com username:[email protected]]
[temp/temp] ⭐ Run microsoft/powerplatform-actions/who-am-i@main
[temp/temp] 🐳 docker cp src=/root/.cache/act/microsoft-powerplatform-actions-who-am-i@main/who-am-i/ dst=/var/run/act/actions/microsoft-powerplatform-actions-who-am-i@main/who-am-i/
[temp/temp] 🐳 docker exec cmd=[mkdir -p /var/run/act/actions/microsoft-powerplatform-actions-who-am-i@main/who-am-i/] user=
[temp/temp] Exec command '[mkdir -p /var/run/act/actions/microsoft-powerplatform-actions-who-am-i@main/who-am-i/]'
[temp/temp] Extracting content from '/tmp/act362426294' to '/var/run/act/actions/microsoft-powerplatform-actions-who-am-i@main/who-am-i/'
[temp/temp] 🐳 docker exec cmd=[node /var/run/act/actions/microsoft-powerplatform-actions-who-am-i@main/dist/actions/who-am-i/index.js] user=
[temp/temp] Exec command '[node /var/run/act/actions/microsoft-powerplatform-actions-who-am-i@main/dist/actions/who-am-i/index.js]'
[temp/temp] | internal/modules/cjs/loader.js:905
[temp/temp] | throw err;
[temp/temp] | ^
[temp/temp] |
[temp/temp] | Error: Cannot find module '/var/run/act/actions/microsoft-powerplatform-actions-who-am-i@main/dist/actions/who-am-i/index.js'
[temp/temp] | at Function.Module._resolveFilename (internal/modules/cjs/loader.js:902:15)
[temp/temp] | at Function.Module._load (internal/modules/cjs/loader.js:746:27)
[temp/temp] | at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:76:12)
[temp/temp] | at internal/main/run_main_module.js:17:47 {
[temp/temp] | code: 'MODULE_NOT_FOUND',
[temp/temp] | requireStack: []
[temp/temp] | }
[temp/temp] ❌ Failure - microsoft/powerplatform-actions/who-am-i@main
```
</details>
| https://github.com/nektos/act/issues/754 | https://github.com/nektos/act/pull/774 | bea32d5651c94049173799c496bdc87a4b304f02 | de44a505da37f9405db195902b277821df2742b6 | "2021-07-17T05:07:45Z" | go | "2021-08-11T05:21:52Z" |
closed | nektos/act | https://github.com/nektos/act | 748 | ["pkg/container/docker_run.go", "pkg/runner/run_context.go", "pkg/runner/step_context.go", "pkg/runner/testdata/basic/push.yml", "pkg/runner/testdata/dir with spaces/push.yml", "pkg/runner/testdata/workdir/push.yml"] | Issue: File paths are unquoted | ## System information
- Operating System: Windows 10
- Architecture: x64 (64-bit)
- Apple M1: no
- Docker version: 20.10.6
- `act` version: 0.2.23
## Expected behavior
Running `act`, with no parameters, should run all tasks without accessing a non-existent file path that results from the truncation of a path that contains spaces.
## Actual behavior
`act` fails to quote file paths when sending commands to docker. This results in a file path that contains spaces (which is common on Windows computers) being truncated by the command line. Docker then attempts to use the truncated path, resulting in an error that causes workflows to fail.
## Workflow and/or repository
I made a test repository that [replicates the problem](https://github.com/joebobmiles/didactic-octo-barnacle).
## Steps to reproduce
### From scratch:
1. Create a directory that contains a space in the name, such as "Hello World".
```bash
$ # Linux or MacOS
$ mkdir "Hello World"
```
```pwsh
> # Windows Powershell or CMD
> md "Hello World"
```
2. Under that directory, create a `.github/workflows` directory.
```bash
$ # Linux or MacOS
$ cd "Hello World"
$ mkdir -p .github/workflows
```
```pwsh
> # Windows Powershell or CMD
> cd "Hello World"
> md .github\workflows
```
4. In `.github\workflows`, create a workflow file that contains the following:
```yml
name: Test
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: sudo apt-get update
```
3. Run `act` with no arguments.
### From repo:
1. Clone [the reproduction repository](https://github.com/joebobmiles/didactic-octo-barnacle).
2. Move into the `Hello World` directory and run `act` with no arguments.
## `act` output
<details>
<summary>Log</summary>
```none
time="2021-07-01T17:07:50-07:00" level=debug msg="Loading environment from C:\\Users\\josep\\Documents\\Programming\\act-unquoted-file-paths\\Hello World\\.env"
time="2021-07-01T17:07:50-07:00" level=debug msg="Loading secrets from C:\\Users\\josep\\Documents\\Programming\\act-unquoted-file-paths\\Hello World\\.secrets"
time="2021-07-01T17:07:50-07:00" level=debug msg="Loading workflows from 'C:\\Users\\josep\\Documents\\Programming\\act-unquoted-file-paths\\Hello World\\.github\\workflows'"
time="2021-07-01T17:07:50-07:00" level=debug msg="Loading workflows recursively"
time="2021-07-01T17:07:50-07:00" level=debug msg="Found workflow 'test.yml' in 'C:\\Users\\josep\\Documents\\Programming\\act-unquoted-file-paths\\Hello World\\.github\\workflows\\test.yml'"
time="2021-07-01T17:07:50-07:00" level=debug msg="Reading workflow 'C:\\Users\\josep\\Documents\\Programming\\act-unquoted-file-paths\\Hello World\\.github\\workflows\\test.yml'"
time="2021-07-01T17:07:50-07:00" level=debug msg="Correcting if statements 'C:\\Users\\josep\\Documents\\Programming\\act-unquoted-file-paths\\Hello World\\.github\\workflows\\test.yml'"
time="2021-07-01T17:07:50-07:00" level=debug msg="Planning event: push"
time="2021-07-01T17:07:50-07:00" level=debug msg="Loading slug from git directory 'C:\\Users\\josep\\Documents\\Programming\\act-unquoted-file-paths\\.git'"
time="2021-07-01T17:07:50-07:00" level=debug msg="Found revision: f451cde05e6d93b59afdb98d6e0f67859dcaa313\n"
time="2021-07-01T17:07:50-07:00" level=debug msg="Loading revision from git directory 'C:\\Users\\josep\\Documents\\Programming\\act-unquoted-file-paths\\.git'"
time="2021-07-01T17:07:50-07:00" level=debug msg="Found revision: f451cde05e6d93b59afdb98d6e0f67859dcaa313\n"
time="2021-07-01T17:07:50-07:00" level=debug msg="HEAD points to 'f451cde05e6d93b59afdb98d6e0f67859dcaa313'"
time="2021-07-01T17:07:50-07:00" level=debug msg="using github ref: refs/heads/master"
time="2021-07-01T17:07:50-07:00" level=debug msg="context env => map[ACT:true]"
[Test/test] 🚀 Start image=catthehacker/ubuntu:act-latest
time="2021-07-01T17:07:50-07:00" level=debug msg="Loading slug from git directory 'C:\\Users\\josep\\Documents\\Programming\\act-unquoted-file-paths\\.git'"
time="2021-07-01T17:07:50-07:00" level=debug msg="Found revision: f451cde05e6d93b59afdb98d6e0f67859dcaa313\n"
time="2021-07-01T17:07:50-07:00" level=debug msg="Loading revision from git directory 'C:\\Users\\josep\\Documents\\Programming\\act-unquoted-file-paths\\.git'"
time="2021-07-01T17:07:50-07:00" level=debug msg="Found revision: f451cde05e6d93b59afdb98d6e0f67859dcaa313\n"
time="2021-07-01T17:07:50-07:00" level=debug msg="HEAD points to 'f451cde05e6d93b59afdb98d6e0f67859dcaa313'"
time="2021-07-01T17:07:50-07:00" level=debug msg="using github ref: refs/heads/master"
[Test/test] 🐳 docker pull catthehacker/ubuntu:act-latest
time="2021-07-01T17:07:50-07:00" level=debug msg="Image exists? true"
[Test/test] Removed container: a190b1424d9bf64ec8c19e5e0816c3d10d0725e4ddae99efa6fd3fcd73548c34
[Test/test] 🐳 docker volume rm act-Test-test
[Test/test] 🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Test/test] Created container name=act-Test-test id=f9e73c7f4e902d7372bf8efa4da58f4ad4336997def5e03ba276257063ca53c6 from image catthehacker/ubuntu:act-latest (platform: )
[Test/test] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_TEMP=/tmp]
[Test/test] 🐳 docker run image=catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Test/test] Starting container: f9e73c7f4e902d7372bf8efa4da58f4ad4336997def5e03ba276257063ca53c6
[Test/test] Started container: f9e73c7f4e902d7372bf8efa4da58f4ad4336997def5e03ba276257063ca53c6
[Test/test] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root
[Test/test] Exec command '[mkdir -m 0777 -p /var/run/act]'
time="2021-07-01T17:07:51-07:00" level=debug msg="Writing entry to tarball workflow/event.json len:2"
time="2021-07-01T17:07:51-07:00" level=debug msg="Writing entry to tarball workflow/envs.txt len:0"
time="2021-07-01T17:07:51-07:00" level=debug msg="Writing entry to tarball workflow/paths.txt len:0"
[Test/test] Extracting content to '/var/run/act/'
time="2021-07-01T17:07:51-07:00" level=debug msg="Loading slug from git directory 'C:\\Users\\josep\\Documents\\Programming\\act-unquoted-file-paths\\.git'"
time="2021-07-01T17:07:51-07:00" level=debug msg="Found revision: f451cde05e6d93b59afdb98d6e0f67859dcaa313\n"
time="2021-07-01T17:07:51-07:00" level=debug msg="Loading revision from git directory 'C:\\Users\\josep\\Documents\\Programming\\act-unquoted-file-paths\\.git'"
time="2021-07-01T17:07:51-07:00" level=debug msg="Found revision: f451cde05e6d93b59afdb98d6e0f67859dcaa313\n"
time="2021-07-01T17:07:51-07:00" level=debug msg="HEAD points to 'f451cde05e6d93b59afdb98d6e0f67859dcaa313'"
time="2021-07-01T17:07:51-07:00" level=debug msg="using github ref: refs/heads/master"
time="2021-07-01T17:07:51-07:00" level=debug msg="Loading slug from git directory 'C:\\Users\\josep\\Documents\\Programming\\act-unquoted-file-paths\\.git'"
time="2021-07-01T17:07:51-07:00" level=debug msg="Found revision: f451cde05e6d93b59afdb98d6e0f67859dcaa313\n"
time="2021-07-01T17:07:51-07:00" level=debug msg="Loading revision from git directory 'C:\\Users\\josep\\Documents\\Programming\\act-unquoted-file-paths\\.git'"
time="2021-07-01T17:07:51-07:00" level=debug msg="Found revision: f451cde05e6d93b59afdb98d6e0f67859dcaa313\n"
time="2021-07-01T17:07:51-07:00" level=debug msg="HEAD points to 'f451cde05e6d93b59afdb98d6e0f67859dcaa313'"
time="2021-07-01T17:07:51-07:00" level=debug msg="using github ref: refs/heads/master"
time="2021-07-01T17:07:51-07:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.1/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]"
time="2021-07-01T17:07:51-07:00" level=debug msg="context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/master GITHUB_REPOSITORY:joebobmiles/didactic-octo-barnacle GITHUB_REPOSITORY_OWNER:joebobmiles GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:f451cde05e6d93b59afdb98d6e0f67859dcaa313 GITHUB_TOKEN: GITHUB_WORKFLOW:Test GITHUB_WORKSPACE:/mnt/c/Users/josep/Documents/Programming/act-unquoted-file-paths/Hello World IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.1/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]"
[Test/test] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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 GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/master GITHUB_REPOSITORY:joebobmiles/didactic-octo-barnacle GITHUB_REPOSITORY_OWNER:joebobmiles GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:f451cde05e6d93b59afdb98d6e0f67859dcaa313 GITHUB_TOKEN: GITHUB_WORKFLOW:Test GITHUB_WORKSPACE:/mnt/c/Users/josep/Documents/Programming/act-unquoted-file-paths/Hello World IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.1/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[Test/test] ⭐ Run sudo apt-get update
time="2021-07-01T17:07:51-07:00" level=debug msg="Wrote command '\nsudo apt-get update\n' to 'workflow/0'"
time="2021-07-01T17:07:51-07:00" level=debug msg="Writing entry to tarball workflow/0 len:19"
[Test/test] Extracting content to '/mnt/c/Users/josep/Documents/Programming/act-unquoted-file-paths/Hello World'
[Test/test] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /mnt/c/Users/josep/Documents/Programming/act-unquoted-file-paths/Hello World/workflow/0] user=
[Test/test] Exec command '[bash --noprofile --norc -e -o pipefail /mnt/c/Users/josep/Documents/Programming/act-unquoted-file-paths/Hello World/workflow/0]'
| bash: /mnt/c/Users/josep/Documents/Programming/act-unquoted-file-paths/Hello: No such file or directory
[Test/test] ❌ Failure - sudo apt-get update
time="2021-07-01T17:07:51-07:00" level=debug msg="exit with `FAILURE`: 1"
Error: exit with `FAILURE`: 1
```
</details>
| https://github.com/nektos/act/issues/748 | https://github.com/nektos/act/pull/772 | 77b396891325d2567de3ddfd8a1ce0ea204a734d | bea32d5651c94049173799c496bdc87a4b304f02 | "2021-07-02T00:13:34Z" | go | "2021-08-10T19:40:20Z" |
closed | nektos/act | https://github.com/nektos/act | 747 | [".github/workflows/checks.yml"] | Issue: Unable to set GitHub environment variable | <!--
- Make sure you are able to reproduce it on the [latest version](https://github.com/nektos/act/releases)
- Search the existing issues.
- Refer to [README](https://github.com/nektos/act/blob/master/README.md).
-->
## System information
<!--
- Operating System: < Windows | Linux | macOS | etc... >
- Architecture: < x64 (64-bit) | x86 (32-bit) | arm64 (64-bit) | arm (32-bit) | etc... >
- Apple M1: < yes | no >
- Docker version: < output of `docker system info -f "{{.ServerVersion}}"` >
- Docker image used in `act`: < can be omitted if it's included in log >
- `act` version: < output of `act --version`, if you've built `act` yourself, please provide commit hash >
-->
- Operating System: macOS
- Architecture: arm64
- Apple M1: yes
- Docker version: 20.10.7
- Docker image used in `act`: catthehacker/ubuntu:act-latest
- `act` version: 0.2.23
## Expected behaviour
<!--
- Describe how whole process should go and finish
-->
I've attempting to set an environment variable within an entrypoint script in an action:
```
echo 'RESULT<<EOF' >> $GITHUB_ENV
cat /etc/hosts >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
```
## Actual behaviour
<!--
- Describe the issue
-->
When running this action I get the following error:
`/entrypoint.sh: line 10: /var/run/act/workflow/envs.txt: No such file or directory`
## Workflow and/or repository
<!--
- Provide workflow with which we can reproduce the issue
OR
- Provide link to your GitHub repository that contains the workflow
<details>
<summary>workflow</summary>
```none
name: bandit
on: push
jobs:
label:
name: "Run bandit scan"
runs-on: ubuntu-latest
steps:
- name: "Checkout"
uses: "actions/checkout@v2"
- name: "Bandit"
id: "bandit"
uses: "./.github/actions/bandit/"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
repo: ${{ github.event.repository.name }}
target: ${{ github.workspace }}
```
</details>
## Steps to reproduce
<!--
- Make sure to include full command with parameters you used to run `act`, example:
1. Clone example repo (https://github.com/cplee/github-actions-demo)
2. Enter cloned repo directory
3. Run `act -s SUPER_SECRET=im-a-value`
-->
1. Clone repo https://github.com/SeanWrightSec/bandit.git
2. Enter cloned repo directory
3. Run `act`
## `act` output
<!--
- Use `act` with `-v`/`--verbose` and paste output from your terminal in code block below
-->
<details>
<summary>Log</summary>
```none
DEBU[0000] Loading environment from /tmp/bandit/.env
DEBU[0000] Loading secrets from /tmp/bandit/.secrets
DEBU[0000] Loading workflows from '/tmp/bandit/.github/workflows'
DEBU[0000] Loading workflows recursively
DEBU[0000] Found workflow 'main.yml' in '/tmp/bandit/.github/workflows/main.yml'
DEBU[0000] Reading workflow '/tmp/bandit/.github/workflows/main.yml'
DEBU[0000] Correcting if statements '/tmp/bandit/.github/workflows/main.yml'
DEBU[0000] Planning event: push
DEBU[0000] Loading slug from git directory '/tmp/bandit/.git'
DEBU[0000] Found revision: 2fb7067c7e6be976cc4b5f5f58092cc5b962508c
DEBU[0000] Loading revision from git directory '/tmp/bandit/.git'
DEBU[0000] Found revision: 2fb7067c7e6be976cc4b5f5f58092cc5b962508c
DEBU[0000] HEAD points to '2fb7067c7e6be976cc4b5f5f58092cc5b962508c'
DEBU[0000] using github ref: refs/heads/main
DEBU[0000] context env => map[ACT:true]
[bandit/Run bandit scan] 🚀 Start image=catthehacker/ubuntu:act-latest
DEBU[0000] Loading slug from git directory '/tmp/bandit/.git'
DEBU[0000] Found revision: 2fb7067c7e6be976cc4b5f5f58092cc5b962508c
DEBU[0000] Loading revision from git directory '/tmp/bandit/.git'
DEBU[0000] Found revision: 2fb7067c7e6be976cc4b5f5f58092cc5b962508c
DEBU[0000] HEAD points to '2fb7067c7e6be976cc4b5f5f58092cc5b962508c'
DEBU[0000] using github ref: refs/heads/main
[bandit/Run bandit scan] 🐳 docker pull catthehacker/ubuntu:act-latest
DEBU[0000] Image exists? true
[bandit/Run bandit scan] Removed container: b6d8108d3ab5a7f66a0c9705fc06edb419df7338853b8fe568641d81b6f9a38e
[bandit/Run bandit scan] 🐳 docker volume rm act-bandit-Run-bandit-scan
[bandit/Run bandit scan] 🐳 docker create image=catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[bandit/Run bandit scan] Created container name=act-bandit-Run-bandit-scan id=fa2f2a536271bea7ba5d01e7aa0599daf17202a3309d430c2f4182b5a815d8f9 from image catthehacker/ubuntu:act-latest (platform: )
[bandit/Run bandit scan] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_TEMP=/tmp]
[bandit/Run bandit scan] 🐳 docker run image=catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[bandit/Run bandit scan] Starting container: fa2f2a536271bea7ba5d01e7aa0599daf17202a3309d430c2f4182b5a815d8f9
[bandit/Run bandit scan] Started container: fa2f2a536271bea7ba5d01e7aa0599daf17202a3309d430c2f4182b5a815d8f9
[bandit/Run bandit scan] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root
[bandit/Run bandit scan] Exec command '[mkdir -m 0777 -p /var/run/act]'
[bandit/Run bandit scan] 🐳 docker cp src=/tmp/bandit/. dst=/tmp/bandit
[bandit/Run bandit scan] 🐳 docker exec cmd=[mkdir -p /tmp/bandit] user=
[bandit/Run bandit scan] Exec command '[mkdir -p /tmp/bandit]'
DEBU[0000] Writing tarball /var/folders/ty/trwr80zs6_g38vlmmkh3xrhm0000gn/T/act575372720 from /tmp/bandit/.
DEBU[0000] Stripping prefix:/tmp/bandit/ src:/tmp/bandit/.
[bandit/Run bandit scan] Extracting content from '/var/folders/ty/trwr80zs6_g38vlmmkh3xrhm0000gn/T/act575372720' to '/tmp/bandit'
DEBU[0000] Writing entry to tarball workflow/event.json len:2
DEBU[0000] Writing entry to tarball workflow/envs.txt len:0
DEBU[0000] Writing entry to tarball workflow/paths.txt len:0
[bandit/Run bandit scan] Extracting content to '/var/run/act/'
DEBU[0000] Loading slug from git directory '/tmp/bandit/.git'
DEBU[0000] Found revision: 2fb7067c7e6be976cc4b5f5f58092cc5b962508c
DEBU[0000] Loading revision from git directory '/tmp/bandit/.git'
DEBU[0000] Found revision: 2fb7067c7e6be976cc4b5f5f58092cc5b962508c
DEBU[0000] HEAD points to '2fb7067c7e6be976cc4b5f5f58092cc5b962508c'
DEBU[0000] using github ref: refs/heads/main
DEBU[0000] Loading slug from git directory '/tmp/bandit/.git'
DEBU[0000] Found revision: 2fb7067c7e6be976cc4b5f5f58092cc5b962508c
DEBU[0000] Loading revision from git directory '/tmp/bandit/.git'
DEBU[0000] Found revision: 2fb7067c7e6be976cc4b5f5f58092cc5b962508c
DEBU[0000] HEAD points to '2fb7067c7e6be976cc4b5f5f58092cc5b962508c'
DEBU[0000] using github ref: refs/heads/main
DEBU[0000] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.1/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0000] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:Run bandit scan GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:SeanWrightSec/bandit GITHUB_REPOSITORY_OWNER:SeanWrightSec GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:2fb7067c7e6be976cc4b5f5f58092cc5b962508c GITHUB_TOKEN: GITHUB_WORKFLOW:bandit GITHUB_WORKSPACE:/tmp/bandit IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.1/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[bandit/Run bandit scan] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:Run bandit scan GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:SeanWrightSec/bandit GITHUB_REPOSITORY_OWNER:SeanWrightSec GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:2fb7067c7e6be976cc4b5f5f58092cc5b962508c GITHUB_TOKEN: GITHUB_WORKFLOW:bandit GITHUB_WORKSPACE:/tmp/bandit IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.1/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[bandit/Run bandit scan] ⭐ Run Checkout
DEBU[0000] Loading slug from git directory '/tmp/bandit/.git'
DEBU[0000] Found revision: 2fb7067c7e6be976cc4b5f5f58092cc5b962508c
DEBU[0000] Loading revision from git directory '/tmp/bandit/.git'
DEBU[0000] Found revision: 2fb7067c7e6be976cc4b5f5f58092cc5b962508c
DEBU[0000] HEAD points to '2fb7067c7e6be976cc4b5f5f58092cc5b962508c'
DEBU[0000] using github ref: refs/heads/main
[bandit/Run bandit scan] Skipping local actions/checkout because workdir was already copied
[bandit/Run bandit scan] ✅ Success - Checkout
DEBU[0000] Loading slug from git directory '/tmp/bandit/.git'
DEBU[0000] Found revision: 2fb7067c7e6be976cc4b5f5f58092cc5b962508c
DEBU[0000] Loading revision from git directory '/tmp/bandit/.git'
DEBU[0000] Found revision: 2fb7067c7e6be976cc4b5f5f58092cc5b962508c
DEBU[0000] HEAD points to '2fb7067c7e6be976cc4b5f5f58092cc5b962508c'
DEBU[0000] using github ref: refs/heads/main
DEBU[0000] Loading slug from git directory '/tmp/bandit/.git'
DEBU[0000] Found revision: 2fb7067c7e6be976cc4b5f5f58092cc5b962508c
DEBU[0000] Loading revision from git directory '/tmp/bandit/.git'
DEBU[0000] Found revision: 2fb7067c7e6be976cc4b5f5f58092cc5b962508c
DEBU[0000] HEAD points to '2fb7067c7e6be976cc4b5f5f58092cc5b962508c'
DEBU[0000] using github ref: refs/heads/main
DEBU[0000] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.1/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0000] Loading slug from git directory '/tmp/bandit/.git'
DEBU[0000] Found revision: 2fb7067c7e6be976cc4b5f5f58092cc5b962508c
DEBU[0000] Loading revision from git directory '/tmp/bandit/.git'
DEBU[0000] Found revision: 2fb7067c7e6be976cc4b5f5f58092cc5b962508c
DEBU[0000] HEAD points to '2fb7067c7e6be976cc4b5f5f58092cc5b962508c'
DEBU[0000] using github ref: refs/heads/main
DEBU[0000] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.1/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0000] Evaluating 'github['event']['repository']['name']' instead of 'github.event.repository.name'
DEBU[0000] Loading slug from git directory '/tmp/bandit/.git'
DEBU[0000] Found revision: 2fb7067c7e6be976cc4b5f5f58092cc5b962508c
DEBU[0000] Loading revision from git directory '/tmp/bandit/.git'
DEBU[0000] Found revision: 2fb7067c7e6be976cc4b5f5f58092cc5b962508c
DEBU[0000] HEAD points to '2fb7067c7e6be976cc4b5f5f58092cc5b962508c'
DEBU[0000] using github ref: refs/heads/main
DEBU[0000] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.1/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0000] Evaluating 'github['workspace']' instead of 'github.workspace'
DEBU[0000] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:bandit GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:Run bandit scan GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:SeanWrightSec/bandit GITHUB_REPOSITORY_OWNER:SeanWrightSec GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:2fb7067c7e6be976cc4b5f5f58092cc5b962508c GITHUB_TOKEN: GITHUB_WORKFLOW:bandit GITHUB_WORKSPACE:/tmp/bandit IMAGE_OS:ubuntu20 INPUT_REPO:${{ github.event.repository.name }} INPUT_TARGET:${{ github.workspace }} ImageOS:ubuntu20 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.1/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0000] Evaluating 'github['event']['repository']['name']' instead of 'github.event.repository.name'
DEBU[0000] Evaluating 'github['workspace']' instead of 'github.workspace'
[bandit/Run bandit scan] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:bandit GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:Run bandit scan GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:SeanWrightSec/bandit GITHUB_REPOSITORY_OWNER:SeanWrightSec GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:2fb7067c7e6be976cc4b5f5f58092cc5b962508c GITHUB_TOKEN: GITHUB_WORKFLOW:bandit GITHUB_WORKSPACE:/tmp/bandit IMAGE_OS:ubuntu20 INPUT_REPO: INPUT_TARGET:/tmp/bandit ImageOS:ubuntu20 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.1/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[bandit/Run bandit scan] ⭐ Run Bandit
DEBU[0000] Read action &{Python - Bandit Run a security scan of Python code map[repo:{The name of the current repository true } target:{Scan target true }] map[result:{Scan result }] {docker map[] Dockerfile [] [] []} { }} from '/tmp/bandit/.github/actions/bandit/action.yaml'
DEBU[0000] About to run action &{Python - Bandit Run a security scan of Python code map[repo:{The name of the current repository true } target:{Scan target true }] map[result:{Scan result }] {docker map[] Dockerfile [] [] []} { }}
DEBU[0000] type=2 actionDir=/tmp/bandit/.github/actions/bandit actionPath= Workdir=/tmp/bandit ActionCacheDir=/Users/swright/.cache/act actionName=./.github/actions/bandit containerActionDir=/tmp/bandit/.github/actions/bandit
DEBU[0000] image 'act-github-actions-bandit:latest' for architecture '' already exists
DEBU[0000] Loading slug from git directory '/tmp/bandit/.git'
DEBU[0000] Found revision: 2fb7067c7e6be976cc4b5f5f58092cc5b962508c
DEBU[0000] Loading revision from git directory '/tmp/bandit/.git'
DEBU[0000] Found revision: 2fb7067c7e6be976cc4b5f5f58092cc5b962508c
DEBU[0000] HEAD points to '2fb7067c7e6be976cc4b5f5f58092cc5b962508c'
DEBU[0000] using github ref: refs/heads/main
DEBU[0000] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.1/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0000] Loading slug from git directory '/tmp/bandit/.git'
DEBU[0000] Found revision: 2fb7067c7e6be976cc4b5f5f58092cc5b962508c
DEBU[0000] Loading revision from git directory '/tmp/bandit/.git'
DEBU[0000] Found revision: 2fb7067c7e6be976cc4b5f5f58092cc5b962508c
DEBU[0000] HEAD points to '2fb7067c7e6be976cc4b5f5f58092cc5b962508c'
DEBU[0000] using github ref: refs/heads/main
DEBU[0000] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.1/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0000] Evaluating 'github['event']['repository']['name']' instead of 'github.event.repository.name'
DEBU[0000] Loading slug from git directory '/tmp/bandit/.git'
DEBU[0000] Found revision: 2fb7067c7e6be976cc4b5f5f58092cc5b962508c
DEBU[0000] Loading revision from git directory '/tmp/bandit/.git'
DEBU[0000] Found revision: 2fb7067c7e6be976cc4b5f5f58092cc5b962508c
DEBU[0000] HEAD points to '2fb7067c7e6be976cc4b5f5f58092cc5b962508c'
DEBU[0000] using github ref: refs/heads/main
DEBU[0000] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache DEPLOYMENT_BASEPATH:/opt/runner IMAGE_OS:ubuntu20 ImageOS:ubuntu20 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.1/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
DEBU[0000] Evaluating 'github['workspace']' instead of 'github.workspace'
DEBU[0000] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache CI:true DEPLOYMENT_BASEPATH:/opt/runner GITHUB_ACTION:bandit GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:Run bandit scan GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/main GITHUB_REPOSITORY:SeanWrightSec/bandit GITHUB_REPOSITORY_OWNER:SeanWrightSec GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:2fb7067c7e6be976cc4b5f5f58092cc5b962508c GITHUB_TOKEN: GITHUB_WORKFLOW:bandit GITHUB_WORKSPACE:/tmp/bandit IMAGE_OS:ubuntu20 INPUT_REPO: INPUT_TARGET:/tmp/bandit ImageOS:ubuntu20 LSB_RELEASE:20.04 PATH:/opt/hostedtoolcache/node/14.17.1/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin RUNNER_PERFLOG:/dev/null RUNNER_TRACKING_ID: RUNNER_USER:root RUN_TOOL_CACHE:/opt/hostedtoolcache USER:root]
[bandit/Run bandit scan] 🐳 docker pull act-github-actions-bandit:latest
DEBU[0000] Image exists? true
[bandit/Run bandit scan] 🐳 docker create image=act-github-actions-bandit:latest platform= entrypoint=[] cmd=[]
[bandit/Run bandit scan] Created container name=act-bandit-Run-bandit id=85033cce449cf6bd6f7b375f1e09dd3a7d6b96c7162fa1a745611d027bf0d3ff from image act-github-actions-bandit:latest (platform: )
[bandit/Run bandit scan] ENV ==> [GITHUB_HEAD_REF= INPUT_REPO= GITHUB_ACTION_REF= ACT=true GITHUB_RUN_ID=1 GITHUB_ACTOR=nektos/act GITHUB_ENV=/var/run/act/workflow/envs.txt PATH=/opt/hostedtoolcache/node/14.17.1/x64/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin INPUT_TARGET=/tmp/bandit GITHUB_WORKSPACE=/tmp/bandit GITHUB_PATH=/var/run/act/workflow/paths.txt GITHUB_RETENTION_DAYS=0 GITHUB_REF=refs/heads/main GITHUB_GRAPHQL_URL=https://api.github.com/graphql GITHUB_REPOSITORY_OWNER=SeanWrightSec GITHUB_RUN_NUMBER=1 USER=root GITHUB_API_URL=https://api.github.com GITHUB_ACTION_REPOSITORY= GITHUB_JOB=Run bandit scan CI=true LSB_RELEASE=20.04 RUN_TOOL_CACHE=/opt/hostedtoolcache GITHUB_SHA=2fb7067c7e6be976cc4b5f5f58092cc5b962508c IMAGE_OS=ubuntu20 GITHUB_TOKEN= GITHUB_EVENT_NAME=push RUNNER_PERFLOG=/dev/null ImageOS=ubuntu20 GITHUB_ACTIONS=true GITHUB_WORKFLOW=bandit GITHUB_ACTION=bandit GITHUB_SERVER_URL=https://github.com GITHUB_BASE_REF= AGENT_TOOLSDIRECTORY=/opt/hostedtoolcache GITHUB_EVENT_PATH=/var/run/act/workflow/event.json RUNNER_USER=root RUNNER_TRACKING_ID= DEPLOYMENT_BASEPATH=/opt/runner GITHUB_REPOSITORY=SeanWrightSec/bandit RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_TEMP=/tmp]
[bandit/Run bandit scan] 🐳 docker run image=act-github-actions-bandit:latest platform= entrypoint=[] cmd=[]
[bandit/Run bandit scan] Starting container: 85033cce449cf6bd6f7b375f1e09dd3a7d6b96c7162fa1a745611d027bf0d3ff
[bandit/Run bandit scan] Started container: 85033cce449cf6bd6f7b375f1e09dd3a7d6b96c7162fa1a745611d027bf0d3ff
| [main] INFO profile include tests: None
| [main] INFO profile exclude tests: None
| [main] INFO cli include tests: None
| [main] INFO cli exclude tests: None
| [main] INFO running on Python 3.9.6
| [text] INFO Text output written to file: /tmp/scan
| /entrypoint.sh: line 10: /var/run/act/workflow/envs.txt: No such file or directory
[bandit/Run bandit scan] Return status: 1
[bandit/Run bandit scan] Removed container: 85033cce449cf6bd6f7b375f1e09dd3a7d6b96c7162fa1a745611d027bf0d3ff
[bandit/Run bandit scan] ❌ Failure - Bandit
DEBU[0001] exit with `FAILURE`: 1
Error: exit with `FAILURE`: 1
```
</details>
| https://github.com/nektos/act/issues/747 | https://github.com/nektos/act/pull/1359 | 3fccb5ae3467fbd013ca72ed08732d2916beb1c2 | d137ec82852083eef45009dcaf368c3dcdd0b9a6 | "2021-07-01T21:57:07Z" | go | "2022-09-26T02:37:58Z" |
closed | nektos/act | https://github.com/nektos/act | 742 | ["cmd/root.go", "pkg/runner/command_test.go"] | [Apple Silicon] Failure 255 | ## System information
- Operating System: macOS
- Architecture: arm64 (64-bit)
- Apple M1: yes
- Docker version: Server Version: 20.10.6
- Docker image used in `act`: catthehacker/ubuntu:act-latest
- `act` version: act version 0.2.23
## Expected behaviour
I expected to be able to use act with a Silicon Mac
## Actual behaviour
Running `act` in the command line outputs:
```
Docker Image CI/build] 🚀 Start image=catthehacker/ubuntu:act-latest
[Docker Image CI/build] 🐳 docker run image=catthehacker/ubuntu:act-latest platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Docker Image CI/build] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root
[Docker Image CI/build] ⭐ Run Login to DockerHub
INFO[0000] ☁ git clone 'https://github.com/docker/login-action' # ref=v1
[Docker Image CI/build] 🐳 docker cp src=/Users/andreicalazans/.cache/act/docker-login-action@v1/ dst=/var/run/act/actions/docker-login-action@v1/
[Docker Image CI/build] 🐳 docker exec cmd=[mkdir -p /var/run/act/actions/docker-login-action@v1/] user=
[Docker Image CI/build] 🐳 docker exec cmd=[node /var/run/act/actions/docker-login-action@v1/dist/index.js] user=
| /lib64/ld-linux-x86-64.so.2: No such file or directory
[Docker Image CI/build] ❌ Failure - Login to DockerHub
Error: exit with `FAILURE`: 255
```
## Steps to reproduce
On a M1 Mac:
1) brew install act
2) act
| https://github.com/nektos/act/issues/742 | https://github.com/nektos/act/pull/743 | a9fe0383478554705100dc4416b235b2265f718c | 1cf422e41108bf72ec837bea66e080d400ca1192 | "2021-06-22T19:07:08Z" | go | "2021-06-23T18:09:27Z" |
closed | nektos/act | https://github.com/nektos/act | 740 | ["go.mod", "go.sum"] | EACCES: permission denied for github-actions-demo using ubuntu:full-20.04 | With `~/.actrc`:
```
-P ubuntu-latest=catthehacker/ubuntu:full-20.04
```
Running commands:
```shell
$ git clone https://github.com/cplee/github-actions-demo.git
$ cd github-actions-demo
$ act -j test
```
Results in EACCES: permission denied:
```shell
CI/test] 🚀 Start image=catthehacker/ubuntu:full-20.04
[CI/test] 🐳 docker run image=catthehacker/ubuntu:full-20.04 platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[CI/test] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root
[CI/test] 🐳 docker cp src=/home/craig/Projects/github-actions-demo/. dst=/home/craig/Projects/github-actions-demo
[CI/test] 🐳 docker exec cmd=[mkdir -p /home/craig/Projects/github-actions-demo] user=
[CI/test] ⭐ Run actions/checkout@v2
[CI/test] ✅ Success - actions/checkout@v2
[CI/test] ⭐ Run actions/setup-node@v1
INFO[0001] ☁ git clone 'https://github.com/actions/setup-node' # ref=v1
[CI/test] 🐳 docker cp src=/home/craig/.cache/act/actions-setup-node@v1/ dst=/var/run/act/actions/actions-setup-node@v1/
[CI/test] 🐳 docker exec cmd=[mkdir -p /var/run/act/actions/actions-setup-node@v1/] user=
[CI/test] 🐳 docker exec cmd=[node /var/run/act/actions/actions-setup-node@v1/dist/index.js] user=
[CI/test] 💬 ::debug::isExplicit:
[CI/test] 💬 ::debug::explicit? false
[CI/test] 💬 ::debug::isExplicit: 10.23.0
[CI/test] 💬 ::debug::explicit? true
[CI/test] 💬 ::debug::isExplicit: 12.20.0
[CI/test] 💬 ::debug::explicit? true
[CI/test] 💬 ::debug::isExplicit: 14.15.1
[CI/test] 💬 ::debug::explicit? true
[CI/test] 💬 ::debug::isExplicit: 8.17.0
[CI/test] 💬 ::debug::explicit? true
[CI/test] 💬 ::debug::evaluating 4 versions
[CI/test] 💬 ::debug::matched: 10.23.0
[CI/test] 💬 ::debug::checking cache: /opt/hostedtoolcache/node/10.23.0/x64
[CI/test] 💬 ::debug::Found tool in cache node 10.23.0 x64
| [command]/opt/hostedtoolcache/node/10.23.0/x64/bin/node --version
| v10.23.0
| [command]/opt/hostedtoolcache/node/10.23.0/x64/bin/npm --version
| 6.14.8
[CI/test] ❓ ##[add-matcher]/run/act/actions/actions-setup-node@v1/.github/tsc.json
[CI/test] ❓ ##[add-matcher]/run/act/actions/actions-setup-node@v1/.github/eslint-stylish.json
[CI/test] ❓ ##[add-matcher]/run/act/actions/actions-setup-node@v1/.github/eslint-compact.json
[CI/test] ✅ Success - actions/setup-node@v1
[CI/test] ⭐ Run npm install
[CI/test] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /home/craig/Projects/github-actions-demo/workflow/2] user=
| npm WARN checkPermissions Missing write access to /home/craig/Projects/github-actions-demo
| npm ERR! code EACCES
| npm ERR! syscall access
| npm ERR! path /home/craig/Projects/github-actions-demo
| npm ERR! errno -13
| npm ERR! Error: EACCES: permission denied, access '/home/craig/Projects/github-actions-demo'
| npm ERR! { [Error: EACCES: permission denied, access '/home/craig/Projects/github-actions-demo']
| npm ERR! stack:
| npm ERR! 'Error: EACCES: permission denied, access \'/home/craig/Projects/github-actions-demo\'',
| npm ERR! errno: -13,
| npm ERR! code: 'EACCES',
| npm ERR! syscall: 'access',
| npm ERR! path: '/home/craig/Projects/github-actions-demo' }
| npm ERR!
| npm ERR! The operation was rejected by your operating system.
| npm ERR! It is likely you do not have the permissions to access this file as the current user
| npm ERR!
| npm ERR! If you believe this might be a permissions issue, please double-check the
| npm ERR! permissions of the file and its containing directories, or try running
| npm ERR! the command again as root/Administrator.
|
| npm ERR! A complete log of this run can be found in:
| npm ERR! /home/runner/.npm/_logs/2021-06-18T08_44_05_810Z-debug.log
[CI/test] ❌ Failure - npm install
Error: exit with `FAILURE`: 243
```
act works ok with `~/.actrc`:
```
-P ubuntu-latest=catthehacker/ubuntu:act-latest
```
```shell
...
<snip>
...
CI/test] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /home/craig/Projects/github-actions-demo/workflow/3] user=
|
| > [email protected] test /home/craig/Projects/github-actions-demo
| > mocha ./tests --recursive
|
|
|
| GET /
| ✓ should respond with hello world
|
|
| 1 passing (19ms)
|
[CI/test] ✅ Success - npm test
```
act version 0.2.23
Docker version 20.10.7, build f0df350 | https://github.com/nektos/act/issues/740 | https://github.com/nektos/act/pull/2011 | 83af8f8767091542dcc4263ebea06e6cc4edd7ce | b637d79ec3a0468e0ff968cdf57420c7020265c8 | "2021-06-18T09:17:57Z" | go | "2023-09-18T03:47:27Z" |
closed | nektos/act | https://github.com/nektos/act | 729 | ["pkg/runner/run_context.go"] | Issue: GITHUB_ENV is not guaranteed to exist, causes a permission denied error | Upgraded `act` while trying to debug another issue and ran into this bug which broke a step which was working fine on 0.21.
## System information
- Operating System: Darwin Kernel Version 20.5.0
- Architecture: x86_64
- Apple M1: No
- Docker version: 20.10.6, build 370c289
- Docker image used in `act`: catthehacker/ubuntu:full-20.04
- `act` version: 05bce00
## Expected behaviour
Runs successfully.
## Actual behaviour
```
[Foo/foo-2] Exec command '[node /var/run/act/actions/aws-actions-configure-aws-credentials@v1/dist/index.js]'
[Foo/foo-1] ❗ ::error::EACCES: permission denied, open '/var/run/act/workflow/envs.txt'
[Rails Tests/rails_tests-1] ❌ Failure - Configure AWS Credentials
```
## Workflow and/or repository
```
name: Foo
jobs:
foo:
steps:
- uses: aws-actions/configure-aws-credentials@v1
``` | https://github.com/nektos/act/issues/729 | https://github.com/nektos/act/pull/726 | 6550eb7f2515b635c1210fc218e03132008463c6 | 2261204c65b71d661495de95df6610c451157a67 | "2021-06-08T23:37:47Z" | go | "2021-06-09T23:08:39Z" |
closed | nektos/act | https://github.com/nektos/act | 724 | ["cmd/root.go", "pkg/container/docker_socket.go", "pkg/container/docker_socket_test.go"] | Issue: permission denied for docker socket | <!--
- Make sure you are able to reproduce it on the [latest version](https://github.com/nektos/act/releases)
- Search the existing issues.
- Refer to [README](https://github.com/nektos/act/blob/master/README.md).
-->
## System information
<!--
- Operating System: < Windows | Linux | macOS | etc... >
- Architecture: < x64 (64-bit) | x86 (32-bit) | arm64 (64-bit) | arm (32-bit) | etc... >
- Apple M1: < yes | no >
- Docker version: < output of `docker system info -f "{{.ServerVersion}}"` >
- Docker image used in `act`: < can be omitted if it's included in log >
- `act` version: < output of `act --version`, if you've built `act` yourself, please provide commit hash >
-->
- Operating System: Arch Linux (Kernel 5.12.8-arch1-1)
- Architecture: x64
- Apple M1: no
- Docker version: Docker version 20.10.6, build 370c28948e
- Docker image used in `act`: catthehacker/ubuntu:full-20.04
- `act` version: `go install github.com/nektos/act@master` (commit fa93f4d5e7e9ccfe68741a555e3137c1dfd6e997)
## Expected behaviour
<!--
- Describe how whole process should go and finish
-->
Be able to run `docker build` and other docker commands inside a Github Actions workflow.
## Actual behaviour
The `docker build` step fails with error `/var/run/docker.sock: connect: permission denied`.
<!--
- Describe the issue
-->
## Workflow and/or repository
<!--
- Provide workflow with which we can reproduce the issue
OR
- Provide link to your GitHub repository that contains the workflow
<details>
<summary>workflow</summary>
```none
name: Stable stepping in place for 30s in Gazebo Bullet
on: [push]
jobs:
run_controller:
runs-on: ubuntu-20.04
steps:
- name: Checkout walking controller repo
uses: actions/checkout@v2
- run: time docker build -t loukordos/walking-controller:develop-ubuntu -f Dockerfile.ubuntu .
- name: Checkout biped sim repo
uses: actions/checkout@master
with:
repository: LouKordos/simplified_biped
ref: refs/heads/develop
- run: time docker build -f Dockerfile.ubuntu-plugin -t loukordos/biped-sim:develop-ubuntu .
- run: mkdir /home/runner/work/plot_data
- run: docker run -v /home/runner/work/plot_data:/plot_data -d -e "RTF=0.2" -e "TERM=xterm-256color" -e "SKIP_PINNING=" -e "DISABLE_WEB_UI=" -e "RUNTIME_LIMIT=30" --net=host --name controller loukordos/walking-controller:develop-ubuntu
- run: docker run -v /home/runner/work/plot_data:/plot_data -d --net=host -e "RTF=0.2" --name biped-sim loukordos/biped-sim:develop-ubuntu
- run: while [ "$(docker ps --quiet | wc -l)" -eq "2" ]; do sleep 0.5; done && docker stop $(docker ps --quiet)
- name: Upload controller and gazebo logs
uses: actions/upload-artifact@v2
with:
name: logs
path: /home/runner/work/plot_data/*
- name: Checkout walking controller repo
uses: actions/checkout@v2
- run: pwd && tree
- run: python -m pip install -r /home/runner/work/walking_controller/walking_controller/requirements.txt
- run: python ./utils/ci-tests/check_energy_used.py 0 50
- run: python ./utils/ci-tests/check_torso_height.py 0.9 1.2
- run: python ./utils/ci-tests/check_torso_pos_x.py -0.1 0.1
- run: python ./utils/ci-tests/check_torso_pos_y.py -0.1 0.1
```
</details>
## Steps to reproduce
<!--
- Make sure to include full command with parameters you used to run `act`, example:
1. Clone example repo (https://github.com/cplee/github-actions-demo)
2. Enter cloned repo directory
3. Run `act -s SUPER_SECRET=im-a-value`
-->
Clone `Loukordos/walking_controller`, run `act -v -P ubuntu-20.04=catthehacker/ubuntu:full-20.04`.
## `act` output
<!--
- Use `act` with `-v`/`--verbose` and paste output from your terminal in code block below
-->
<details>
<summary>Log</summary>
```none
DEBU[0000] Loading environment from /home/loukas/dev/walking_controller/.env
DEBU[0000] Loading secrets from /home/loukas/dev/walking_controller/.secrets
DEBU[0000] Loading workflows from '/home/loukas/dev/walking_controller/.github/workflows'
DEBU[0000] Loading workflows recursively
DEBU[0000] Found workflow 'gazebo-stepping-in-place.yml' in '/home/loukas/dev/walking_controller/.github/workflows/gazebo-stepping-in-place.yml'
DEBU[0000] Reading workflow '/home/loukas/dev/walking_controller/.github/workflows/gazebo-stepping-in-place.yml'
DEBU[0000] Correcting if statements '/home/loukas/dev/walking_controller/.github/workflows/gazebo-stepping-in-place.yml'
DEBU[0000] Planning event: push
DEBU[0000] Loading slug from git directory '/home/loukas/dev/walking_controller/.git'
DEBU[0000] Found revision: 57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0000] Loading revision from git directory '/home/loukas/dev/walking_controller/.git'
DEBU[0000] Found revision: 57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0000] HEAD points to '57f0769039dae87eef064787c73b9afa62b11ee6'
DEBU[0000] Reference: name=refs/heads/asynchronous-logging sha=7e6423a0f8a9ab05854d494d4412b421ac32a991
DEBU[0000] Reference: name=refs/heads/com-state-to-leg-threads sha=5760980b17d4fa48697467eb5218e20411704d2d
DEBU[0000] Reference: name=refs/heads/contact-planner-to-leg-thread sha=076e92f0c3c028f16ffb10829c9b396da1f57e9e
DEBU[0000] Reference: name=refs/heads/develop sha=57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0000] Reference: name=refs/heads/docker-base-image sha=b7fe9bbc786ffc3502f2e6bd38b828a5bfbc00c1
DEBU[0000] Reference: name=refs/heads/foot-trajectory-touchdown-state sha=4afb4cdae7c84c042242d562d588e085b4e14c9e
DEBU[0000] Reference: name=refs/heads/forward-vel-command sha=88ecb88e192ad696a7a8197cef0bae3489663f25
DEBU[0000] Reference: name=refs/heads/github-actions sha=0fa57893262ff833b586922ce4c65bf601aa20fd
DEBU[0000] Reference: name=refs/heads/graceful-exit sha=356409da7f53e74a3608d32648631805833e0740
DEBU[0000] Reference: name=refs/heads/master sha=78ccf90620eaa5536740bf5118c99a9b309b9d0f
DEBU[0000] Reference: name=refs/heads/phase-based-contact-planner sha=61d885327b6d77a459a8c2620afa92348ad62d32
DEBU[0000] Reference: name=refs/heads/push-test sha=0a557e678cfa1e8fb5baa3ed063f2a217d0c6d0a
DEBU[0000] Reference: name=refs/heads/side-stepping-tests sha=ff066f9bdb888b12157da5917a67d3262594e463
DEBU[0000] Reference: name=refs/heads/symbolic-foot-positioning sha=bf8cb2d4cbe28c3028ef9a0c799793fce2b40563
DEBU[0000] Reference: name=refs/heads/threaded-lift-off-pos sha=795058b0505ec21689dba2f659623870d3460c25
DEBU[0000] Reference: name=refs/heads/turning-in-place sha=417541ed1413a1143bd488dcbee983ad2a6fa5d1
DEBU[0000] Reference: name=refs/heads/upper-hip-removed sha=c7adcb1251ef7a36b29a7ad7c5a3b2cbaacfb46d
DEBU[0000] Reference: name=refs/heads/waltz sha=e93df1141cc10d580b9567bb8dae47ad563d64ac
DEBU[0000] Reference: name=refs/heads/web-ui sha=e36e043298b78356a6ec3188f585fa01e3536c96
DEBU[0000] Reference: name=refs/remotes/origin/HEAD sha=0000000000000000000000000000000000000000
DEBU[0000] Reference: name=refs/remotes/origin/asynchronous-logging sha=7e6423a0f8a9ab05854d494d4412b421ac32a991
DEBU[0000] Reference: name=refs/remotes/origin/com-state-to-leg-threads sha=5760980b17d4fa48697467eb5218e20411704d2d
DEBU[0000] Reference: name=refs/remotes/origin/contact-planner-to-leg-thread sha=076e92f0c3c028f16ffb10829c9b396da1f57e9e
DEBU[0000] Reference: name=refs/remotes/origin/develop sha=57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0000] Reference: name=refs/remotes/origin/docker-base-image sha=b7fe9bbc786ffc3502f2e6bd38b828a5bfbc00c1
DEBU[0000] Reference: name=refs/remotes/origin/foot-trajectory-touchdown-state sha=4afb4cdae7c84c042242d562d588e085b4e14c9e
DEBU[0000] Reference: name=refs/remotes/origin/forward-vel-command sha=88ecb88e192ad696a7a8197cef0bae3489663f25
DEBU[0000] Reference: name=refs/remotes/origin/github-actions-test sha=e948c931769d4870639ba4352f5dc331bc54f133
DEBU[0000] Reference: name=refs/remotes/origin/graceful-exit sha=356409da7f53e74a3608d32648631805833e0740
DEBU[0000] Reference: name=refs/remotes/origin/master sha=78ccf90620eaa5536740bf5118c99a9b309b9d0f
DEBU[0000] Reference: name=refs/remotes/origin/phase-based-contact-planner sha=61d885327b6d77a459a8c2620afa92348ad62d32
DEBU[0000] Reference: name=refs/remotes/origin/symbolic-foot-positioning sha=bf8cb2d4cbe28c3028ef9a0c799793fce2b40563
DEBU[0000] Reference: name=refs/remotes/origin/threaded-lift-off-pos sha=795058b0505ec21689dba2f659623870d3460c25
DEBU[0000] Reference: name=refs/remotes/origin/turning-in-place sha=417541ed1413a1143bd488dcbee983ad2a6fa5d1
DEBU[0000] Reference: name=refs/remotes/origin/upper-hip-removed sha=c7adcb1251ef7a36b29a7ad7c5a3b2cbaacfb46d
DEBU[0000] Reference: name=refs/remotes/origin/web-ui sha=e36e043298b78356a6ec3188f585fa01e3536c96
DEBU[0000] Reference: name=refs/stash sha=2dd1e0937d3371ac8e6ae37616a422f8a394efa2
DEBU[0000] Reference: name=HEAD sha=0000000000000000000000000000000000000000
DEBU[0000] using github ref: refs/heads/develop
DEBU[0000] context env => map[ACT:true]
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] 🚀 Start image=catthehacker/ubuntu:full-20.04
DEBU[0000] Loading slug from git directory '/home/loukas/dev/walking_controller/.git'
DEBU[0000] Found revision: 57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0000] Loading revision from git directory '/home/loukas/dev/walking_controller/.git'
DEBU[0000] Found revision: 57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0000] HEAD points to '57f0769039dae87eef064787c73b9afa62b11ee6'
DEBU[0000] Reference: name=refs/heads/asynchronous-logging sha=7e6423a0f8a9ab05854d494d4412b421ac32a991
DEBU[0000] Reference: name=refs/heads/com-state-to-leg-threads sha=5760980b17d4fa48697467eb5218e20411704d2d
DEBU[0000] Reference: name=refs/heads/contact-planner-to-leg-thread sha=076e92f0c3c028f16ffb10829c9b396da1f57e9e
DEBU[0000] Reference: name=refs/heads/develop sha=57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0000] Reference: name=refs/heads/docker-base-image sha=b7fe9bbc786ffc3502f2e6bd38b828a5bfbc00c1
DEBU[0000] Reference: name=refs/heads/foot-trajectory-touchdown-state sha=4afb4cdae7c84c042242d562d588e085b4e14c9e
DEBU[0000] Reference: name=refs/heads/forward-vel-command sha=88ecb88e192ad696a7a8197cef0bae3489663f25
DEBU[0000] Reference: name=refs/heads/github-actions sha=0fa57893262ff833b586922ce4c65bf601aa20fd
DEBU[0000] Reference: name=refs/heads/graceful-exit sha=356409da7f53e74a3608d32648631805833e0740
DEBU[0000] Reference: name=refs/heads/master sha=78ccf90620eaa5536740bf5118c99a9b309b9d0f
DEBU[0000] Reference: name=refs/heads/phase-based-contact-planner sha=61d885327b6d77a459a8c2620afa92348ad62d32
DEBU[0000] Reference: name=refs/heads/push-test sha=0a557e678cfa1e8fb5baa3ed063f2a217d0c6d0a
DEBU[0000] Reference: name=refs/heads/side-stepping-tests sha=ff066f9bdb888b12157da5917a67d3262594e463
DEBU[0000] Reference: name=refs/heads/symbolic-foot-positioning sha=bf8cb2d4cbe28c3028ef9a0c799793fce2b40563
DEBU[0000] Reference: name=refs/heads/threaded-lift-off-pos sha=795058b0505ec21689dba2f659623870d3460c25
DEBU[0000] Reference: name=refs/heads/turning-in-place sha=417541ed1413a1143bd488dcbee983ad2a6fa5d1
DEBU[0000] Reference: name=refs/heads/upper-hip-removed sha=c7adcb1251ef7a36b29a7ad7c5a3b2cbaacfb46d
DEBU[0000] Reference: name=refs/heads/waltz sha=e93df1141cc10d580b9567bb8dae47ad563d64ac
DEBU[0000] Reference: name=refs/heads/web-ui sha=e36e043298b78356a6ec3188f585fa01e3536c96
DEBU[0000] Reference: name=refs/remotes/origin/HEAD sha=0000000000000000000000000000000000000000
DEBU[0000] Reference: name=refs/remotes/origin/asynchronous-logging sha=7e6423a0f8a9ab05854d494d4412b421ac32a991
DEBU[0000] Reference: name=refs/remotes/origin/com-state-to-leg-threads sha=5760980b17d4fa48697467eb5218e20411704d2d
DEBU[0000] Reference: name=refs/remotes/origin/contact-planner-to-leg-thread sha=076e92f0c3c028f16ffb10829c9b396da1f57e9e
DEBU[0000] Reference: name=refs/remotes/origin/develop sha=57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0000] Reference: name=refs/remotes/origin/docker-base-image sha=b7fe9bbc786ffc3502f2e6bd38b828a5bfbc00c1
DEBU[0000] Reference: name=refs/remotes/origin/foot-trajectory-touchdown-state sha=4afb4cdae7c84c042242d562d588e085b4e14c9e
DEBU[0000] Reference: name=refs/remotes/origin/forward-vel-command sha=88ecb88e192ad696a7a8197cef0bae3489663f25
DEBU[0000] Reference: name=refs/remotes/origin/github-actions-test sha=e948c931769d4870639ba4352f5dc331bc54f133
DEBU[0000] Reference: name=refs/remotes/origin/graceful-exit sha=356409da7f53e74a3608d32648631805833e0740
DEBU[0000] Reference: name=refs/remotes/origin/master sha=78ccf90620eaa5536740bf5118c99a9b309b9d0f
DEBU[0000] Reference: name=refs/remotes/origin/phase-based-contact-planner sha=61d885327b6d77a459a8c2620afa92348ad62d32
DEBU[0000] Reference: name=refs/remotes/origin/symbolic-foot-positioning sha=bf8cb2d4cbe28c3028ef9a0c799793fce2b40563
DEBU[0000] Reference: name=refs/remotes/origin/threaded-lift-off-pos sha=795058b0505ec21689dba2f659623870d3460c25
DEBU[0000] Reference: name=refs/remotes/origin/turning-in-place sha=417541ed1413a1143bd488dcbee983ad2a6fa5d1
DEBU[0000] Reference: name=refs/remotes/origin/upper-hip-removed sha=c7adcb1251ef7a36b29a7ad7c5a3b2cbaacfb46d
DEBU[0000] Reference: name=refs/remotes/origin/web-ui sha=e36e043298b78356a6ec3188f585fa01e3536c96
DEBU[0000] Reference: name=refs/stash sha=2dd1e0937d3371ac8e6ae37616a422f8a394efa2
DEBU[0000] Reference: name=HEAD sha=0000000000000000000000000000000000000000
DEBU[0000] using github ref: refs/heads/develop
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] 🐳 docker pull catthehacker/ubuntu:full-20.04
DEBU[0000] Image exists? true
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] Removed container: 71f3614a0277f247a5fdef8073daf47609a9a92a9efbfb4382dd3583337d3c23
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] 🐳 docker volume rm act-Stable-stepping-in-place-for-30s-in-Gazebo-Bullet-run-controller
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] 🐳 docker create image=catthehacker/ubuntu:full-20.04 platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] Created container name=act-Stable-stepping-in-place-for-30s-in-Gazebo-Bullet-run-controller id=1c004ef9094dde63b3ea06203be925ca36c43d023ea59585e331b045f8cdd9a9 from image catthehacker/ubuntu:full-20.04 (platform: )
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_TEMP=/tmp]
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] 🐳 docker run image=catthehacker/ubuntu:full-20.04 platform= entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] Starting container: 1c004ef9094dde63b3ea06203be925ca36c43d023ea59585e331b045f8cdd9a9
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] Started container: 1c004ef9094dde63b3ea06203be925ca36c43d023ea59585e331b045f8cdd9a9
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] 🐳 docker exec cmd=[mkdir -m 0777 -p /var/run/act] user=root
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] Exec command '[mkdir -m 0777 -p /var/run/act]'
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] 🐳 docker cp src=/home/loukas/dev/walking_controller/. dst=/home/loukas/dev/walking_controller
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] 🐳 docker exec cmd=[mkdir -p /home/loukas/dev/walking_controller] user=
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] Exec command '[mkdir -p /home/loukas/dev/walking_controller]'
DEBU[0001] Writing tarball /tmp/act973752387 from /home/loukas/dev/walking_controller/.
DEBU[0001] Stripping prefix:/home/loukas/dev/walking_controller/ src:/home/loukas/dev/walking_controller/.
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] Extracting content from '/tmp/act973752387' to '/home/loukas/dev/walking_controller'
DEBU[0001] Writing entry to tarball workflow/event.json len:2
DEBU[0001] Writing entry to tarball workflow/envs.txt len:0
DEBU[0001] Writing entry to tarball workflow/paths.txt len:0
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] Extracting content to '/var/run/act/'
DEBU[0001] Loading slug from git directory '/home/loukas/dev/walking_controller/.git'
DEBU[0001] Found revision: 57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0001] Loading revision from git directory '/home/loukas/dev/walking_controller/.git'
DEBU[0001] Found revision: 57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0001] HEAD points to '57f0769039dae87eef064787c73b9afa62b11ee6'
DEBU[0001] Reference: name=refs/heads/asynchronous-logging sha=7e6423a0f8a9ab05854d494d4412b421ac32a991
DEBU[0001] Reference: name=refs/heads/com-state-to-leg-threads sha=5760980b17d4fa48697467eb5218e20411704d2d
DEBU[0001] Reference: name=refs/heads/contact-planner-to-leg-thread sha=076e92f0c3c028f16ffb10829c9b396da1f57e9e
DEBU[0001] Reference: name=refs/heads/develop sha=57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0001] Reference: name=refs/heads/docker-base-image sha=b7fe9bbc786ffc3502f2e6bd38b828a5bfbc00c1
DEBU[0001] Reference: name=refs/heads/foot-trajectory-touchdown-state sha=4afb4cdae7c84c042242d562d588e085b4e14c9e
DEBU[0001] Reference: name=refs/heads/forward-vel-command sha=88ecb88e192ad696a7a8197cef0bae3489663f25
DEBU[0001] Reference: name=refs/heads/github-actions sha=0fa57893262ff833b586922ce4c65bf601aa20fd
DEBU[0001] Reference: name=refs/heads/graceful-exit sha=356409da7f53e74a3608d32648631805833e0740
DEBU[0001] Reference: name=refs/heads/master sha=78ccf90620eaa5536740bf5118c99a9b309b9d0f
DEBU[0001] Reference: name=refs/heads/phase-based-contact-planner sha=61d885327b6d77a459a8c2620afa92348ad62d32
DEBU[0001] Reference: name=refs/heads/push-test sha=0a557e678cfa1e8fb5baa3ed063f2a217d0c6d0a
DEBU[0001] Reference: name=refs/heads/side-stepping-tests sha=ff066f9bdb888b12157da5917a67d3262594e463
DEBU[0001] Reference: name=refs/heads/symbolic-foot-positioning sha=bf8cb2d4cbe28c3028ef9a0c799793fce2b40563
DEBU[0001] Reference: name=refs/heads/threaded-lift-off-pos sha=795058b0505ec21689dba2f659623870d3460c25
DEBU[0001] Reference: name=refs/heads/turning-in-place sha=417541ed1413a1143bd488dcbee983ad2a6fa5d1
DEBU[0001] Reference: name=refs/heads/upper-hip-removed sha=c7adcb1251ef7a36b29a7ad7c5a3b2cbaacfb46d
DEBU[0001] Reference: name=refs/heads/waltz sha=e93df1141cc10d580b9567bb8dae47ad563d64ac
DEBU[0001] Reference: name=refs/heads/web-ui sha=e36e043298b78356a6ec3188f585fa01e3536c96
DEBU[0001] Reference: name=refs/remotes/origin/HEAD sha=0000000000000000000000000000000000000000
DEBU[0001] Reference: name=refs/remotes/origin/asynchronous-logging sha=7e6423a0f8a9ab05854d494d4412b421ac32a991
DEBU[0001] Reference: name=refs/remotes/origin/com-state-to-leg-threads sha=5760980b17d4fa48697467eb5218e20411704d2d
DEBU[0001] Reference: name=refs/remotes/origin/contact-planner-to-leg-thread sha=076e92f0c3c028f16ffb10829c9b396da1f57e9e
DEBU[0001] Reference: name=refs/remotes/origin/develop sha=57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0001] Reference: name=refs/remotes/origin/docker-base-image sha=b7fe9bbc786ffc3502f2e6bd38b828a5bfbc00c1
DEBU[0001] Reference: name=refs/remotes/origin/foot-trajectory-touchdown-state sha=4afb4cdae7c84c042242d562d588e085b4e14c9e
DEBU[0001] Reference: name=refs/remotes/origin/forward-vel-command sha=88ecb88e192ad696a7a8197cef0bae3489663f25
DEBU[0001] Reference: name=refs/remotes/origin/github-actions-test sha=e948c931769d4870639ba4352f5dc331bc54f133
DEBU[0001] Reference: name=refs/remotes/origin/graceful-exit sha=356409da7f53e74a3608d32648631805833e0740
DEBU[0001] Reference: name=refs/remotes/origin/master sha=78ccf90620eaa5536740bf5118c99a9b309b9d0f
DEBU[0001] Reference: name=refs/remotes/origin/phase-based-contact-planner sha=61d885327b6d77a459a8c2620afa92348ad62d32
DEBU[0001] Reference: name=refs/remotes/origin/symbolic-foot-positioning sha=bf8cb2d4cbe28c3028ef9a0c799793fce2b40563
DEBU[0001] Reference: name=refs/remotes/origin/threaded-lift-off-pos sha=795058b0505ec21689dba2f659623870d3460c25
DEBU[0001] Reference: name=refs/remotes/origin/turning-in-place sha=417541ed1413a1143bd488dcbee983ad2a6fa5d1
DEBU[0001] Reference: name=refs/remotes/origin/upper-hip-removed sha=c7adcb1251ef7a36b29a7ad7c5a3b2cbaacfb46d
DEBU[0001] Reference: name=refs/remotes/origin/web-ui sha=e36e043298b78356a6ec3188f585fa01e3536c96
DEBU[0001] Reference: name=refs/stash sha=2dd1e0937d3371ac8e6ae37616a422f8a394efa2
DEBU[0001] Reference: name=HEAD sha=0000000000000000000000000000000000000000
DEBU[0001] using github ref: refs/heads/develop
DEBU[0001] Loading slug from git directory '/home/loukas/dev/walking_controller/.git'
DEBU[0001] Found revision: 57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0001] Loading revision from git directory '/home/loukas/dev/walking_controller/.git'
DEBU[0001] Found revision: 57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0001] HEAD points to '57f0769039dae87eef064787c73b9afa62b11ee6'
DEBU[0001] Reference: name=refs/heads/asynchronous-logging sha=7e6423a0f8a9ab05854d494d4412b421ac32a991
DEBU[0001] Reference: name=refs/heads/com-state-to-leg-threads sha=5760980b17d4fa48697467eb5218e20411704d2d
DEBU[0001] Reference: name=refs/heads/contact-planner-to-leg-thread sha=076e92f0c3c028f16ffb10829c9b396da1f57e9e
DEBU[0001] Reference: name=refs/heads/develop sha=57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0001] Reference: name=refs/heads/docker-base-image sha=b7fe9bbc786ffc3502f2e6bd38b828a5bfbc00c1
DEBU[0001] Reference: name=refs/heads/foot-trajectory-touchdown-state sha=4afb4cdae7c84c042242d562d588e085b4e14c9e
DEBU[0001] Reference: name=refs/heads/forward-vel-command sha=88ecb88e192ad696a7a8197cef0bae3489663f25
DEBU[0001] Reference: name=refs/heads/github-actions sha=0fa57893262ff833b586922ce4c65bf601aa20fd
DEBU[0001] Reference: name=refs/heads/graceful-exit sha=356409da7f53e74a3608d32648631805833e0740
DEBU[0001] Reference: name=refs/heads/master sha=78ccf90620eaa5536740bf5118c99a9b309b9d0f
DEBU[0001] Reference: name=refs/heads/phase-based-contact-planner sha=61d885327b6d77a459a8c2620afa92348ad62d32
DEBU[0001] Reference: name=refs/heads/push-test sha=0a557e678cfa1e8fb5baa3ed063f2a217d0c6d0a
DEBU[0001] Reference: name=refs/heads/side-stepping-tests sha=ff066f9bdb888b12157da5917a67d3262594e463
DEBU[0001] Reference: name=refs/heads/symbolic-foot-positioning sha=bf8cb2d4cbe28c3028ef9a0c799793fce2b40563
DEBU[0001] Reference: name=refs/heads/threaded-lift-off-pos sha=795058b0505ec21689dba2f659623870d3460c25
DEBU[0001] Reference: name=refs/heads/turning-in-place sha=417541ed1413a1143bd488dcbee983ad2a6fa5d1
DEBU[0001] Reference: name=refs/heads/upper-hip-removed sha=c7adcb1251ef7a36b29a7ad7c5a3b2cbaacfb46d
DEBU[0001] Reference: name=refs/heads/waltz sha=e93df1141cc10d580b9567bb8dae47ad563d64ac
DEBU[0001] Reference: name=refs/heads/web-ui sha=e36e043298b78356a6ec3188f585fa01e3536c96
DEBU[0001] Reference: name=refs/remotes/origin/HEAD sha=0000000000000000000000000000000000000000
DEBU[0001] Reference: name=refs/remotes/origin/asynchronous-logging sha=7e6423a0f8a9ab05854d494d4412b421ac32a991
DEBU[0001] Reference: name=refs/remotes/origin/com-state-to-leg-threads sha=5760980b17d4fa48697467eb5218e20411704d2d
DEBU[0001] Reference: name=refs/remotes/origin/contact-planner-to-leg-thread sha=076e92f0c3c028f16ffb10829c9b396da1f57e9e
DEBU[0001] Reference: name=refs/remotes/origin/develop sha=57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0001] Reference: name=refs/remotes/origin/docker-base-image sha=b7fe9bbc786ffc3502f2e6bd38b828a5bfbc00c1
DEBU[0001] Reference: name=refs/remotes/origin/foot-trajectory-touchdown-state sha=4afb4cdae7c84c042242d562d588e085b4e14c9e
DEBU[0001] Reference: name=refs/remotes/origin/forward-vel-command sha=88ecb88e192ad696a7a8197cef0bae3489663f25
DEBU[0001] Reference: name=refs/remotes/origin/github-actions-test sha=e948c931769d4870639ba4352f5dc331bc54f133
DEBU[0001] Reference: name=refs/remotes/origin/graceful-exit sha=356409da7f53e74a3608d32648631805833e0740
DEBU[0001] Reference: name=refs/remotes/origin/master sha=78ccf90620eaa5536740bf5118c99a9b309b9d0f
DEBU[0001] Reference: name=refs/remotes/origin/phase-based-contact-planner sha=61d885327b6d77a459a8c2620afa92348ad62d32
DEBU[0001] Reference: name=refs/remotes/origin/symbolic-foot-positioning sha=bf8cb2d4cbe28c3028ef9a0c799793fce2b40563
DEBU[0001] Reference: name=refs/remotes/origin/threaded-lift-off-pos sha=795058b0505ec21689dba2f659623870d3460c25
DEBU[0001] Reference: name=refs/remotes/origin/turning-in-place sha=417541ed1413a1143bd488dcbee983ad2a6fa5d1
DEBU[0001] Reference: name=refs/remotes/origin/upper-hip-removed sha=c7adcb1251ef7a36b29a7ad7c5a3b2cbaacfb46d
DEBU[0001] Reference: name=refs/remotes/origin/web-ui sha=e36e043298b78356a6ec3188f585fa01e3536c96
DEBU[0001] Reference: name=refs/stash sha=2dd1e0937d3371ac8e6ae37616a422f8a394efa2
DEBU[0001] Reference: name=HEAD sha=0000000000000000000000000000000000000000
DEBU[0001] using github ref: refs/heads/develop
DEBU[0001] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BUILD:dev CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DOTNET_MULTILEVEL_LOOKUP:"0" DOTNET_NOLOGO:"1" DOTNET_SKIP_FIRST_TIME_EXPERIENCE:"1" GECKOWEBDRIVER:/usr/local/share/gecko_driver GOROOT:/opt/hostedtoolcache/go/1.14.13/x64 GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.13/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.6/x64 GRADLE_HOME:/usr/share/gradle HELPER_SCRIPTS:/imagegeneration/helpers HOMEBREW_CELLAR:"/home/linuxbrew/.linuxbrew/Cellar" HOMEBREW_PREFIX:"/home/linuxbrew/.linuxbrew" HOMEBREW_REPOSITORY:"/home/linuxbrew/.linuxbrew/Homebrew" IMAGEDATA_FILE:/imagegeneration/imagedata.json IMAGE_FOLDER:/imagegeneration INSTALLER_SCRIPT_FOLDER:/imagegeneration/installers ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.5-standalone.jar LSB_RELEASE:20.04 M2_HOME:/usr/share/apache-maven-3.6.3 OSVERSION:2004 OS_VERSION:20.04 PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/home/runner/.dotnet/tools:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin PIPX_BIN_DIR:"/opt/pipx_bin" PIPX_HOME:"/opt/pipx" RUNNER_TEMP:/home/runner/work/_temp RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg]
DEBU[0001] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BUILD:dev CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DOTNET_MULTILEVEL_LOOKUP:"0" DOTNET_NOLOGO:"1" DOTNET_SKIP_FIRST_TIME_EXPERIENCE:"1" GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:run_controller GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:LouKordos/walking_controller GITHUB_REPOSITORY_OWNER:LouKordos GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:57f0769039dae87eef064787c73b9afa62b11ee6 GITHUB_TOKEN: GITHUB_WORKFLOW:Stable stepping in place for 30s in Gazebo Bullet GITHUB_WORKSPACE:/home/loukas/dev/walking_controller GOROOT:/opt/hostedtoolcache/go/1.14.13/x64 GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.13/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.6/x64 GRADLE_HOME:/usr/share/gradle HELPER_SCRIPTS:/imagegeneration/helpers HOMEBREW_CELLAR:"/home/linuxbrew/.linuxbrew/Cellar" HOMEBREW_PREFIX:"/home/linuxbrew/.linuxbrew" HOMEBREW_REPOSITORY:"/home/linuxbrew/.linuxbrew/Homebrew" IMAGEDATA_FILE:/imagegeneration/imagedata.json IMAGE_FOLDER:/imagegeneration INSTALLER_SCRIPT_FOLDER:/imagegeneration/installers ImageOS:ubuntu20.04 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.5-standalone.jar LSB_RELEASE:20.04 M2_HOME:/usr/share/apache-maven-3.6.3 OSVERSION:2004 OS_VERSION:20.04 PATH:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:"/opt/pipx_bin" PIPX_HOME:"/opt/pipx" RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg]
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BUILD:dev CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DOTNET_MULTILEVEL_LOOKUP:"0" DOTNET_NOLOGO:"1" DOTNET_SKIP_FIRST_TIME_EXPERIENCE:"1" GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:run_controller GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:LouKordos/walking_controller GITHUB_REPOSITORY_OWNER:LouKordos GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:57f0769039dae87eef064787c73b9afa62b11ee6 GITHUB_TOKEN: GITHUB_WORKFLOW:Stable stepping in place for 30s in Gazebo Bullet GITHUB_WORKSPACE:/home/loukas/dev/walking_controller GOROOT:/opt/hostedtoolcache/go/1.14.13/x64 GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.13/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.6/x64 GRADLE_HOME:/usr/share/gradle HELPER_SCRIPTS:/imagegeneration/helpers HOMEBREW_CELLAR:"/home/linuxbrew/.linuxbrew/Cellar" HOMEBREW_PREFIX:"/home/linuxbrew/.linuxbrew" HOMEBREW_REPOSITORY:"/home/linuxbrew/.linuxbrew/Homebrew" IMAGEDATA_FILE:/imagegeneration/imagedata.json IMAGE_FOLDER:/imagegeneration INSTALLER_SCRIPT_FOLDER:/imagegeneration/installers ImageOS:ubuntu20.04 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.5-standalone.jar LSB_RELEASE:20.04 M2_HOME:/usr/share/apache-maven-3.6.3 OSVERSION:2004 OS_VERSION:20.04 PATH:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:"/opt/pipx_bin" PIPX_HOME:"/opt/pipx" RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg]
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] ⭐ Run Checkout walking controller repo
DEBU[0001] Loading slug from git directory '/home/loukas/dev/walking_controller/.git'
DEBU[0001] Found revision: 57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0001] Loading revision from git directory '/home/loukas/dev/walking_controller/.git'
DEBU[0001] Found revision: 57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0001] HEAD points to '57f0769039dae87eef064787c73b9afa62b11ee6'
DEBU[0001] Reference: name=refs/heads/asynchronous-logging sha=7e6423a0f8a9ab05854d494d4412b421ac32a991
DEBU[0001] Reference: name=refs/heads/com-state-to-leg-threads sha=5760980b17d4fa48697467eb5218e20411704d2d
DEBU[0001] Reference: name=refs/heads/contact-planner-to-leg-thread sha=076e92f0c3c028f16ffb10829c9b396da1f57e9e
DEBU[0001] Reference: name=refs/heads/develop sha=57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0001] Reference: name=refs/heads/docker-base-image sha=b7fe9bbc786ffc3502f2e6bd38b828a5bfbc00c1
DEBU[0001] Reference: name=refs/heads/foot-trajectory-touchdown-state sha=4afb4cdae7c84c042242d562d588e085b4e14c9e
DEBU[0001] Reference: name=refs/heads/forward-vel-command sha=88ecb88e192ad696a7a8197cef0bae3489663f25
DEBU[0001] Reference: name=refs/heads/github-actions sha=0fa57893262ff833b586922ce4c65bf601aa20fd
DEBU[0001] Reference: name=refs/heads/graceful-exit sha=356409da7f53e74a3608d32648631805833e0740
DEBU[0001] Reference: name=refs/heads/master sha=78ccf90620eaa5536740bf5118c99a9b309b9d0f
DEBU[0001] Reference: name=refs/heads/phase-based-contact-planner sha=61d885327b6d77a459a8c2620afa92348ad62d32
DEBU[0001] Reference: name=refs/heads/push-test sha=0a557e678cfa1e8fb5baa3ed063f2a217d0c6d0a
DEBU[0001] Reference: name=refs/heads/side-stepping-tests sha=ff066f9bdb888b12157da5917a67d3262594e463
DEBU[0001] Reference: name=refs/heads/symbolic-foot-positioning sha=bf8cb2d4cbe28c3028ef9a0c799793fce2b40563
DEBU[0001] Reference: name=refs/heads/threaded-lift-off-pos sha=795058b0505ec21689dba2f659623870d3460c25
DEBU[0001] Reference: name=refs/heads/turning-in-place sha=417541ed1413a1143bd488dcbee983ad2a6fa5d1
DEBU[0001] Reference: name=refs/heads/upper-hip-removed sha=c7adcb1251ef7a36b29a7ad7c5a3b2cbaacfb46d
DEBU[0001] Reference: name=refs/heads/waltz sha=e93df1141cc10d580b9567bb8dae47ad563d64ac
DEBU[0001] Reference: name=refs/heads/web-ui sha=e36e043298b78356a6ec3188f585fa01e3536c96
DEBU[0001] Reference: name=refs/remotes/origin/HEAD sha=0000000000000000000000000000000000000000
DEBU[0001] Reference: name=refs/remotes/origin/asynchronous-logging sha=7e6423a0f8a9ab05854d494d4412b421ac32a991
DEBU[0001] Reference: name=refs/remotes/origin/com-state-to-leg-threads sha=5760980b17d4fa48697467eb5218e20411704d2d
DEBU[0001] Reference: name=refs/remotes/origin/contact-planner-to-leg-thread sha=076e92f0c3c028f16ffb10829c9b396da1f57e9e
DEBU[0001] Reference: name=refs/remotes/origin/develop sha=57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0001] Reference: name=refs/remotes/origin/docker-base-image sha=b7fe9bbc786ffc3502f2e6bd38b828a5bfbc00c1
DEBU[0001] Reference: name=refs/remotes/origin/foot-trajectory-touchdown-state sha=4afb4cdae7c84c042242d562d588e085b4e14c9e
DEBU[0001] Reference: name=refs/remotes/origin/forward-vel-command sha=88ecb88e192ad696a7a8197cef0bae3489663f25
DEBU[0001] Reference: name=refs/remotes/origin/github-actions-test sha=e948c931769d4870639ba4352f5dc331bc54f133
DEBU[0001] Reference: name=refs/remotes/origin/graceful-exit sha=356409da7f53e74a3608d32648631805833e0740
DEBU[0001] Reference: name=refs/remotes/origin/master sha=78ccf90620eaa5536740bf5118c99a9b309b9d0f
DEBU[0001] Reference: name=refs/remotes/origin/phase-based-contact-planner sha=61d885327b6d77a459a8c2620afa92348ad62d32
DEBU[0001] Reference: name=refs/remotes/origin/symbolic-foot-positioning sha=bf8cb2d4cbe28c3028ef9a0c799793fce2b40563
DEBU[0001] Reference: name=refs/remotes/origin/threaded-lift-off-pos sha=795058b0505ec21689dba2f659623870d3460c25
DEBU[0001] Reference: name=refs/remotes/origin/turning-in-place sha=417541ed1413a1143bd488dcbee983ad2a6fa5d1
DEBU[0001] Reference: name=refs/remotes/origin/upper-hip-removed sha=c7adcb1251ef7a36b29a7ad7c5a3b2cbaacfb46d
DEBU[0001] Reference: name=refs/remotes/origin/web-ui sha=e36e043298b78356a6ec3188f585fa01e3536c96
DEBU[0001] Reference: name=refs/stash sha=2dd1e0937d3371ac8e6ae37616a422f8a394efa2
DEBU[0001] Reference: name=HEAD sha=0000000000000000000000000000000000000000
DEBU[0001] using github ref: refs/heads/develop
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] Skipping local actions/checkout because workdir was already copied
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] ✅ Success - Checkout walking controller repo
DEBU[0001] Loading slug from git directory '/home/loukas/dev/walking_controller/.git'
DEBU[0001] Found revision: 57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0001] Loading revision from git directory '/home/loukas/dev/walking_controller/.git'
DEBU[0001] Found revision: 57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0001] HEAD points to '57f0769039dae87eef064787c73b9afa62b11ee6'
DEBU[0001] Reference: name=refs/heads/asynchronous-logging sha=7e6423a0f8a9ab05854d494d4412b421ac32a991
DEBU[0001] Reference: name=refs/heads/com-state-to-leg-threads sha=5760980b17d4fa48697467eb5218e20411704d2d
DEBU[0001] Reference: name=refs/heads/contact-planner-to-leg-thread sha=076e92f0c3c028f16ffb10829c9b396da1f57e9e
DEBU[0001] Reference: name=refs/heads/develop sha=57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0001] Reference: name=refs/heads/docker-base-image sha=b7fe9bbc786ffc3502f2e6bd38b828a5bfbc00c1
DEBU[0001] Reference: name=refs/heads/foot-trajectory-touchdown-state sha=4afb4cdae7c84c042242d562d588e085b4e14c9e
DEBU[0001] Reference: name=refs/heads/forward-vel-command sha=88ecb88e192ad696a7a8197cef0bae3489663f25
DEBU[0001] Reference: name=refs/heads/github-actions sha=0fa57893262ff833b586922ce4c65bf601aa20fd
DEBU[0001] Reference: name=refs/heads/graceful-exit sha=356409da7f53e74a3608d32648631805833e0740
DEBU[0001] Reference: name=refs/heads/master sha=78ccf90620eaa5536740bf5118c99a9b309b9d0f
DEBU[0001] Reference: name=refs/heads/phase-based-contact-planner sha=61d885327b6d77a459a8c2620afa92348ad62d32
DEBU[0001] Reference: name=refs/heads/push-test sha=0a557e678cfa1e8fb5baa3ed063f2a217d0c6d0a
DEBU[0001] Reference: name=refs/heads/side-stepping-tests sha=ff066f9bdb888b12157da5917a67d3262594e463
DEBU[0001] Reference: name=refs/heads/symbolic-foot-positioning sha=bf8cb2d4cbe28c3028ef9a0c799793fce2b40563
DEBU[0001] Reference: name=refs/heads/threaded-lift-off-pos sha=795058b0505ec21689dba2f659623870d3460c25
DEBU[0001] Reference: name=refs/heads/turning-in-place sha=417541ed1413a1143bd488dcbee983ad2a6fa5d1
DEBU[0001] Reference: name=refs/heads/upper-hip-removed sha=c7adcb1251ef7a36b29a7ad7c5a3b2cbaacfb46d
DEBU[0001] Reference: name=refs/heads/waltz sha=e93df1141cc10d580b9567bb8dae47ad563d64ac
DEBU[0001] Reference: name=refs/heads/web-ui sha=e36e043298b78356a6ec3188f585fa01e3536c96
DEBU[0001] Reference: name=refs/remotes/origin/HEAD sha=0000000000000000000000000000000000000000
DEBU[0001] Reference: name=refs/remotes/origin/asynchronous-logging sha=7e6423a0f8a9ab05854d494d4412b421ac32a991
DEBU[0001] Reference: name=refs/remotes/origin/com-state-to-leg-threads sha=5760980b17d4fa48697467eb5218e20411704d2d
DEBU[0001] Reference: name=refs/remotes/origin/contact-planner-to-leg-thread sha=076e92f0c3c028f16ffb10829c9b396da1f57e9e
DEBU[0001] Reference: name=refs/remotes/origin/develop sha=57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0001] Reference: name=refs/remotes/origin/docker-base-image sha=b7fe9bbc786ffc3502f2e6bd38b828a5bfbc00c1
DEBU[0001] Reference: name=refs/remotes/origin/foot-trajectory-touchdown-state sha=4afb4cdae7c84c042242d562d588e085b4e14c9e
DEBU[0001] Reference: name=refs/remotes/origin/forward-vel-command sha=88ecb88e192ad696a7a8197cef0bae3489663f25
DEBU[0001] Reference: name=refs/remotes/origin/github-actions-test sha=e948c931769d4870639ba4352f5dc331bc54f133
DEBU[0001] Reference: name=refs/remotes/origin/graceful-exit sha=356409da7f53e74a3608d32648631805833e0740
DEBU[0001] Reference: name=refs/remotes/origin/master sha=78ccf90620eaa5536740bf5118c99a9b309b9d0f
DEBU[0001] Reference: name=refs/remotes/origin/phase-based-contact-planner sha=61d885327b6d77a459a8c2620afa92348ad62d32
DEBU[0001] Reference: name=refs/remotes/origin/symbolic-foot-positioning sha=bf8cb2d4cbe28c3028ef9a0c799793fce2b40563
DEBU[0001] Reference: name=refs/remotes/origin/threaded-lift-off-pos sha=795058b0505ec21689dba2f659623870d3460c25
DEBU[0001] Reference: name=refs/remotes/origin/turning-in-place sha=417541ed1413a1143bd488dcbee983ad2a6fa5d1
DEBU[0001] Reference: name=refs/remotes/origin/upper-hip-removed sha=c7adcb1251ef7a36b29a7ad7c5a3b2cbaacfb46d
DEBU[0001] Reference: name=refs/remotes/origin/web-ui sha=e36e043298b78356a6ec3188f585fa01e3536c96
DEBU[0001] Reference: name=refs/stash sha=2dd1e0937d3371ac8e6ae37616a422f8a394efa2
DEBU[0001] Reference: name=HEAD sha=0000000000000000000000000000000000000000
DEBU[0001] using github ref: refs/heads/develop
DEBU[0001] Loading slug from git directory '/home/loukas/dev/walking_controller/.git'
DEBU[0001] Found revision: 57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0001] Loading revision from git directory '/home/loukas/dev/walking_controller/.git'
DEBU[0001] Found revision: 57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0001] HEAD points to '57f0769039dae87eef064787c73b9afa62b11ee6'
DEBU[0001] Reference: name=refs/heads/asynchronous-logging sha=7e6423a0f8a9ab05854d494d4412b421ac32a991
DEBU[0001] Reference: name=refs/heads/com-state-to-leg-threads sha=5760980b17d4fa48697467eb5218e20411704d2d
DEBU[0001] Reference: name=refs/heads/contact-planner-to-leg-thread sha=076e92f0c3c028f16ffb10829c9b396da1f57e9e
DEBU[0001] Reference: name=refs/heads/develop sha=57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0001] Reference: name=refs/heads/docker-base-image sha=b7fe9bbc786ffc3502f2e6bd38b828a5bfbc00c1
DEBU[0001] Reference: name=refs/heads/foot-trajectory-touchdown-state sha=4afb4cdae7c84c042242d562d588e085b4e14c9e
DEBU[0001] Reference: name=refs/heads/forward-vel-command sha=88ecb88e192ad696a7a8197cef0bae3489663f25
DEBU[0001] Reference: name=refs/heads/github-actions sha=0fa57893262ff833b586922ce4c65bf601aa20fd
DEBU[0001] Reference: name=refs/heads/graceful-exit sha=356409da7f53e74a3608d32648631805833e0740
DEBU[0001] Reference: name=refs/heads/master sha=78ccf90620eaa5536740bf5118c99a9b309b9d0f
DEBU[0001] Reference: name=refs/heads/phase-based-contact-planner sha=61d885327b6d77a459a8c2620afa92348ad62d32
DEBU[0001] Reference: name=refs/heads/push-test sha=0a557e678cfa1e8fb5baa3ed063f2a217d0c6d0a
DEBU[0001] Reference: name=refs/heads/side-stepping-tests sha=ff066f9bdb888b12157da5917a67d3262594e463
DEBU[0001] Reference: name=refs/heads/symbolic-foot-positioning sha=bf8cb2d4cbe28c3028ef9a0c799793fce2b40563
DEBU[0001] Reference: name=refs/heads/threaded-lift-off-pos sha=795058b0505ec21689dba2f659623870d3460c25
DEBU[0001] Reference: name=refs/heads/turning-in-place sha=417541ed1413a1143bd488dcbee983ad2a6fa5d1
DEBU[0001] Reference: name=refs/heads/upper-hip-removed sha=c7adcb1251ef7a36b29a7ad7c5a3b2cbaacfb46d
DEBU[0001] Reference: name=refs/heads/waltz sha=e93df1141cc10d580b9567bb8dae47ad563d64ac
DEBU[0001] Reference: name=refs/heads/web-ui sha=e36e043298b78356a6ec3188f585fa01e3536c96
DEBU[0001] Reference: name=refs/remotes/origin/HEAD sha=0000000000000000000000000000000000000000
DEBU[0001] Reference: name=refs/remotes/origin/asynchronous-logging sha=7e6423a0f8a9ab05854d494d4412b421ac32a991
DEBU[0001] Reference: name=refs/remotes/origin/com-state-to-leg-threads sha=5760980b17d4fa48697467eb5218e20411704d2d
DEBU[0001] Reference: name=refs/remotes/origin/contact-planner-to-leg-thread sha=076e92f0c3c028f16ffb10829c9b396da1f57e9e
DEBU[0001] Reference: name=refs/remotes/origin/develop sha=57f0769039dae87eef064787c73b9afa62b11ee6
DEBU[0001] Reference: name=refs/remotes/origin/docker-base-image sha=b7fe9bbc786ffc3502f2e6bd38b828a5bfbc00c1
DEBU[0001] Reference: name=refs/remotes/origin/foot-trajectory-touchdown-state sha=4afb4cdae7c84c042242d562d588e085b4e14c9e
DEBU[0001] Reference: name=refs/remotes/origin/forward-vel-command sha=88ecb88e192ad696a7a8197cef0bae3489663f25
DEBU[0001] Reference: name=refs/remotes/origin/github-actions-test sha=e948c931769d4870639ba4352f5dc331bc54f133
DEBU[0001] Reference: name=refs/remotes/origin/graceful-exit sha=356409da7f53e74a3608d32648631805833e0740
DEBU[0001] Reference: name=refs/remotes/origin/master sha=78ccf90620eaa5536740bf5118c99a9b309b9d0f
DEBU[0001] Reference: name=refs/remotes/origin/phase-based-contact-planner sha=61d885327b6d77a459a8c2620afa92348ad62d32
DEBU[0001] Reference: name=refs/remotes/origin/symbolic-foot-positioning sha=bf8cb2d4cbe28c3028ef9a0c799793fce2b40563
DEBU[0001] Reference: name=refs/remotes/origin/threaded-lift-off-pos sha=795058b0505ec21689dba2f659623870d3460c25
DEBU[0001] Reference: name=refs/remotes/origin/turning-in-place sha=417541ed1413a1143bd488dcbee983ad2a6fa5d1
DEBU[0001] Reference: name=refs/remotes/origin/upper-hip-removed sha=c7adcb1251ef7a36b29a7ad7c5a3b2cbaacfb46d
DEBU[0001] Reference: name=refs/remotes/origin/web-ui sha=e36e043298b78356a6ec3188f585fa01e3536c96
DEBU[0001] Reference: name=refs/stash sha=2dd1e0937d3371ac8e6ae37616a422f8a394efa2
DEBU[0001] Reference: name=HEAD sha=0000000000000000000000000000000000000000
DEBU[0001] using github ref: refs/heads/develop
DEBU[0001] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BUILD:dev CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DOTNET_MULTILEVEL_LOOKUP:"0" DOTNET_NOLOGO:"1" DOTNET_SKIP_FIRST_TIME_EXPERIENCE:"1" GECKOWEBDRIVER:/usr/local/share/gecko_driver GOROOT:/opt/hostedtoolcache/go/1.14.13/x64 GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.13/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.6/x64 GRADLE_HOME:/usr/share/gradle HELPER_SCRIPTS:/imagegeneration/helpers HOMEBREW_CELLAR:"/home/linuxbrew/.linuxbrew/Cellar" HOMEBREW_PREFIX:"/home/linuxbrew/.linuxbrew" HOMEBREW_REPOSITORY:"/home/linuxbrew/.linuxbrew/Homebrew" IMAGEDATA_FILE:/imagegeneration/imagedata.json IMAGE_FOLDER:/imagegeneration INSTALLER_SCRIPT_FOLDER:/imagegeneration/installers ImageOS:ubuntu20 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.5-standalone.jar LSB_RELEASE:20.04 M2_HOME:/usr/share/apache-maven-3.6.3 OSVERSION:2004 OS_VERSION:20.04 PATH:/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin:/opt/pipx_bin:/usr/share/rust/.cargo/bin:/home/runner/.config/composer/vendor/bin:/home/runner/.dotnet/tools:/snap/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin PIPX_BIN_DIR:"/opt/pipx_bin" PIPX_HOME:"/opt/pipx" RUNNER_TEMP:/home/runner/work/_temp RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg]
DEBU[0001] context env => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BUILD:dev CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DOTNET_MULTILEVEL_LOOKUP:"0" DOTNET_NOLOGO:"1" DOTNET_SKIP_FIRST_TIME_EXPERIENCE:"1" GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:run_controller GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:LouKordos/walking_controller GITHUB_REPOSITORY_OWNER:LouKordos GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:57f0769039dae87eef064787c73b9afa62b11ee6 GITHUB_TOKEN: GITHUB_WORKFLOW:Stable stepping in place for 30s in Gazebo Bullet GITHUB_WORKSPACE:/home/loukas/dev/walking_controller GOROOT:/opt/hostedtoolcache/go/1.14.13/x64 GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.13/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.6/x64 GRADLE_HOME:/usr/share/gradle HELPER_SCRIPTS:/imagegeneration/helpers HOMEBREW_CELLAR:"/home/linuxbrew/.linuxbrew/Cellar" HOMEBREW_PREFIX:"/home/linuxbrew/.linuxbrew" HOMEBREW_REPOSITORY:"/home/linuxbrew/.linuxbrew/Homebrew" IMAGEDATA_FILE:/imagegeneration/imagedata.json IMAGE_FOLDER:/imagegeneration INSTALLER_SCRIPT_FOLDER:/imagegeneration/installers ImageOS:ubuntu20.04 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.5-standalone.jar LSB_RELEASE:20.04 M2_HOME:/usr/share/apache-maven-3.6.3 OSVERSION:2004 OS_VERSION:20.04 PATH:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:"/opt/pipx_bin" PIPX_HOME:"/opt/pipx" RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg]
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] setupEnv => map[ACT:true AGENT_TOOLSDIRECTORY:/opt/hostedtoolcache ANDROID_HOME:/usr/local/lib/android/sdk ANDROID_SDK_ROOT:/usr/local/lib/android/sdk ANT_HOME:/usr/share/ant AZURE_EXTENSION_DIR:/opt/az/azcliextensions BUILD:dev CHROMEWEBDRIVER:/usr/local/share/chrome_driver CHROME_BIN:/usr/bin/google-chrome CI:true CONDA:/usr/share/miniconda DEBIAN_FRONTEND:noninteractive DOTNET_MULTILEVEL_LOOKUP:"0" DOTNET_NOLOGO:"1" DOTNET_SKIP_FIRST_TIME_EXPERIENCE:"1" GECKOWEBDRIVER:/usr/local/share/gecko_driver GITHUB_ACTION:1 GITHUB_ACTIONS:true GITHUB_ACTION_REF: GITHUB_ACTION_REPOSITORY: GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_BASE_REF: GITHUB_ENV:/var/run/act/workflow/envs.txt 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:run_controller GITHUB_PATH:/var/run/act/workflow/paths.txt GITHUB_REF:refs/heads/develop GITHUB_REPOSITORY:LouKordos/walking_controller GITHUB_REPOSITORY_OWNER:LouKordos GITHUB_RETENTION_DAYS:0 GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:57f0769039dae87eef064787c73b9afa62b11ee6 GITHUB_TOKEN: GITHUB_WORKFLOW:Stable stepping in place for 30s in Gazebo Bullet GITHUB_WORKSPACE:/home/loukas/dev/walking_controller GOROOT:/opt/hostedtoolcache/go/1.14.13/x64 GOROOT_1_14_X64:/opt/hostedtoolcache/go/1.14.13/x64 GOROOT_1_15_X64:/opt/hostedtoolcache/go/1.15.6/x64 GRADLE_HOME:/usr/share/gradle HELPER_SCRIPTS:/imagegeneration/helpers HOMEBREW_CELLAR:"/home/linuxbrew/.linuxbrew/Cellar" HOMEBREW_PREFIX:"/home/linuxbrew/.linuxbrew" HOMEBREW_REPOSITORY:"/home/linuxbrew/.linuxbrew/Homebrew" IMAGEDATA_FILE:/imagegeneration/imagedata.json IMAGE_FOLDER:/imagegeneration INSTALLER_SCRIPT_FOLDER:/imagegeneration/installers ImageOS:ubuntu20.04 ImageVersion:dev JAVA_HOME:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_11_X64:/usr/lib/jvm/adoptopenjdk-11-hotspot-amd64 JAVA_HOME_8_X64:/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64 LEIN_HOME:/usr/local/lib/lein LEIN_JAR:/usr/local/lib/lein/self-installs/leiningen-2.9.5-standalone.jar LSB_RELEASE:20.04 M2_HOME:/usr/share/apache-maven-3.6.3 OSVERSION:2004 OS_VERSION:20.04 PATH:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin PIPX_BIN_DIR:"/opt/pipx_bin" PIPX_HOME:"/opt/pipx" RUNNER_PERFLOG:/dev/null RUNNER_TEMP:/home/runner/work/_temp RUNNER_TRACKING_ID: RUNNER_USER:runner RUN_TOOL_CACHE:/opt/hostedtoolcache SELENIUM_JAR_PATH:/usr/share/java/selenium-server-standalone.jar SWIFT_PATH:/usr/share/swift/usr/bin VCPKG_INSTALLATION_ROOT:/usr/local/share/vcpkg]
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] ⭐ Run time docker build -t loukordos/walking-controller:develop-ubuntu -f Dockerfile.ubuntu .
DEBU[0001] Wrote command '
time docker build -t loukordos/walking-controller:develop-ubuntu -f Dockerfile.ubuntu .
' to 'workflow/1'
DEBU[0001] Writing entry to tarball workflow/1 len:87
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] Extracting content to '/home/loukas/dev/walking_controller'
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] 🐳 docker exec cmd=[bash --noprofile --norc -e -o pipefail /home/loukas/dev/walking_controller/workflow/1] user=
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] Exec command '[bash --noprofile --norc -e -o pipefail /home/loukas/dev/walking_controller/workflow/1]'
| ERRO[0000] failed to dial gRPC: cannot connect to the Docker daemon. Is 'docker daemon' running on this host?: dial unix /var/run/docker.sock: connect: permission denied
| Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Post http://%2Fvar%2Frun%2Fdocker.sock/v1.40/build?buildargs=%7B%7D&cachefrom=%5B%5D&cgroupparent=&cpuperiod=0&cpuquota=0&cpusetcpus=&cpusetmems=&cpushares=0&dockerfile=Dockerfile.ubuntu&labels=%7B%7D&memory=0&memswap=0&networkmode=default&rm=1&session=nx04cpy3ryahto7lvrerbsbs5&shmsize=0&t=loukordos%2Fwalking-controller%3Adevelop-ubuntu&target=&ulimits=null&version=1: dial unix /var/run/docker.sock: connect: permission denied
|
| real 0m0.086s
| user 0m0.029s
| sys 0m0.027s
[Stable stepping in place for 30s in Gazebo Bullet/run_controller] ❌ Failure - time docker build -t loukordos/walking-controller:develop-ubuntu -f Dockerfile.ubuntu .
DEBU[0001] exit with `FAILURE`: 1
DEBU[0001] exit with `FAILURE`: 1
DEBU[0001] exit with `FAILURE`: 1
DEBU[0001] exit with `FAILURE`: 1
DEBU[0001] exit with `FAILURE`: 1
DEBU[0001] exit with `FAILURE`: 1
DEBU[0001] exit with `FAILURE`: 1
DEBU[0001] exit with `FAILURE`: 1
DEBU[0001] exit with `FAILURE`: 1
DEBU[0001] exit with `FAILURE`: 1
DEBU[0001] exit with `FAILURE`: 1
DEBU[0001] exit with `FAILURE`: 1
DEBU[0001] exit with `FAILURE`: 1
DEBU[0001] exit with `FAILURE`: 1
DEBU[0001] exit with `FAILURE`: 1
Error: exit with `FAILURE`: 1
```
</details>
| https://github.com/nektos/act/issues/724 | https://github.com/nektos/act/pull/2181 | 6e80373eb6a2e87dc228431a7d26c32fa8b4bae9 | f2e65e1d406255cad05b562138758b73219fa74d | "2021-06-06T08:55:32Z" | go | "2024-02-06T17:18:11Z" |
closed | nektos/act | https://github.com/nektos/act | 718 | ["go.mod", "go.sum"] | Issue: act allows ternary operator in expression | ## Act version
```none
act version 0.2.20
```
## Expected behaviour
`act` shouldn't allow ternary operator syntax inside of an expression
Reference: https://github.community/t/do-expressions-support-ternary-operators-to-change-their-returned-value/18114
## Actual behaviour
`act` does allow ternary operator syntax inside of an expression, and it fails when run as a github action
## Workflow and/or repository
<details>
<summary>workflow</summary>
```none
name: CI
on:
workflow_dispatch:
inputs:
arg1:
description: "hello"
required: true
arg2:
description: "goodbye"
required: false
default: "null"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: nice-test
run: |
echo "arg1 = ${{ 1 == 2 ? 'yes' : 'no' }}"
```
</details>
## Steps to reproduce
```
act -j test
```
## `act` output
<details>
<summary>Log</summary>
```none
DEBU[0000] Loading environment from /home/inno/scratch/docker/github-actions-demo/.env
DEBU[0000] Loading secrets from /home/inno/scratch/docker/github-actions-demo/.secrets
DEBU[0000] Loading workflows from '/home/inno/scratch/docker/github-actions-demo/.github/workflows'
DEBU[0000] Reading workflow '/home/inno/scratch/docker/github-actions-demo/.github/workflows/main.yml'
DEBU[0000] Planning job: test
DEBU[0000] Loading slug from git directory '/home/inno/scratch/docker/github-actions-demo/.git'
DEBU[0000] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0000] Loading revision from git directory '/home/inno/scratch/docker/github-actions-demo/.git'
DEBU[0000] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0000] HEAD points to '5c6f585b1f9d8526c8e1672c5f8f00883b895d93'
DEBU[0000] HEAD matches refs/heads/master
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] context env => map[ACT:true]
[CI/test] 🚀 Start image=catthehacker/ubuntu:act-latest
DEBU[0000] Loading slug from git directory '/home/inno/scratch/docker/github-actions-demo/.git'
DEBU[0000] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0000] Loading revision from git directory '/home/inno/scratch/docker/github-actions-demo/.git'
DEBU[0000] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0000] HEAD points to '5c6f585b1f9d8526c8e1672c5f8f00883b895d93'
DEBU[0000] HEAD matches refs/heads/master
DEBU[0000] using github ref: refs/heads/master
[CI/test] 🐳 docker pull catthehacker/ubuntu:act-latest
DEBU[0000] Image exists? true
[CI/test] 🐳 docker create image=catthehacker/ubuntu:act-latest entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[CI/test] Created container name=act-CI-test id=05ad9157c88abbf132945c31adf49b570bc150ea67849c59e736ade34f7dfc72 from image catthehacker/ubuntu:act-latest
[CI/test] ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_TEMP=/tmp]
[CI/test] 🐳 docker run image=catthehacker/ubuntu:act-latest entrypoint=["/usr/bin/tail" "-f" "/dev/null"] cmd=[]
[CI/test] Starting container: 05ad9157c88abbf132945c31adf49b570bc150ea67849c59e736ade34f7dfc72
[CI/test] Started container: 05ad9157c88abbf132945c31adf49b570bc150ea67849c59e736ade34f7dfc72
DEBU[0000] Writing entry to tarball workflow/event.json len:2
DEBU[0000] Writing entry to tarball workflow/envs.txt len:0
DEBU[0000] Writing entry to tarball home/.act len:0
[CI/test] Extracting content to '/github/'
DEBU[0000] Loading slug from git directory '/home/inno/scratch/docker/github-actions-demo/.git'
DEBU[0000] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0000] Loading revision from git directory '/home/inno/scratch/docker/github-actions-demo/.git'
DEBU[0000] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0000] HEAD points to '5c6f585b1f9d8526c8e1672c5f8f00883b895d93'
DEBU[0000] HEAD matches refs/heads/master
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] Loading slug from git directory '/home/inno/scratch/docker/github-actions-demo/.git'
DEBU[0000] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0000] Loading revision from git directory '/home/inno/scratch/docker/github-actions-demo/.git'
DEBU[0000] Found revision: 5c6f585b1f9d8526c8e1672c5f8f00883b895d93
DEBU[0000] HEAD points to '5c6f585b1f9d8526c8e1672c5f8f00883b895d93'
DEBU[0000] HEAD matches refs/heads/master
DEBU[0000] using github ref: refs/heads/master
DEBU[0000] context env => map[ACT:true]
DEBU[0000] context env => map[ACT:true CI:true GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_ENV:/github/workflow/envs.txt GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/github/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_REF:refs/heads/master GITHUB_REPOSITORY:cplee/github-actions-demo GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:5c6f585b1f9d8526c8e1672c5f8f00883b895d93 GITHUB_TOKEN: GITHUB_WORKFLOW:CI GITHUB_WORKSPACE:/github/workspace HOME:/github/home]
DEBU[0000] setupEnv: map[ACT:true CI:true GITHUB_ACTION:0 GITHUB_ACTIONS:true GITHUB_ACTOR:nektos/act GITHUB_API_URL:https://api.github.com GITHUB_ENV:/github/workflow/envs.txt GITHUB_EVENT_NAME:push GITHUB_EVENT_PATH:/github/workflow/event.json GITHUB_GRAPHQL_URL:https://api.github.com/graphql GITHUB_REF:refs/heads/master GITHUB_REPOSITORY:cplee/github-actions-demo GITHUB_RUN_ID:1 GITHUB_RUN_NUMBER:1 GITHUB_SERVER_URL:https://github.com GITHUB_SHA:5c6f585b1f9d8526c8e1672c5f8f00883b895d93 GITHUB_TOKEN: GITHUB_WORKFLOW:CI GITHUB_WORKSPACE:/github/workspace HOME:/github/home]
[CI/test] ⭐ Run nice-test
DEBU[0000] Wrote command 'echo "arg1 = no"
' to 'workflow/0'
DEBU[0000] Writing entry to tarball workflow/0 len:17
[CI/test] Extracting content to '/github/'
[CI/test] Exec command '[bash --noprofile --norc -eo pipefail /github/workflow/0]'
| arg1 = no
[CI/test] ✅ Success - nice-test
[CI/test] Removed container: 05ad9157c88abbf132945c31adf49b570bc150ea67849c59e736ade34f7dfc72
[CI/test] 🐳 docker volume rm act-CI-test```
</details>
| https://github.com/nektos/act/issues/718 | https://github.com/nektos/act/pull/1830 | 481999f59da465d2d8743fd3d97e24bb6e1a2311 | b0996e057750223a14321ff92c1c6d6fbb8e1a10 | "2021-06-03T01:25:52Z" | go | "2023-05-29T03:35:06Z" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.