Skip to content

Commit

Permalink
chore: upgrade nodejs version
Browse files Browse the repository at this point in the history
  • Loading branch information
coquer committed Apr 8, 2024
1 parent 60062c3 commit 29f3c08
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Setup node.js
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
cache: yarn

- name: Install dependencies
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Setup node.js
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
cache: yarn

- name: Install dependencies
Expand All @@ -57,7 +57,7 @@ jobs:
- name: Setup node.js
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
cache: yarn

- name: Install dependencies
Expand All @@ -84,7 +84,7 @@ jobs:
- name: Setup node.js
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
cache: yarn

- name: Install dependencies
Expand All @@ -107,7 +107,7 @@ jobs:
- name: Setup node.js
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
cache: yarn

- name: Install dependencies
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup node.js
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
cache: yarn

- name: Install dependencies
Expand All @@ -35,7 +35,7 @@ jobs:
- name: Setup node.js
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
cache: yarn

- name: Install dependencies
Expand All @@ -55,7 +55,7 @@ jobs:
- name: Setup node.js
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
cache: yarn

- name: Install dependencies
Expand All @@ -81,7 +81,7 @@ jobs:
- name: Setup node.js
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
cache: yarn

- name: Install dependencies
Expand Down
24 changes: 12 additions & 12 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
name: 'aws-secrets-manager-actions'
description: 'GitHub Actions for AWS Secrets Manager'
name: "aws-secrets-manager-actions"
description: "GitHub Actions for AWS Secrets Manager"
inputs:
SECRET_NAME:
description: 'Set secret name that you want to get.'
description: "Set secret name that you want to get."
required: true
AWS_ACCESS_KEY_ID:
description: 'Set Aws Access Key ID'
description: "Set Aws Access Key ID"
required: false
AWS_SECRET_ACCESS_KEY:
description: 'Set Aws Secret access Key'
description: "Set Aws Secret access Key"
required: false
AWS_SESSION_TOKEN:
description: 'Set Aws Session token Key'
description: "Set Aws Session token Key"
required: false
AWS_DEFAULT_REGION:
description: 'Set Aws default region'
description: "Set Aws default region"
required: false
OUTPUT_PATH:
description: 'Set output file where variables are write'
description: "Set output file where variables are write"
required: false
runs:
using: 'node16'
main: 'dist/index.js'
using: "node20"
main: "dist/index.js"
branding:
icon: 'lock'
color: 'orange'
icon: "lock"
color: "orange"

0 comments on commit 29f3c08

Please sign in to comment.