Skip to content

Commit

Permalink
CLI-1281: Node.js 16 actions deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
danepowell committed Mar 11, 2024
1 parent 576c105 commit 2abfc91
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ jobs:
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}
- name: Login to Jira
if: env.FIX_VERSION != 'null' && env.ISSUE_KEY != 'null'
uses: atlassian/gajira-login@v3
uses: acquia/gajira-login@master
env:
JIRA_BASE_URL: ${{ vars.JIRA_BASE_URL }}
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}
- name: Start release
if: env.FIX_VERSION != 'null' && env.ISSUE_KEY != 'null'
uses: atlassian/gajira-transition@v3
uses: acquia/gajira-transition@master
with:
issue: ${{ env.ISSUE_KEY }}
transition: Start Release
Expand All @@ -43,7 +43,7 @@ jobs:
GH_TOKEN: ${{ github.token }}
- name: Close release
if: env.FIX_VERSION != 'null' && env.ISSUE_KEY != 'null'
uses: atlassian/gajira-transition@v3
uses: acquia/gajira-transition@master
with:
issue: ${{ env.ISSUE_KEY }}
transition: Released
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
echo "EOF" >> $GITHUB_ENV
shell: bash
- name: Login to Jira
uses: atlassian/gajira-login@v3
uses: acquia/gajira-login@master
env:
JIRA_BASE_URL: ${{ vars.JIRA_BASE_URL }}
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
Expand All @@ -50,7 +50,7 @@ jobs:
FIX_VERSION: Acquia CLI ${{ github.event.release.name }}
- name: Create CCB ticket in Jira
id: create
uses: atlassian/gajira-create@v3
uses: acquia/gajira-create@master
with:
project: CLI
issuetype: Release
Expand All @@ -60,7 +60,7 @@ jobs:
env:
FIX_VERSION: Acquia CLI ${{ github.event.release.name }}
- name: Send for review
uses: atlassian/gajira-transition@v3
uses: acquia/gajira-transition@master
with:
issue: ${{ steps.create.outputs.issue }}
transition: Send for review
Expand Down

0 comments on commit 2abfc91

Please sign in to comment.