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@cf4b40ff4b46c96aadbfae38806b8de404a98cb3
uses: braintree/web-sdk-github-actions/actions/setup-node@45ee569cf478259fa14e8f116136d6d6fd93f061
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@cf4b40ff4b46c96aadbfae38806b8de404a98cb3
uses: braintree/web-sdk-github-actions/actions/npm-publish@45ee569cf478259fa14e8f116136d6d6fd93f061
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@cf4b40ff4b46c96aadbfae38806b8de404a98cb3
uses: braintree/web-sdk-github-actions/actions/release-notes@45ee569cf478259fa14e8f116136d6d6fd93f061
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
dry-run: ${{ inputs.dry-run }}
6 changes: 3 additions & 3 deletions .github/workflows/release-dry-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ concurrency:

jobs:
ci:
uses: braintree/web-sdk-github-actions/.github/workflows/ci.yml@cf4b40ff4b46c96aadbfae38806b8de404a98cb3
uses: ./.github/workflows/ci.yml
with:
Comment thread
GoogilyBoogily marked this conversation as resolved.
lint-command: ${{ inputs.lint-command }}
test-command: ${{ inputs.test-command }}
Expand All @@ -54,7 +54,7 @@ jobs:
- uses: actions/checkout@v6

- name: "Setup Node Environment"
uses: braintree/web-sdk-github-actions/actions/setup-node@cf4b40ff4b46c96aadbfae38806b8de404a98cb3
uses: braintree/web-sdk-github-actions/actions/setup-node@45ee569cf478259fa14e8f116136d6d6fd93f061
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@cf4b40ff4b46c96aadbfae38806b8de404a98cb3
uses: braintree/web-sdk-github-actions/actions/npm-publish@45ee569cf478259fa14e8f116136d6d6fd93f061
with:
dry-run: "true"
npm-token: ${{ secrets.npm-token }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ concurrency:

jobs:
ci:
uses: braintree/web-sdk-github-actions/.github/workflows/ci.yml@cf4b40ff4b46c96aadbfae38806b8de404a98cb3
uses: ./.github/workflows/ci.yml
permissions:
Comment thread
GoogilyBoogily marked this conversation as resolved.
contents: read
with:
Expand All @@ -68,7 +68,7 @@ jobs:

- name: "Bump version"
id: bump
uses: braintree/web-sdk-github-actions/actions/version-bump@cf4b40ff4b46c96aadbfae38806b8de404a98cb3
uses: braintree/web-sdk-github-actions/actions/version-bump@45ee569cf478259fa14e8f116136d6d6fd93f061
with:
version-type: ${{ inputs.version-type }}
base-branch: ${{ inputs.base-branch }}
Expand All @@ -80,7 +80,7 @@ jobs:
permissions:
id-token: write
contents: write
uses: braintree/web-sdk-github-actions/.github/workflows/publish.yml@cf4b40ff4b46c96aadbfae38806b8de404a98cb3
uses: ./.github/workflows/publish.yml
with:
Comment thread
GoogilyBoogily marked this conversation as resolved.
ref: v${{ needs.bump-version.outputs.new-version }}
dry-run: ${{ inputs.dry-run }}
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@cf4b40ff4b46c96aadbfae38806b8de404a98cb3
uses: braintree/web-sdk-github-actions/actions/setup-node@45ee569cf478259fa14e8f116136d6d6fd93f061
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@cf4b40ff4b46c96aadbfae38806b8de404a98cb3
uses: braintree/web-sdk-github-actions/actions/setup-node@45ee569cf478259fa14e8f116136d6d6fd93f061
with:
registry-url: ${{ inputs.registry-url }}
Comment thread
GoogilyBoogily marked this conversation as resolved.
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@cf4b40ff4b46c96aadbfae38806b8de404a98cb3
uses: braintree/web-sdk-github-actions/actions/setup-node@45ee569cf478259fa14e8f116136d6d6fd93f061
with:
cache: npm
Comment thread
GoogilyBoogily marked this conversation as resolved.

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@cf4b40ff4b46c96aadbfae38806b8de404a98cb3
- uses: braintree/web-sdk-github-actions/actions/setup-git@45ee569cf478259fa14e8f116136d6d6fd93f061

- name: "Setup Node.js"
uses: braintree/web-sdk-github-actions/actions/setup-node@cf4b40ff4b46c96aadbfae38806b8de404a98cb3
uses: braintree/web-sdk-github-actions/actions/setup-node@45ee569cf478259fa14e8f116136d6d6fd93f061
Comment thread
GoogilyBoogily marked this conversation as resolved.
with:
cache: npm

Expand Down