Skip to content

Commit

Permalink
Merge pull request #25 from ncino/cerelius-patch-1
Browse files Browse the repository at this point in the history
fix: update action-force-setup version target
  • Loading branch information
Cerelius authored Feb 17, 2025
2 parents ee76422 + ae47a30 commit 22a4a89
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions workflow-templates/1gp-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ on:
push:
branches:
- release
- '*.*.x'
- "*.*.x"

pull_request:
branches:
- release
- '*.*.x'
- "*.*.x"

workflow_dispatch:
inputs:
Expand Down Expand Up @@ -56,25 +56,25 @@ on:

auto-promote:
description: Whether to auto promote the package
value: 'false'
value: "false"

permissions:
id-token: write # This is required for requesting the ID token for AWS actions
contents: read # This is required for actions/checkout

concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}"
cancel-in-progress: ${{ github.ref != 'refs/heads/release' }}

env:
DD_AGENT_MAJOR_VERSION: '7'
DD_API_KEY: '${{ secrets.DD_API_KEY }}'
DD_APP_KEY: '${{ secrets.DD_APP_KEY }}'
DD_AGENT_MAJOR_VERSION: "7"
DD_API_KEY: "${{ secrets.DD_API_KEY }}"
DD_APP_KEY: "${{ secrets.DD_APP_KEY }}"
DD_SITE: datadoghq.com
DEVOPS_SCRIPTS_PATH: './devops-utility-belt/scripts'
DEVOPS_SCRIPTS_PATH: "./devops-utility-belt/scripts"
GIT_BASE_BRANCH: ${{ github.base_ref }}
GIT_BRANCH: ${{ github.ref_name }}
GITHUB_TOKEN: '${{ secrets.CI_USER_REPO_ACCESS_TOKEN }}'
GITHUB_TOKEN: "${{ secrets.CI_USER_REPO_ACCESS_TOKEN }}"
RELEASE_FULLNAME: nCino Companies House (UK)
REPO_NAME: ${{ github.event.repository.name }}

Expand All @@ -90,7 +90,7 @@ jobs:
uses: actions/checkout@v4
with:
token: ${{ secrets.CI_USER_REPO_ACCESS_TOKEN }}
sparse-checkout: 'sfdx-project.json'
sparse-checkout: "sfdx-project.json"

- name: Get Namespace
run: echo "NAMESPACE=$(jq -r '.namespace' sfdx-project.json)" >> $GITHUB_ENV
Expand All @@ -112,7 +112,7 @@ jobs:
- '**/*.md'
non-markdown-changed:
- '!**/*.md'
list-files: 'json'
list-files: "json"
token: ${{ env.GITHUB_TOKEN }}

CI-build-and-test:
Expand All @@ -134,13 +134,13 @@ jobs:
- name: ๐Ÿ—ƒ๏ธ Checkout Repo ๐Ÿ—ƒ๏ธ
uses: actions/checkout@v4
with:
token: '${{ steps.app-token.outputs.token }}'
token: "${{ steps.app-token.outputs.token }}"
ref: ${{ inputs.ref }}

- name: ๐Ÿ› ๏ธ Force Repository Setup ๐Ÿ› ๏ธ
uses: ncino/action-force-setup@v2
uses: ncino/action-force-setup@v3
with:
dev-hub-auth-url: '${{ secrets.DEVOPS_DEV_HUB_AUTH_URL }}'
dev-hub-auth-url: "${{ secrets.DEVOPS_DEV_HUB_AUTH_URL }}"
ci-ncino-ssh-private-signing-key: ${{ secrets.CI_NCINO_SSH_PRIVATE_SIGNING_KEY }}
ci-ncino-ssh-public-signing-key: ${{ secrets.CI_NCINO_SSH_PUBLIC_SIGNING_KEY }}
git-committer-name: ci-ncino
Expand All @@ -167,11 +167,11 @@ jobs:
if: ${{ needs.Path-Filtering.outputs.apex-changed == 'true' }}
uses: ncino/action-org-setup/org-provision-action@v3
with:
capability: '${{ github.event.repository.name }}'
capability: "${{ github.event.repository.name }}"
clean-org: ${{ inputs.clean-org }}
has-namespace: true
github-token: '${{ secrets.CI_USER_REPO_ACCESS_TOKEN }}'
orgfarm-api-key: '${{ secrets.ORG_FARM_API_KEY }}'
github-token: "${{ secrets.CI_USER_REPO_ACCESS_TOKEN }}"
orgfarm-api-key: "${{ secrets.ORG_FARM_API_KEY }}"
orgfarm-api-url: ${{ vars.ORGFARM_API_URL }}
package-updater: install-dependencies-action
preserve-org: ${{ inputs.preserve-org }}
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
uses: ncino/action-org-setup/org-cleanup-action@v3
with:
orgfarm-api-url: ${{ vars.ORGFARM_API_URL }}
orgfarm-api-key: '${{ secrets.ORG_FARM_API_KEY }}'
orgfarm-api-key: "${{ secrets.ORG_FARM_API_KEY }}"
preserve-org: ${{ inputs.preserve-org }}

- name: ๐Ÿ“ Export Summary ๐Ÿ“
Expand Down

0 comments on commit 22a4a89

Please sign in to comment.