Skip to content

Commit

Permalink
chore: CI should use [email protected] (#205)
Browse files Browse the repository at this point in the history
  • Loading branch information
purplecabbage authored Oct 20, 2022
1 parent d2bc80d commit c324a4b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion generators/add-ci/.github/workflows/deploy_prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
uses: adobe/[email protected]
with:
os: ${{ matrix.os }}
version: 8.x.x
version: 9.x.x
- name: Auth
uses: adobe/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion generators/add-ci/.github/workflows/deploy_stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
uses: adobe/[email protected]
with:
os: ${{ matrix.os }}
version: 8.x.x
version: 9.x.x
- name: Auth
uses: adobe/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion generators/add-ci/.github/workflows/pr_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: adobe/[email protected]
with:
os: ${{ matrix.os }}
version: 8.x.x
version: 9.x.x
- name: Auth
uses: adobe/[email protected]
with:
Expand Down
6 changes: 3 additions & 3 deletions test/generators/add-ci/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ describe('run', () => {

// added files
assert.file('.github/workflows/pr_test.yml')
assert.fileContent('.github/workflows/pr_test.yml', 'version: 8.x.x')
assert.fileContent('.github/workflows/pr_test.yml', 'version: 9.x.x')
assert.fileContent('.github/workflows/pr_test.yml', 'adobe/[email protected]')
assert.file('.github/workflows/deploy_prod.yml')
assert.fileContent('.github/workflows/deploy_prod.yml', 'version: 8.x.x')
assert.fileContent('.github/workflows/deploy_prod.yml', 'version: 9.x.x')
assert.fileContent('.github/workflows/deploy_prod.yml', 'adobe/[email protected]')
assert.file('.github/workflows/deploy_stage.yml')
assert.fileContent('.github/workflows/deploy_stage.yml', 'version: 8.x.x')
assert.fileContent('.github/workflows/deploy_stage.yml', 'version: 9.x.x')
assert.fileContent('.github/workflows/deploy_stage.yml', 'adobe/[email protected]')
})
})

0 comments on commit c324a4b

Please sign in to comment.