Skip to content

Commit f9b3d17

Browse files
authored
Merge branch 'main' into application-monitoring
2 parents bfcdf3a + eb5b379 commit f9b3d17

File tree

8 files changed

+35
-35
lines changed

8 files changed

+35
-35
lines changed

.github/workflows/buildAndPublish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
persist-credentials: false
4343

4444
# Check for changes in the src directory excluding .md files
45-
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@7bc720106cdadde69c31f5d7d8ff1f8d6b790d54
45+
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@4170a89ba68d6275b5924c2b3179ed7ca3278dad
4646
id: checkChanges
4747

4848
buildAndPublish:
@@ -127,7 +127,7 @@ jobs:
127127
echo "::endgroup::"
128128
129129
- name: Commit changes
130-
uses: navikt/sf-platform/.github/actions/commitFiles@7bc720106cdadde69c31f5d7d8ff1f8d6b790d54
130+
uses: navikt/sf-platform/.github/actions/commitFiles@4170a89ba68d6275b5924c2b3179ed7ca3278dad
131131
if: steps.build.outputs.artifactsFound == 'true'
132132
with:
133133
files: sfdx-project.json
@@ -161,7 +161,7 @@ jobs:
161161
# Upload build artifacts and logs if present
162162
- name: Upload Artifacts and Logs
163163
if: steps.build.outputs.artifactsFound == 'true'
164-
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@7bc720106cdadde69c31f5d7d8ff1f8d6b790d54
164+
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@4170a89ba68d6275b5924c2b3179ed7ca3278dad
165165
with:
166166
artifactName: build-artifacts
167167
uploadArtifacts: true

.github/workflows/ciCreatePlatformPool.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
canReplenishPool: ${{ steps.checkLimits.outputs.canReplenishPool }}
4646
steps:
4747
- name: Setup SF CLI
48-
uses: navikt/sf-platform/.github/actions/installSfCli@7bc720106cdadde69c31f5d7d8ff1f8d6b790d54
48+
uses: navikt/sf-platform/.github/actions/installSfCli@4170a89ba68d6275b5924c2b3179ed7ca3278dad
4949
with:
5050
version: ${{ vars.SF_CLI_VERSION }}
5151

.github/workflows/ciStaticCodeValidation.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
shell: bash
3232
steps:
3333
- name: Install SF CLI
34-
uses: navikt/sf-platform/.github/actions/installSfCli@7bc720106cdadde69c31f5d7d8ff1f8d6b790d54
34+
uses: navikt/sf-platform/.github/actions/installSfCli@4170a89ba68d6275b5924c2b3179ed7ca3278dad
3535
with:
3636
version: ${{ vars.SF_CLI_VERSION }}
3737

@@ -77,14 +77,14 @@ jobs:
7777

7878
- name: Prettier Check
7979
if: ${{ !cancelled() && steps.paths.outcome == 'success' }}
80-
uses: navikt/sf-platform/.github/actions/prettierCheck@7bc720106cdadde69c31f5d7d8ff1f8d6b790d54
80+
uses: navikt/sf-platform/.github/actions/prettierCheck@4170a89ba68d6275b5924c2b3179ed7ca3278dad
8181
with:
8282
pathToValidate: ${{ steps.paths.outputs.prettierPathsToValidate }}
8383

8484
- name: Run Salesforce Code Analyzer
8585
id: run-code-analyzer
8686
if: ${{ !cancelled() && steps.paths.outcome == 'success' }}
87-
uses: forcedotcom/run-code-analyzer@6a95b0e734fadae32b7a35520bda9fee28af2420
87+
uses: forcedotcom/run-code-analyzer@e88e434ef258c182fe4cb5d8f0c9f282384fd4b5
8888
with:
8989
run-arguments: --workspace ${{ steps.paths.outputs.sfCodeAnalyzerPathToValidate }} --view detail --output-file sfca_results.html --output-file sfca_results.json --output-file code-analyzer-report.sarif
9090
results-artifact-name: salesforce-code-analyzer-results

.github/workflows/quickbuildOnPush.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
fetch-depth: 0
2929
persist-credentials: false
30-
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@7bc720106cdadde69c31f5d7d8ff1f8d6b790d54
30+
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@4170a89ba68d6275b5924c2b3179ed7ca3278dad
3131
id: checkChanges
3232

3333
quickBuild:
@@ -63,7 +63,7 @@ jobs:
6363

6464
- name: Upload artifacts and logs
6565
if: always()
66-
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@7bc720106cdadde69c31f5d7d8ff1f8d6b790d54
66+
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@4170a89ba68d6275b5924c2b3179ed7ca3278dad
6767
with:
6868
artifactName: build-artifacts
6969
uploadArtifacts: true

.github/workflows/validatePackageChangesOnPr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
fetch-depth: 0
3131
persist-credentials: false
3232

33-
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@7bc720106cdadde69c31f5d7d8ff1f8d6b790d54
33+
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@4170a89ba68d6275b5924c2b3179ed7ca3278dad
3434
id: checkChanges
3535

3636
validateChanges:
@@ -119,6 +119,6 @@ jobs:
119119
pull-requests: write
120120
steps:
121121
- name: Set pull request to draft
122-
uses: navikt/sf-platform/.github/actions/setPrToDraft@7bc720106cdadde69c31f5d7d8ff1f8d6b790d54
122+
uses: navikt/sf-platform/.github/actions/setPrToDraft@4170a89ba68d6275b5924c2b3179ed7ca3278dad
123123
with:
124124
pullRequestId: ${{ github.event.pull_request.node_id }}

.github/workflows/zizmor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
persist-credentials: false
2929

3030
- name: Install the latest version of uv
31-
uses: astral-sh/setup-uv@445689ea25e0de0a23313031f5fe577c74ae45a1
31+
uses: astral-sh/setup-uv@e92bafb6253dcd438e0484186d7669ea7a8ca1cc
3232

3333
- name: Run zizmor
3434
run: uvx zizmor --format sarif . > results.sarif

package-lock.json

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
"lint-staged": "lint-staged"
1616
},
1717
"devDependencies": {
18-
"@prettier/plugin-xml": "^3.4.1",
18+
"@prettier/plugin-xml": "^3.4.2",
1919
"husky": "^9.1.7",
20-
"lint-staged": "^16.1.2",
21-
"prettier": "^3.6.0",
20+
"lint-staged": "^16.1.4",
21+
"prettier": "^3.6.2",
2222
"prettier-plugin-apex": "^2.2.6"
2323
},
2424
"lint-staged": {

0 commit comments

Comments
 (0)