diff --git a/.github/ISSUE_TEMPLATE/0-scanner_run_bug.yml b/.github/ISSUE_TEMPLATE/0-scanner_run_bug.yml index 1af86319a..cbacd1a18 100644 --- a/.github/ISSUE_TEMPLATE/0-scanner_run_bug.yml +++ b/.github/ISSUE_TEMPLATE/0-scanner_run_bug.yml @@ -77,7 +77,7 @@ body: description: | What do you get from the command "sf plugins"? placeholder: | - Example: @salesforce/sfdx-scanner 4.1.0 (latest-beta) + Example: @salesforce/sfdx-scanner 4.3.0 (latest) validations: required: true - type: textarea diff --git a/.github/ISSUE_TEMPLATE/1-scanner_run_dfa_bug.yml b/.github/ISSUE_TEMPLATE/1-scanner_run_dfa_bug.yml index 928089ae9..cee2cb8cf 100644 --- a/.github/ISSUE_TEMPLATE/1-scanner_run_dfa_bug.yml +++ b/.github/ISSUE_TEMPLATE/1-scanner_run_dfa_bug.yml @@ -81,7 +81,7 @@ body: description: | What do you get from the command "sf plugins"? placeholder: | - Example: @salesforce/sfdx-scanner 4.1.0 (latest-beta) + Example: @salesforce/sfdx-scanner 4.3.0 (latest) validations: required: true - type: input diff --git a/.github/ISSUE_TEMPLATE/2-scanner_run_false_result.yml b/.github/ISSUE_TEMPLATE/2-scanner_run_false_result.yml index 729fb7684..a27802a2a 100644 --- a/.github/ISSUE_TEMPLATE/2-scanner_run_false_result.yml +++ b/.github/ISSUE_TEMPLATE/2-scanner_run_false_result.yml @@ -71,7 +71,7 @@ body: description: | What do you get from the command "sf plugins"? placeholder: | - Example: @salesforce/sfdx-scanner 4.1.0 (latest-beta) + Example: @salesforce/sfdx-scanner 4.3.0 (latest) validations: required: true - type: textarea diff --git a/.github/ISSUE_TEMPLATE/3-scanner_run_dfa_false_result.yml b/.github/ISSUE_TEMPLATE/3-scanner_run_dfa_false_result.yml index fee67e2ab..f2017f7db 100644 --- a/.github/ISSUE_TEMPLATE/3-scanner_run_dfa_false_result.yml +++ b/.github/ISSUE_TEMPLATE/3-scanner_run_dfa_false_result.yml @@ -58,7 +58,7 @@ body: description: | What do you get from the command "sf plugins"? placeholder: | - Example: @salesforce/sfdx-scanner 4.1.0 (latest-beta) + Example: @salesforce/sfdx-scanner 4.3.0 (latest) validations: required: true - type: input diff --git a/.github/workflows/publish-to-npm.yml b/.github/workflows/publish-to-npm.yml index 5f89a4133..0689b8070 100644 --- a/.github/workflows/publish-to-npm.yml +++ b/.github/workflows/publish-to-npm.yml @@ -53,7 +53,7 @@ jobs: with: ctc: false # We've been told we don't have to care about this until someone makes us care. sign: true - tag: latest-beta-rc # Publish as a release candidate, so we can do our validations against it. + tag: latest-rc # Publish as a release candidate, so we can do our validations against it. githubTag: ${{ github.event.release.tag_name || inputs.tag }} secrets: inherit # Step 3: Run smoke tests against the release candidate. @@ -81,7 +81,7 @@ jobs: java-version: '11' # For now, Java version is hardcoded. # Install SF, and the release candidate version. - run: npm install -g @salesforce/cli - - run: sf plugins install @salesforce/sfdx-scanner@latest-beta-rc + - run: sf plugins install @salesforce/sfdx-scanner@latest-rc # Log the installed plugins for easier debugging. - run: sf plugins # Attempt to run the smoke tests. @@ -102,7 +102,7 @@ jobs: node-version: 'lts/*' - run: | echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc - npm dist-tag add @salesforce/sfdx-scanner@${{ github.event.release.tag_name || inputs.tag }} latest-beta + npm dist-tag add @salesforce/sfdx-scanner@${{ github.event.release.tag_name || inputs.tag }} latest # Step 5: Create a Pull Request for merging `main` into `dev` create-main2dev-pull-request: needs: promote-to-latest