Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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/android-kit-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: main
- name: "Import GPG Key"
uses: crazy-max/ghaction-import-gpg@v5
uses: crazy-max/ghaction-import-gpg@2dc316deee8e90f13e1a351ab510b4d5bc0c82cd # v7.0.0
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/data-plan-fetch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ jobs:
uses: actions/checkout@v4

- name: Use Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: '16.x'
node-version: '24.x'

- name: Install mP CLI
run: npm install -g @mparticle/cli
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dependabot-automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: |
echo ${{ github.event.workflow_run.event }}
- name: 'Download artifact'
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
var artifacts = await github.rest.actions.listWorkflowRunArtifacts({
Expand All @@ -43,7 +43,7 @@ jobs:
fs.writeFileSync('${{github.workspace}}/pr.zip', Buffer.from(download.data));
- run: unzip pr.zip
- name: 'Automerge PR'
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-rebase-development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
ref: development
fetch-depth: 0
- name: "Import GPG Key"
uses: crazy-max/ghaction-import-gpg@v5
uses: crazy-max/ghaction-import-gpg@2dc316deee8e90f13e1a351ab510b4d5bc0c82cd # v7.0.0
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/issue-comment-from-jira.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
uses: atlassian/gajira-login@master
Comment thread
alexs-mparticle marked this conversation as resolved.
Outdated

- name: Get Jira Ticket Links
uses: fjogeleit/http-request-action@v1.11.0
uses: fjogeleit/http-request-action@551353b829c3646756b2ec2b3694f819d7957495 # v2.0.0
id: get_links
with:
url: ${{ env.JIRA_BASE_URL }}/rest/api/2/issue/${{ github.event.inputs.jira_ticket }}/remotelink
Expand All @@ -44,7 +44,7 @@ jobs:
run: |
echo issue_url=`echo '${{ steps.get_links.outputs.response }}' | jq '.[]|select(.object.title | startswith("Github Issue Link:")).object.url'`
Comment thread
alexs-mparticle marked this conversation as resolved.
Outdated

- uses: mad9000/actions-find-and-replace-string@2
- uses: mad9000/actions-find-and-replace-string@bf97a127285f67d542d3f06145424c64803ae81a # v2
id: sub
with:
source: '${{ steps.parse_url.outputs.issue_url }}'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/issue-status-update-from-jira.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
uses: atlassian/gajira-login@master
Comment thread
alexs-mparticle marked this conversation as resolved.
Outdated

- name: Get Jira Ticket Links
uses: fjogeleit/http-request-action@v1.11.0
uses: fjogeleit/http-request-action@551353b829c3646756b2ec2b3694f819d7957495 # v2.0.0
id: get_links
with:
url: ${{ env.JIRA_BASE_URL }}/rest/api/2/issue/${{ github.event.inputs.jira_ticket }}/remotelink
Expand All @@ -56,7 +56,7 @@ jobs:
run: |
echo ::set-output name=issue_url::`echo '${{ steps.get_links.outputs.response }}' | jq '.[]|select(.object.title | startswith("Github Issue Link:")).object.url'`
Comment thread
alexs-mparticle marked this conversation as resolved.
Outdated

- uses: mad9000/actions-find-and-replace-string@2
- uses: mad9000/actions-find-and-replace-string@bf97a127285f67d542d3f06145424c64803ae81a # v2
id: sub
with:
source: '${{ steps.parse_url.outputs.issue_url }}'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/web-kit-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: NPM install
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 24.x

- name: Run NPM CI
run: npm ci
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/web-run-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ jobs:
ref: ${{ inputs.branch_name }}

- name: NPM install
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 16.x
node-version: 24.x

- name: Run NPM CI
run: npm ci
Expand All @@ -40,7 +40,7 @@ jobs:
run: ${{ inputs.build_command }}

- name: Install Firefox Latest
uses: browser-actions/setup-firefox@latest
uses: browser-actions/setup-firefox@fcf821c621167805dd63a29662bd7cb5676c81a8 # v1.7.1

- name: Log Firefox Version
run: firefox --version
Expand Down
Loading