Skip to content
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
6 changes: 3 additions & 3 deletions .github/workflows/buildAndPublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
persist-credentials: false

# Check for changes in the src directory excluding .md files
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@655e1dc08e58247b5ded00cb96e40f4a415bad85
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
id: checkChanges

buildAndPublish:
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:

# Sets up Salesforce CLI authentication for the DevHub
- name: Authenticate DevHub
uses: navikt/sf-platform/.github/actions/authenticateOrg@655e1dc08e58247b5ded00cb96e40f4a415bad85
uses: navikt/sf-platform/.github/actions/authenticateOrg@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
with:
auth-url: ${{ secrets.SF_DEVHUB_URL }}
alias: "devhub"
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
# Upload build artifacts and logs if present
- name: Upload Artifacts and Logs
if: steps.build.outputs.artifactsFound == 'true'
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@655e1dc08e58247b5ded00cb96e40f4a415bad85
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
with:
artifactName: "build-artifacts"
uploadArtifacts: true
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ciCreatePlatformPool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ jobs:
canReplenishPool: ${{ steps.checkLimits.outputs.canReplenishPool }}
steps:
- name: Setup SF CLI
uses: navikt/sf-platform/.github/actions/installSfCli@655e1dc08e58247b5ded00cb96e40f4a415bad85
uses: navikt/sf-platform/.github/actions/installSfCli@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
with:
version: ${{ vars.SF_CLI_VERSION }}

- name: "Authenticate Dev Hub"
uses: navikt/sf-platform/.github/actions/authenticateOrg@655e1dc08e58247b5ded00cb96e40f4a415bad85
uses: navikt/sf-platform/.github/actions/authenticateOrg@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
with:
auth-url: ${{ secrets.SF_DEVHUB_URL }}
alias: devhub
Expand Down Expand Up @@ -140,15 +140,15 @@ jobs:
CLEAR_POOLS: ${{ inputs.clearPools }}

- name: "Authenticate Dev Hub"
uses: navikt/sf-platform/.github/actions/authenticateOrg@655e1dc08e58247b5ded00cb96e40f4a415bad85
uses: navikt/sf-platform/.github/actions/authenticateOrg@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
with:
auth-url: ${{ secrets.SF_DEVHUB_URL }}
alias: devhub

- name: "Clear pool"
id: clearPool
if: ${{ inputs.clearPools }}
uses: navikt/sf-platform/.github/actions/ciDeletePool@655e1dc08e58247b5ded00cb96e40f4a415bad85
uses: navikt/sf-platform/.github/actions/ciDeletePool@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
with:
devhub: "devhub"
poolTag: ${{ env.POOL_TAG }}
Expand All @@ -162,7 +162,7 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: "Delete orphans"
uses: navikt/sf-platform/.github/actions/ciDeletePool@655e1dc08e58247b5ded00cb96e40f4a415bad85
uses: navikt/sf-platform/.github/actions/ciDeletePool@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
with:
devhub: "devhub"
deleteJobType: orphans
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ciStaticCodeValidation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
shell: "bash"
steps:
- name: "Install SF CLI"
uses: navikt/sf-platform/.github/actions/installSfCli@655e1dc08e58247b5ded00cb96e40f4a415bad85
uses: navikt/sf-platform/.github/actions/installSfCli@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
with:
version: ${{ vars.SF_CLI_VERSION }}

Expand Down Expand Up @@ -80,13 +80,13 @@ jobs:

- name: Prettier Check
if: ${{ !cancelled() && steps.paths.outcome == 'success' }}
uses: navikt/sf-platform/.github/actions/prettierCheck@655e1dc08e58247b5ded00cb96e40f4a415bad85
uses: navikt/sf-platform/.github/actions/prettierCheck@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
with:
pathToValidate: ${{ steps.paths.outputs.prettierPathsToValidate }}

- name: Eslint check
if: ${{ !cancelled() && steps.paths.outcome == 'success' }}
uses: navikt/sf-platform/.github/actions/eslintCheck@655e1dc08e58247b5ded00cb96e40f4a415bad85
uses: navikt/sf-platform/.github/actions/eslintCheck@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
with:
pathToValidate: ${{ steps.paths.outputs.eslintPathsToValidate }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/createRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
# Sets up Salesforce CLI authentication for the DevHub

- name: Authenticate DevHub
uses: navikt/sf-platform/.github/actions/authenticateOrg@655e1dc08e58247b5ded00cb96e40f4a415bad85
uses: navikt/sf-platform/.github/actions/authenticateOrg@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
with:
auth-url: ${{ secrets.SF_DEVHUB_URL }}
alias: "${{ env.DEVHUB_ALIAS }}"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/quickbuildOnPush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
with:
fetch-depth: 0
persist-credentials: false
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@655e1dc08e58247b5ded00cb96e40f4a415bad85
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
id: checkChanges

quickBuild:
Expand All @@ -46,7 +46,7 @@ jobs:
persist-credentials: true

- name: Authenticate DevHub
uses: navikt/sf-platform/.github/actions/authenticateOrg@655e1dc08e58247b5ded00cb96e40f4a415bad85
uses: navikt/sf-platform/.github/actions/authenticateOrg@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
with:
auth-url: ${{ secrets.SF_DEVHUB_URL }}
alias: "devhub"
Expand All @@ -62,7 +62,7 @@ jobs:

- name: Upload artifacts and logs
if: always()
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@655e1dc08e58247b5ded00cb96e40f4a415bad85
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
with:
artifactName: "build-artifacts"
uploadArtifacts: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ jobs:

# Sets up Salesforce CLI authentication for the DevHub
- name: Authenticate DevHub
uses: navikt/sf-platform/.github/actions/authenticateOrg@655e1dc08e58247b5ded00cb96e40f4a415bad85
uses: navikt/sf-platform/.github/actions/authenticateOrg@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
with:
auth-url: ${{ secrets.SF_DEVHUB_URL }}
alias: "devhub"
setDefaultDevhubUsername: "true"

# Sets up Salesforce CLI authentication for the DevHub
- name: Authenticate Target Org
uses: navikt/sf-platform/.github/actions/authenticateOrg@655e1dc08e58247b5ded00cb96e40f4a415bad85
uses: navikt/sf-platform/.github/actions/authenticateOrg@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
with:
auth-url: ${{ secrets.TARGET_ORG_URL }}
alias: "targetorg"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/validatePackageChangesOnPr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
fetch-depth: 0
persist-credentials: false

- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@655e1dc08e58247b5ded00cb96e40f4a415bad85
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
id: checkChanges

validateChanges:
Expand All @@ -49,7 +49,7 @@ jobs:
persist-credentials: true

- name: Authenticate DevHub
uses: navikt/sf-platform/.github/actions/authenticateOrg@655e1dc08e58247b5ded00cb96e40f4a415bad85
uses: navikt/sf-platform/.github/actions/authenticateOrg@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
with:
auth-url: ${{ secrets.SF_DEVHUB_URL }}
alias: "devhub"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zizmor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
persist-credentials: false

- name: Install the latest version of uv
uses: astral-sh/setup-uv@22695119d769bdb6f7032ad67b9bca0ef8c4a174
uses: astral-sh/setup-uv@0c5e2b8115b80b4c7c5ddf6ffdd634974642d182

- name: Run zizmor
run: uvx zizmor --format sarif . > results.sarif
Expand Down
Loading