Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update GHAs to use new cli:version:inspect (with sfdx removed) #1937

Merged
merged 1 commit into from
Oct 11, 2024
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/create-cli-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
with:
max_attempts: 5
retry_wait_seconds: 120
command: sf-release cli:versions:inspect -c ${{ needs.get-channel.outputs.s3-channel }} -l archive --cli sf
command: sf-release cli:versions:inspect -c ${{ needs.get-channel.outputs.s3-channel }} -l archive
mdonnalley marked this conversation as resolved.
Show resolved Hide resolved
retry_on: error

pack-upload-mac:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/promote-nightly-to-rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
with:
old-channel: nightly
new-channel: latest-rc
ignore-missing: ${{ inputs.ignore-missing }}
ignore-missing: ${{ github.event_name == 'workflow_run' && 'false' || inputs.ignore-missing }}

promote-verify:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
with:
max_attempts: 5
retry_wait_seconds: 120
command: sf-release cli:versions:inspect -c stable-rc -l archive --cli sf
command: sf-release cli:versions:inspect -c stable-rc -l archive ${{ inputs.ignore-missing && '--ignore-missing' || '' }}

verify-docker-version:
needs: [promote-verify]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/promote-rc-to-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
with:
max_attempts: 5
retry_wait_seconds: 120
command: sf-release cli:versions:inspect -c stable -l archive --cli sf
command: sf-release cli:versions:inspect -c stable -l archive ${{ inputs.ignore-missing && '--ignore-missing' || '' }}

verify-docker-version:
needs: [promote-verify]
Expand Down