load-secrets-action
load-secrets-action copied to clipboard
Load secrets from 1Password into your GitHub Actions jobs
Bumps [undici](https://github.com/nodejs/undici) from 5.28.3 to 5.28.4. Release notes Sourced from undici's releases. v5.28.4 :warning: Security Release :warning: Fixes https://github.com/nodejs/undici/security/advisories/GHSA-m4v8-wqvr-p9f7 CVE-2024-30260 Fixes https://github.com/nodejs/undici/security/advisories/GHSA-9qxr-qj54-h672 CVE-2024-30261 Full Changelog: https://github.com/nodejs/undici/compare/v5.28.3...v5.28.4 Commits fb98306 Bumped v5.28.4...
Whats wrong with this? ```yaml - uses: 1password/load-secrets-action@v2 with: export-env: true env: OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }} ``` But all actions fall on this message `Authentication error with environment variables: you...
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: 1password/load-secrets-action@v1.
This is a draft PR demonstrating how we can use [semantic-release](https://semantic-release.gitbook.io/semantic-release) to automatically publish releases for this repository. ## How to Test 1. Clone this repo locally and `cd` into...
When using op to get an SSH private key and use it for CI/CD purposes i ran into this issue. `op read "op://some-vault/some-entry/private key?ssh-format=openssh" > /tmp/key.txt` there are windows line...
We're getting the following random error when using this action by paralel jobs: ``` Authenticated with SERVICE_ACCOUNT curl: (28) Failed to connect to cache.agilebits.com port 443 after 131105 ms: Connection...
Currently a 1password token is needed to be held in GitHub Actions as below: ``` OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }} ``` Can OIDC integration be implemented so the token can be...
Hello All, I'm trying to deploy a Laravel application with a environment file saved in our 1Password vault as a secure note. In our github action we would like to...
Hello! So far have been loving the 1password integration for GH Actions. I am running into an issue with the the action where is returns a connection refused error which...
Ideally use `service-account-token` as part input, so that these type configurations are documented under https://github.com/1Password/load-secrets-action/blob/main/action.yml ```yaml - name: Load 1Password Secrets uses: 1password/load-secrets-action@v1 with: export-env: true service-account-token: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}...