Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- uses: actions/checkout@v6

- name: "Setup Node Environment"
uses: braintree/web-sdk-github-actions/actions/setup-node@45ee569cf478259fa14e8f116136d6d6fd93f061
uses: braintree/web-sdk-github-actions/actions/setup-node@d08e2700fb9ffdfe87200621e25ad63e47014941
with:
cache: npm
node-version-file: ${{ inputs.node-version-file }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
ref: ${{ inputs.ref }}

- name: "Publish to npm"
uses: braintree/web-sdk-github-actions/actions/npm-publish@45ee569cf478259fa14e8f116136d6d6fd93f061
uses: braintree/web-sdk-github-actions/actions/npm-publish@d08e2700fb9ffdfe87200621e25ad63e47014941
with:
npm-token: ${{ secrets.npm-token }}
dry-run: ${{ inputs.dry-run }}
Expand All @@ -73,7 +73,7 @@ jobs:
ref: ${{ inputs.ref }}

- name: "Create release notes"
uses: braintree/web-sdk-github-actions/actions/release-notes@45ee569cf478259fa14e8f116136d6d6fd93f061
uses: braintree/web-sdk-github-actions/actions/release-notes@d08e2700fb9ffdfe87200621e25ad63e47014941
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
dry-run: ${{ inputs.dry-run }}
4 changes: 2 additions & 2 deletions .github/workflows/release-dry-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- uses: actions/checkout@v6

- name: "Setup Node Environment"
uses: braintree/web-sdk-github-actions/actions/setup-node@45ee569cf478259fa14e8f116136d6d6fd93f061
uses: braintree/web-sdk-github-actions/actions/setup-node@d08e2700fb9ffdfe87200621e25ad63e47014941
with:
cache: npm

Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
- uses: actions/checkout@v6

- name: "Publish to npm (dry run)"
uses: braintree/web-sdk-github-actions/actions/npm-publish@45ee569cf478259fa14e8f116136d6d6fd93f061
uses: braintree/web-sdk-github-actions/actions/npm-publish@d08e2700fb9ffdfe87200621e25ad63e47014941
with:
dry-run: "true"
npm-token: ${{ secrets.npm-token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:

- name: "Bump version"
id: bump
uses: braintree/web-sdk-github-actions/actions/version-bump@45ee569cf478259fa14e8f116136d6d6fd93f061
uses: braintree/web-sdk-github-actions/actions/version-bump@d08e2700fb9ffdfe87200621e25ad63e47014941
with:
Comment on lines 69 to 72
version-type: ${{ inputs.version-type }}
base-branch: ${{ inputs.base-branch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-scripts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v6

- name: "Setup Node Environment"
uses: braintree/web-sdk-github-actions/actions/setup-node@45ee569cf478259fa14e8f116136d6d6fd93f061
uses: braintree/web-sdk-github-actions/actions/setup-node@d08e2700fb9ffdfe87200621e25ad63e47014941
with:
cache: npm

Expand Down
2 changes: 1 addition & 1 deletion actions/npm-publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ runs:
using: "composite"
steps:
- name: "Setup Node Environment"
uses: braintree/web-sdk-github-actions/actions/setup-node@45ee569cf478259fa14e8f116136d6d6fd93f061
uses: braintree/web-sdk-github-actions/actions/setup-node@d08e2700fb9ffdfe87200621e25ad63e47014941
with:
registry-url: ${{ inputs.registry-url }}
cache: npm
Expand Down
2 changes: 1 addition & 1 deletion actions/release-notes/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ runs:
using: "composite"
steps:
- name: "Setup Node Environment"
uses: braintree/web-sdk-github-actions/actions/setup-node@45ee569cf478259fa14e8f116136d6d6fd93f061
uses: braintree/web-sdk-github-actions/actions/setup-node@d08e2700fb9ffdfe87200621e25ad63e47014941
with:
cache: npm

Expand Down
4 changes: 2 additions & 2 deletions actions/version-bump/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ outputs:
runs:
using: "composite"
steps:
- uses: braintree/web-sdk-github-actions/actions/setup-git@45ee569cf478259fa14e8f116136d6d6fd93f061
- uses: braintree/web-sdk-github-actions/actions/setup-git@d08e2700fb9ffdfe87200621e25ad63e47014941

- name: "Setup Node.js"
uses: braintree/web-sdk-github-actions/actions/setup-node@45ee569cf478259fa14e8f116136d6d6fd93f061
uses: braintree/web-sdk-github-actions/actions/setup-node@d08e2700fb9ffdfe87200621e25ad63e47014941
with:
cache: npm

Expand Down