Skip to content

Commit

Permalink
fix(publishing): Use actions/checkout@v2 when publishing packages (#9476
Browse files Browse the repository at this point in the history
)
  • Loading branch information
christopherthielen committed Jul 19, 2021
1 parent fc3ef81 commit 8fee05d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/package-bump-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: git - configure commit user
run: |
git config user.name spinnakerbot
git config user.email spinnakerbot@spinanker.io
git config user.email spinnakerbot@spinnaker.io
- uses: actions/setup-node@v1
name: node - setup
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Use Node.js 12.16.0
uses: actions/setup-node@v1
with:
Expand All @@ -21,7 +24,7 @@ jobs:
- name: git - configure commit user
run: |
git config user.name spinnakerbot
git config user.email spinnakerbot@spinanker.io
git config user.email spinnakerbot@spinnaker.io
- name: publish packages to npm
run: |
Expand Down

0 comments on commit 8fee05d

Please sign in to comment.