Skip to content

Commit 3f8be4c

Browse files
chore(deps): update navikt/sf-platform requirement to 45d5655 (#52)
Updates the requirements on [navikt/sf-platform](https://github.com/navikt/sf-platform) to permit the latest version. Updates `navikt/sf-platform` to 45d5655 - [Release notes](https://github.com/navikt/sf-platform/releases) - [Commits](https://github.com/navikt/sf-platform/commits/45d5655f12fc14cbd9962c5364757ccc5bc9023e) --- updated-dependencies: - dependency-name: navikt/sf-platform dependency-version: 45d5655 dependency-type: direct:production dependency-group: gha ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: THS <[email protected]>
1 parent a39b6e0 commit 3f8be4c

File tree

8 files changed

+22
-22
lines changed

8 files changed

+22
-22
lines changed

.github/workflows/buildAndPublish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
persist-credentials: false
4141

4242
# Check for changes in the src directory excluding .md files
43-
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@5a37e9b86c238d23ec7bc31cd8d437daaad6e952
43+
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@45d5655f12fc14cbd9962c5364757ccc5bc9023e
4444
id: checkChanges
4545

4646
buildAndPublish:
@@ -77,7 +77,7 @@ jobs:
7777

7878
# Sets up Salesforce CLI authentication for the DevHub
7979
- name: Authenticate DevHub
80-
uses: navikt/sf-platform/.github/actions/authenticateOrg@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
80+
uses: navikt/sf-platform/.github/actions/authenticateOrg@45d5655f12fc14cbd9962c5364757ccc5bc9023e
8181
with:
8282
auth-url: ${{ secrets.SF_DEVHUB_URL }}
8383
alias: "devhub"
@@ -137,7 +137,7 @@ jobs:
137137
# Upload build artifacts and logs if present
138138
- name: Upload Artifacts and Logs
139139
if: steps.build.outputs.artifactsFound == 'true'
140-
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
140+
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@45d5655f12fc14cbd9962c5364757ccc5bc9023e
141141
with:
142142
artifactName: "build-artifacts"
143143
uploadArtifacts: true

.github/workflows/ciCreatePlatformPool.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ jobs:
4343
canReplenishPool: ${{ steps.checkLimits.outputs.canReplenishPool }}
4444
steps:
4545
- name: Setup SF CLI
46-
uses: navikt/sf-platform/.github/actions/installSfCli@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
46+
uses: navikt/sf-platform/.github/actions/installSfCli@45d5655f12fc14cbd9962c5364757ccc5bc9023e
4747
with:
4848
version: ${{ vars.SF_CLI_VERSION }}
4949

5050
- name: "Authenticate Dev Hub"
51-
uses: navikt/sf-platform/.github/actions/authenticateOrg@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
51+
uses: navikt/sf-platform/.github/actions/authenticateOrg@45d5655f12fc14cbd9962c5364757ccc5bc9023e
5252
with:
5353
auth-url: ${{ secrets.SF_DEVHUB_URL }}
5454
alias: devhub
@@ -140,15 +140,15 @@ jobs:
140140
CLEAR_POOLS: ${{ inputs.clearPools }}
141141

142142
- name: "Authenticate Dev Hub"
143-
uses: navikt/sf-platform/.github/actions/authenticateOrg@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
143+
uses: navikt/sf-platform/.github/actions/authenticateOrg@45d5655f12fc14cbd9962c5364757ccc5bc9023e
144144
with:
145145
auth-url: ${{ secrets.SF_DEVHUB_URL }}
146146
alias: devhub
147147

148148
- name: "Clear pool"
149149
id: clearPool
150150
if: ${{ inputs.clearPools }}
151-
uses: navikt/sf-platform/.github/actions/ciDeletePool@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
151+
uses: navikt/sf-platform/.github/actions/ciDeletePool@45d5655f12fc14cbd9962c5364757ccc5bc9023e
152152
with:
153153
devhub: "devhub"
154154
poolTag: ${{ env.POOL_TAG }}
@@ -162,7 +162,7 @@ jobs:
162162
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
163163

164164
- name: "Delete orphans"
165-
uses: navikt/sf-platform/.github/actions/ciDeletePool@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
165+
uses: navikt/sf-platform/.github/actions/ciDeletePool@45d5655f12fc14cbd9962c5364757ccc5bc9023e
166166
with:
167167
devhub: "devhub"
168168
deleteJobType: orphans

.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@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
34+
uses: navikt/sf-platform/.github/actions/installSfCli@45d5655f12fc14cbd9962c5364757ccc5bc9023e
3535
with:
3636
version: ${{ vars.SF_CLI_VERSION }}
3737

@@ -81,13 +81,13 @@ jobs:
8181

8282
- name: Prettier Check
8383
if: ${{ !cancelled() && steps.paths.outcome == 'success' }}
84-
uses: navikt/sf-platform/.github/actions/prettierCheck@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
84+
uses: navikt/sf-platform/.github/actions/prettierCheck@45d5655f12fc14cbd9962c5364757ccc5bc9023e
8585
with:
8686
pathToValidate: ${{ steps.paths.outputs.prettierPathsToValidate }}
8787

8888
- name: Eslint check
8989
if: ${{ !cancelled() && steps.paths.outcome == 'success' }}
90-
uses: navikt/sf-platform/.github/actions/eslintCheck@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
90+
uses: navikt/sf-platform/.github/actions/eslintCheck@45d5655f12fc14cbd9962c5364757ccc5bc9023e
9191
with:
9292
pathToValidate: ${{ steps.paths.outputs.eslintPathsToValidate }}
9393

.github/workflows/createRelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
# Sets up Salesforce CLI authentication for the DevHub
5858

5959
- name: Authenticate DevHub
60-
uses: navikt/sf-platform/.github/actions/authenticateOrg@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
60+
uses: navikt/sf-platform/.github/actions/authenticateOrg@45d5655f12fc14cbd9962c5364757ccc5bc9023e
6161
with:
6262
auth-url: ${{ secrets.SF_DEVHUB_URL }}
6363
alias: "${{ env.DEVHUB_ALIAS }}"

.github/workflows/on_push_pr_branch.yml

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

4343
# Check for changes in the src directory excluding .md files
44-
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@5a37e9b86c238d23ec7bc31cd8d437daaad6e952
44+
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@45d5655f12fc14cbd9962c5364757ccc5bc9023e
4545
id: checkChanges
4646

4747
# Validate changes
@@ -75,7 +75,7 @@ jobs:
7575

7676
# Authenticate with DevHub
7777
- name: Authenticate DevHub
78-
uses: navikt/sf-platform/.github/actions/authenticateOrg@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
78+
uses: navikt/sf-platform/.github/actions/authenticateOrg@45d5655f12fc14cbd9962c5364757ccc5bc9023e
7979
with:
8080
auth-url: ${{ secrets.SF_DEVHUB_URL }}
8181
alias: "devhub"
@@ -148,7 +148,7 @@ jobs:
148148
# The logs are uploaded with the name "build-logs"
149149
- name: Upload artifacts and logs
150150
if: always()
151-
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
151+
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@45d5655f12fc14cbd9962c5364757ccc5bc9023e
152152
with:
153153
artifactName: "build-artifacts"
154154
uploadArtifacts: true

.github/workflows/quickbuildOnPush.yml

Lines changed: 3 additions & 3 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@5a37e9b86c238d23ec7bc31cd8d437daaad6e952
30+
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@45d5655f12fc14cbd9962c5364757ccc5bc9023e
3131
id: checkChanges
3232

3333
quickBuild:
@@ -47,7 +47,7 @@ jobs:
4747
persist-credentials: true
4848

4949
- name: Authenticate DevHub
50-
uses: navikt/sf-platform/.github/actions/authenticateOrg@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
50+
uses: navikt/sf-platform/.github/actions/authenticateOrg@45d5655f12fc14cbd9962c5364757ccc5bc9023e
5151
with:
5252
auth-url: ${{ secrets.SF_DEVHUB_URL }}
5353
alias: "devhub"
@@ -63,7 +63,7 @@ jobs:
6363

6464
- name: Upload artifacts and logs
6565
if: always()
66-
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
66+
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@45d5655f12fc14cbd9962c5364757ccc5bc9023e
6767
with:
6868
artifactName: "build-artifacts"
6969
uploadArtifacts: true

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ jobs:
3838

3939
# Sets up Salesforce CLI authentication for the DevHub
4040
- name: Authenticate DevHub
41-
uses: navikt/sf-platform/.github/actions/authenticateOrg@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
41+
uses: navikt/sf-platform/.github/actions/authenticateOrg@45d5655f12fc14cbd9962c5364757ccc5bc9023e
4242
with:
4343
auth-url: ${{ secrets.SF_DEVHUB_URL }}
4444
alias: "devhub"
4545
setDefaultDevhubUsername: "true"
4646

4747
# Sets up Salesforce CLI authentication for the DevHub
4848
- name: Authenticate Target Org
49-
uses: navikt/sf-platform/.github/actions/authenticateOrg@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
49+
uses: navikt/sf-platform/.github/actions/authenticateOrg@45d5655f12fc14cbd9962c5364757ccc5bc9023e
5050
with:
5151
auth-url: ${{ secrets.TARGET_ORG_URL }}
5252
alias: "targetorg"

.github/workflows/validatePackageChangesOnPr.yml

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

34-
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@5a37e9b86c238d23ec7bc31cd8d437daaad6e952
34+
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@45d5655f12fc14cbd9962c5364757ccc5bc9023e
3535
id: checkChanges
3636

3737
validateChanges:
@@ -50,7 +50,7 @@ jobs:
5050
persist-credentials: true
5151

5252
- name: Authenticate DevHub
53-
uses: navikt/sf-platform/.github/actions/authenticateOrg@8cb5b2d5a19ce8ccfd5c4ee95cecddc4d5fa984f
53+
uses: navikt/sf-platform/.github/actions/authenticateOrg@45d5655f12fc14cbd9962c5364757ccc5bc9023e
5454
with:
5555
auth-url: ${{ secrets.SF_DEVHUB_URL }}
5656
alias: "devhub"

0 commit comments

Comments
 (0)