Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into CLI-1121
Browse files Browse the repository at this point in the history
  • Loading branch information
danepowell committed Nov 3, 2023
2 parents 8a40257 + b0457a7 commit 840f199
Show file tree
Hide file tree
Showing 50 changed files with 4,349 additions and 4,493 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ jobs:
strategy:
matrix:
os: ["ubuntu-22.04"]
php: ["8.1", "8.2"]
php: ["8.1", "8.2", "8.3"]
coverage: ["none"]
include:
- os: "ubuntu-22.04"
php: "8.1"
php: "8.2"
coverage: "pcov"
# Only test pre-installed (i.e. fast) versions of PHP on Windows.
- os: "windows-2022"
Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,22 @@ jobs:
JIRA_BASE_URL: ${{ vars.JIRA_BASE_URL }}
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}
- name: Create fix version
run: |
curl --request POST \
--url "$JIRA_BASE_URL/rest/api/2/version" \
--user "$JIRA_USER_EMAIL:$JIRA_API_TOKEN" \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data "{
\"name\": \"$FIX_VERSION\",
\"projectId\": 20084
}"
env:
JIRA_BASE_URL: ${{ vars.JIRA_BASE_URL }}
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }}
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }}
FIX_VERSION: Acquia CLI ${{ github.event.release.name }}
- name: Create CCB ticket in Jira
id: create
uses: atlassian/gajira-create@v3
Expand Down
27 changes: 13 additions & 14 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
"ext-json": "*",
"acquia/drupal-environment-detector": "^1.2.0",
"bugsnag/bugsnag": "^3.0",
"composer/composer": "2.6.5",
"composer/semver": "^3.3",
"consolidation/self-update": "^2.1.0",
"cweagans/composer-patches": "^1.7",
Expand All @@ -33,20 +32,20 @@
"psr/log": "^3",
"ramsey/uuid": "^4.1",
"react/event-loop": "^1.1",
"symfony/cache": "^6.0",
"symfony/config": "^6.0",
"symfony/console": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/dotenv": "^6.0",
"symfony/event-dispatcher": "^6.0",
"symfony/expression-language": "^6.0",
"symfony/filesystem": "^6.0",
"symfony/finder": "^6.0",
"symfony/cache": "^6.3",
"symfony/config": "^6.3",
"symfony/console": "6.3.2",
"symfony/dependency-injection": "^6.3",
"symfony/dotenv": "^6.3",
"symfony/event-dispatcher": "^6.3",
"symfony/expression-language": "^6.3",
"symfony/filesystem": "^6.3",
"symfony/finder": "^6.3",
"symfony/flex": "^2.2",
"symfony/http-kernel": "^6.0",
"symfony/process": "^6.0",
"symfony/validator": "^6.0",
"symfony/yaml": "^6.0",
"symfony/http-kernel": "^6.3",
"symfony/process": "^6.3",
"symfony/validator": "^6.3",
"symfony/yaml": "^6.3",
"thecodingmachine/safe": "^2.4",
"typhonius/acquia-logstream": "^0.0.13",
"typhonius/acquia-php-sdk-v2": "^3.1.1",
Expand Down
Loading

0 comments on commit 840f199

Please sign in to comment.