Rob Pomeroy
Rob Pomeroy
I've had what looks like an identical problem with a self-hosted Windows Server 2022 runner: ``` C:\Windows\system32\icacls.exe C:\actions-runner\_work\_temp\f637cea8-35b0-4dd3-b600-3d83bdbb9ac8 /grant:r DR\GH-RUNNER-WIN-1$:F DR\GH-RUNNER-WIN-1$: Successfully processed 0 files; Failed processing 1 files No...
You could use a "whoami" step to capture the running username and domain? In PowerShell you'd want `[System.Environment]::Domain` and `[System.Environment]::UserDomainName`.
@Gargaj 🤦 - sorry, I meant to mention `[System.Environment]::UserName`. So you'd need a step that did something like: ```YAML - name: Write username and domain name to environment variables run:...
FWIW I work for a small software house and am leading the process of adopting Semgrep. PowerShell support would be excellent. We're primarily C/C++/C#/Fortran, but use many of the scripting...
Similarly to @dhoogfr, I've attempted to specify a project directory, including through a `.ansible-lint` file in the playbook's root folder. I even lobbed in an extra var in the hope...
> @robpomeroy The extension does support multi-root workspace so you can try adding `project1` and `project2` folder at the root of the workspace using `Add folder to workspace` option and...
Subscribing, having encountered the same problem with https://www.actionfraud.police.uk/feed. ``` $ curl -v 'https://www.actionfraud.police.uk/feed' * Trying 104.16.250.7... * TCP_NODELAY set * Connected to www.actionfraud.police.uk (104.16.250.7) port 443 (#0) ... < HTTP/1.1...
My fix was to do the following, within the WSL distro: 1. Install PHP (I'm using AlmaLinux, so `dnf install -y php`). 2. [Install php-cs-fixer](https://github.com/FriendsOfPHP/PHP-CS-Fixer/blob/master/doc/installation.rst) under `/usr/bin`. i.e.: ```shell sudo...
PS As a workaround, I have changed my workflow to call Terraform from WSL rather than from Linux. That works, but it's less comfortable because I cannot use my USB...
That sounds plausible Martin. I have AWS calling [aws-vault](https://github.com/99designs/aws-vault) (and [ykman](https://docs.yubico.com/software/yubikey/tools/ykman/) for authentication and MFA. But this could be a red herring. I've been using Terraform/AWS/YubiKey successfully for years, but...