Skip to content

Commit

Permalink
Merge pull request #6 from daily-co/upgrade-node-16
Browse files Browse the repository at this point in the history
[ENG-6543]Upgrade to node 16
  • Loading branch information
counterleft authored Aug 17, 2023
2 parents be5bdff + 24b2f02 commit b1f6740
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Tag the deployment
uses: daily-co/create-tag-action@v1.0
uses: daily-co/create-tag-action@v1
with:
app-name: 'my-application'
environment: 'qa'
Expand Down
12 changes: 6 additions & 6 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 'Create Tag'
description: 'Creates tags in GitHub for deployments'
name: "Create Tag"
description: "Creates tags in GitHub for deployments"
inputs:
app-name:
description: 'Name of the app to include in tag, e.g. "dashboard"'
Expand All @@ -8,13 +8,13 @@ inputs:
description: 'Environment to which the deployment was made, e.g. "prod"'
required: true
github-token:
description: 'API token for GitHub REST API'
description: "API token for GitHub REST API"
required: true
outputs:
tag:
description: 'Final tag applied'
description: "Final tag applied"
runs:
using: 'node12'
using: "node16"
# 'main' below needs to be relative to repo root for testing with 'act'
# For running in GitHub, should be relative to 'action.yml' location
main: 'dist/index.js'
main: "dist/index.js"

0 comments on commit b1f6740

Please sign in to comment.