Run 1password/load-secrets-action@main
Authenticated with Service account.
Validating version number: ''
Error: Invalid Version:
Then the action fails. All my workflows stopped worked, everything worked yesterday so it's a recent commit to the main branch that broke this.
It was a risk I ran by using @main and not @v2 but it's been quite nice/stable up until today. I will go ahead and "fix" this by using @v2 for now but I wanted to let you know that something in the main branch is 'broken'.
This is the tasks snippet from my workflow file:
- name: Load needed secrets from 1Password
id: onepass_secrets
uses: 1password/load-secrets-action@main
with:
# Export loaded secrets as environment variables
export-env: false
env:
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}
GCLOUD_SERVICE_KEY: op://infrastructure/gcp_service_accounts/ghactions_withvector-infrastructure
SLACK_BOT_TOKEN: op://infrastructure/slack_access/githubaction_botuser_oauthtoken
Then the action fails. All my workflows stopped worked, everything worked yesterday so it's a recent commit to the main branch that broke this.
It was a risk I ran by using @main and not @v2 but it's been quite nice/stable up until today. I will go ahead and "fix" this by using @v2 for now but I wanted to let you know that something in the main branch is 'broken'.
This is the tasks snippet from my workflow file: