Skip to content

After updating Salesforce CLI to 59.13.0, receive this error 'Your installed Salesforce CLI version is no longer supported. Uninstall Salesforce CLI and install the latest version' #2665

After updating Salesforce CLI to 59.13.0, receive this error 'Your installed Salesforce CLI version is no longer supported. Uninstall Salesforce CLI and install the latest version'

After updating Salesforce CLI to 59.13.0, receive this error 'Your installed Salesforce CLI version is no longer supported. Uninstall Salesforce CLI and install the latest version' #2665

Workflow file for this run

#
# Copyright (c) 2021, salesforce.com, inc.
# All rights reserved.
# Licensed under the BSD 3-Clause license.
# For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
#
name: "validate-updated-issue"
on:
issues:
types: [edited]
issue_comment:
types: [created, edited]
jobs:
validate-issue:
# Has label: 'more information required'
# Does NOT have labels:
# - 'validated'
# - 'investigating'
# - 'feature'
# - 'owned by another team'
# - 'bug'
if: contains(github.event.issue.labels.*.name, 'more information required') && !contains(github.event.issue.labels.*.name, 'validated') && !contains(github.event.issue.labels.*.name, 'investigating') && !contains(github.event.issue.labels.*.name, 'feature') && !contains(github.event.issue.labels.*.name, 'owned by another team') && !contains(github.event.issue.labels.*.name, 'bug')
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: actions/setup-node@v3
with:
node-version: lts/*
- name: Install dependencies
run: yarn install
- name: Validate issue
id: validate-issue
uses: ./.github/actions/validate-issue
with:
repo-token: ${{ secrets.GITHUB_TOKEN}}