Skip to content

Choose a tag to compare

@volodymyrZotov volodymyrZotov released this 14 Aug 17:37
· 26 commits to main since this release
v3.0.0
13f58ee

What's Changed

🔴 Breaking change

  • Set export-env input to false by default by @volodymyrZotov in #114
    If you want export secrets as env variables you should update your workflows and explicitly set export-env: true aka
      - name: Load secret
        uses: 1password/load-secrets-action@v3
        with:
          # Export loaded secrets as environment variables
          export-env: true
        env:
          OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}
          SECRET: op://app-cicd/hello-world/secret

      - name: Print masked secret
        run: 'echo "Secret: $SECRET"'
        # Prints: Secret: ***

🚀 Features

🔒 Security

Full Changelog: v2...v3.0.0