Skip to content

Commit

Permalink
feat: Update runtime for action from Node 12 to 16
Browse files Browse the repository at this point in the history
  • Loading branch information
bryantbiggs committed Nov 21, 2022
1 parent e0c01e2 commit 3d475e8
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
4 changes: 2 additions & 2 deletions awscli/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ outputs:
description: 'Output returned from awscli command'

runs:
using: 'node12'
main: 'dist/index.js'
using: node16
main: dist/index.js
6 changes: 4 additions & 2 deletions cloudfront_invalidate/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@ inputs:
use either mutline string or comma delimited
required: false
default: '/*'

outputs:
invalidation-id:
description: 'The identifier for the invalidation request'

runs:
using: 'node12'
main: 'dist/index.js'
using: node16
main: dist/index.js
6 changes: 4 additions & 2 deletions iam_access_credentials/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,11 @@ inputs:
A unique identifier that might be required when you assume
a role in another account
required: false

outputs:
aws-account-id:
description: 'The AWS account ID for the provided credentials'

runs:
using: 'node12'
main: 'dist/index.js'
using: node16
main: dist/index.js
5 changes: 3 additions & 2 deletions s3_sync/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ inputs:
Reference - https://docs.aws.amazon.com/cli/latest/reference/s3/sync.html#synopsis
required: false
default: ''

runs:
using: 'node12'
main: 'dist/index.js'
using: node16
main: dist/index.js

0 comments on commit 3d475e8

Please sign in to comment.