Compare commits
10 Commits
vzt/rename
...
vzt/update
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
551f03ee9c | ||
|
|
2c12b97549 | ||
|
|
211132e91f | ||
|
|
13f58eec61 | ||
|
|
f9847b316a | ||
|
|
ee4b4919bf | ||
|
|
13f110716c | ||
|
|
93b787fdef | ||
|
|
cb2930c65f | ||
|
|
65a7f5e592 |
2
.github/workflows/ok-to-test.yml
vendored
2
.github/workflows/ok-to-test.yml
vendored
@@ -15,7 +15,7 @@ jobs:
|
|||||||
if: ${{ github.event.issue.pull_request }}
|
if: ${{ github.event.issue.pull_request }}
|
||||||
steps:
|
steps:
|
||||||
- name: Slash Command Dispatch
|
- name: Slash Command Dispatch
|
||||||
uses: peter-evans/slash-command-dispatch@v3
|
uses: peter-evans/slash-command-dispatch@v4
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
reaction-token: ${{ secrets.GITHUB_TOKEN }}
|
reaction-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Load secret
|
- name: Load secret
|
||||||
id: load_secret
|
id: load_secrets
|
||||||
uses: 1password/load-secrets-action@v3
|
uses: 1password/load-secrets-action@v3
|
||||||
env:
|
env:
|
||||||
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}
|
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }}
|
||||||
|
|||||||
6
dist/index.js
vendored
6
dist/index.js
vendored
@@ -34870,7 +34870,9 @@ const version_1 = __nccwpck_require__(8950);
|
|||||||
const cli_installer_1 = __nccwpck_require__(2846);
|
const cli_installer_1 = __nccwpck_require__(2846);
|
||||||
// Installs the 1Password CLI on a GitHub Action runner.
|
// Installs the 1Password CLI on a GitHub Action runner.
|
||||||
const installCliOnGithubActionRunner = async (version) => {
|
const installCliOnGithubActionRunner = async (version) => {
|
||||||
const versionResolver = new version_1.VersionResolver(version ?? core.getInput("version"));
|
// Get the version from parameter, if not passed - from the job input. Defaults to latest if no version is provided
|
||||||
|
const providedVersion = version || core.getInput("version") || version_1.ReleaseChannel.latest;
|
||||||
|
const versionResolver = new version_1.VersionResolver(providedVersion);
|
||||||
await versionResolver.resolve();
|
await versionResolver.resolve();
|
||||||
const installer = (0, cli_installer_1.newCliInstaller)(versionResolver.get());
|
const installer = (0, cli_installer_1.newCliInstaller)(versionResolver.get());
|
||||||
await installer.installCli();
|
await installer.installCli();
|
||||||
@@ -35164,7 +35166,7 @@ var op_cli_installer_dist = __nccwpck_require__(1621);
|
|||||||
// EXTERNAL MODULE: ./node_modules/@actions/exec/lib/exec.js
|
// EXTERNAL MODULE: ./node_modules/@actions/exec/lib/exec.js
|
||||||
var exec = __nccwpck_require__(5236);
|
var exec = __nccwpck_require__(5236);
|
||||||
;// CONCATENATED MODULE: ./package.json
|
;// CONCATENATED MODULE: ./package.json
|
||||||
const package_namespaceObject = {"rE":"2.0.0"};
|
const package_namespaceObject = {"rE":"3.0.0"};
|
||||||
;// CONCATENATED MODULE: ./src/constants.ts
|
;// CONCATENATED MODULE: ./src/constants.ts
|
||||||
const envConnectHost = "OP_CONNECT_HOST";
|
const envConnectHost = "OP_CONNECT_HOST";
|
||||||
const envConnectToken = "OP_CONNECT_TOKEN";
|
const envConnectToken = "OP_CONNECT_TOKEN";
|
||||||
|
|||||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "load-secrets-action",
|
"name": "load-secrets-action",
|
||||||
"version": "2.0.0",
|
"version": "3.0.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "load-secrets-action",
|
"name": "load-secrets-action",
|
||||||
"version": "2.0.0",
|
"version": "3.0.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@1password/op-js": "^0.1.11",
|
"@1password/op-js": "^0.1.11",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "load-secrets-action",
|
"name": "load-secrets-action",
|
||||||
"version": "2.0.0",
|
"version": "3.0.0",
|
||||||
"description": "Load Secrets from 1Password",
|
"description": "Load Secrets from 1Password",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
"directories": {
|
"directories": {
|
||||||
|
|||||||
Reference in New Issue
Block a user