Skip to content

Commit

Permalink
Avoid use branch for example workflows (#1231)
Browse files Browse the repository at this point in the history
  • Loading branch information
ad-m authored Nov 16, 2020
1 parent 3d0d13d commit a6f2e68
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ steps:
uses: monacorp/action-name@main
- name: My backup step
if: {% raw %}${{ failure() }}{% endraw %}
uses: actions/heroku@master
uses: actions/heroku@1.0.0
```

#### **`jobs.<job_id>.steps.name`**
Expand Down Expand Up @@ -492,7 +492,7 @@ jobs:
steps:
- name: My first step
# Uses the default branch of a public repository
uses: actions/heroku@master
uses: actions/heroku@1.0.0
- name: My second step
# Uses a specific version tag of a public repository
uses: actions/aws@v2.0.1
Expand Down

0 comments on commit a6f2e68

Please sign in to comment.