Skip to content

Commit 674a014

Browse files
chore(deps): bump the gha group with 2 updates
Bumps the gha group with 2 updates: [navikt/sf-platform](https://github.com/navikt/sf-platform) and [forcedotcom/run-code-analyzer](https://github.com/forcedotcom/run-code-analyzer). Updates `navikt/sf-platform` from b79b173 to eed9b4e - [Release notes](https://github.com/navikt/sf-platform/releases) - [Commits](b79b173...eed9b4e) Updates `forcedotcom/run-code-analyzer` from 2.4.0 to 2.5.0 - [Release notes](https://github.com/forcedotcom/run-code-analyzer/releases) - [Commits](forcedotcom/run-code-analyzer@e88e434...a1f89d3) --- updated-dependencies: - dependency-name: navikt/sf-platform dependency-version: eed9b4e dependency-type: direct:production dependency-group: gha - dependency-name: forcedotcom/run-code-analyzer dependency-version: 2.5.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gha ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent eed9b4e commit 674a014

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

.github/workflows/buildAndPublish.yml

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

4545
# Check for changes in the src directory excluding .md files
46-
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@b79b17356be49158fff788019a38a8cf0e60d964
46+
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@eed9b4e63657f61d5235bb59aee03b59739efb6c
4747
id: checkChanges
4848

4949
buildAndPublish:
@@ -155,14 +155,14 @@ jobs:
155155
156156
- name: Push logged metrics
157157
if: always() # Always push metrics regardless of build success
158-
uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@b79b17356be49158fff788019a38a8cf0e60d964
158+
uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@eed9b4e63657f61d5235bb59aee03b59739efb6c
159159
with:
160160
metricsKey: ${{ secrets.METRICS_KEYS }}
161161

162162
# Upload build artifacts and logs if present
163163
- name: Upload Artifacts and Logs
164164
if: steps.build.outputs.artifactsFound == 'true'
165-
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@b79b17356be49158fff788019a38a8cf0e60d964
165+
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@eed9b4e63657f61d5235bb59aee03b59739efb6c
166166
with:
167167
artifactName: build-artifacts
168168
uploadArtifacts: true

.github/workflows/ciStaticCodeValidation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,14 +90,14 @@ jobs:
9090

9191
- name: Prettier Check
9292
if: ${{ !cancelled() && steps.paths.outcome == 'success' }}
93-
uses: navikt/sf-platform/.github/actions/prettierCheck@b79b17356be49158fff788019a38a8cf0e60d964
93+
uses: navikt/sf-platform/.github/actions/prettierCheck@eed9b4e63657f61d5235bb59aee03b59739efb6c
9494
with:
9595
pathToValidate: ${{ steps.paths.outputs.prettierPathsToValidate }}
9696

9797
- name: Run Salesforce Code Analyzer
9898
id: run-code-analyzer
9999
if: ${{ !cancelled() && steps.paths.outcome == 'success' }}
100-
uses: forcedotcom/run-code-analyzer@e88e434ef258c182fe4cb5d8f0c9f282384fd4b5
100+
uses: forcedotcom/run-code-analyzer@a1f89d329e1b86edb58dedb220b579cbd2979264
101101
with:
102102
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
103103
results-artifact-name: salesforce-code-analyzer-results

.github/workflows/createRelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,6 @@ jobs:
272272
echo "::endgroup::"
273273
274274
- name: Push logged metrics
275-
uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@b79b17356be49158fff788019a38a8cf0e60d964
275+
uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@eed9b4e63657f61d5235bb59aee03b59739efb6c
276276
with:
277277
metricsKey: ${{ secrets.METRICS_KEYS }}

.github/workflows/quickbuildOnPush.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
fetch-depth: 0
3030
persist-credentials: false
31-
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@b79b17356be49158fff788019a38a8cf0e60d964
31+
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@eed9b4e63657f61d5235bb59aee03b59739efb6c
3232
id: checkChanges
3333

3434
quickBuild:
@@ -64,7 +64,7 @@ jobs:
6464

6565
- name: Upload artifacts and logs
6666
if: always()
67-
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@b79b17356be49158fff788019a38a8cf0e60d964
67+
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@eed9b4e63657f61d5235bb59aee03b59739efb6c
6868
with:
6969
artifactName: build-artifacts
7070
uploadArtifacts: true

.github/workflows/releaseToDev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,6 @@ jobs:
7373
auth_token: ${{ secrets.GITHUB_TOKEN }}
7474

7575
- name: Push logged metrics
76-
uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@b79b17356be49158fff788019a38a8cf0e60d964
76+
uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@eed9b4e63657f61d5235bb59aee03b59739efb6c
7777
with:
7878
metricsKey: ${{ secrets.METRICS_KEYS }}

.github/workflows/releaseToProd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ jobs:
5454
auth_token: ${{ secrets.GITHUB_TOKEN }}
5555

5656
- name: Push logged metrics
57-
uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@b79b17356be49158fff788019a38a8cf0e60d964
57+
uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@eed9b4e63657f61d5235bb59aee03b59739efb6c
5858
with:
5959
metricsKey: ${{ secrets.METRICS_KEYS }}

.github/workflows/validatePackageChangesOnPr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
fetch-depth: 0
3333
persist-credentials: false
3434

35-
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@b79b17356be49158fff788019a38a8cf0e60d964
35+
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@eed9b4e63657f61d5235bb59aee03b59739efb6c
3636
id: checkChanges
3737

3838
validateChanges:
@@ -107,7 +107,7 @@ jobs:
107107
fi
108108
109109
- name: Push logged metrics
110-
uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@b79b17356be49158fff788019a38a8cf0e60d964
110+
uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@eed9b4e63657f61d5235bb59aee03b59739efb6c
111111
with:
112112
metricsKey: ${{ secrets.METRICS_KEYS }}
113113

@@ -121,6 +121,6 @@ jobs:
121121
pull-requests: write
122122
steps:
123123
- name: Set pull request to draft
124-
uses: navikt/sf-platform/.github/actions/setPrToDraft@b79b17356be49158fff788019a38a8cf0e60d964
124+
uses: navikt/sf-platform/.github/actions/setPrToDraft@eed9b4e63657f61d5235bb59aee03b59739efb6c
125125
with:
126126
pullRequestId: ${{ github.event.pull_request.node_id }}

0 commit comments

Comments
 (0)