Skip to content

Commit a9c460f

Browse files
chore(deps): bump the gha group with 2 updates (#63)
Bumps the gha group with 2 updates: [navikt/sf-platform](https://github.com/navikt/sf-platform) and [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv). Updates `navikt/sf-platform` from 157da25 to 620c810 - [Release notes](https://github.com/navikt/sf-platform/releases) - [Commits](157da25...620c810) Updates `astral-sh/setup-uv` from 6.0.0 to 6.0.1 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@c7f87aa...6b9c606) --- updated-dependencies: - dependency-name: navikt/sf-platform dependency-version: 620c810 dependency-type: direct:production dependency-group: gha - dependency-name: astral-sh/setup-uv dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: gha ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 620c810 commit a9c460f

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

.github/workflows/buildAndPublish.yml

Lines changed: 2 additions & 2 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@157da2591934750237f41cc7a069b8908d10a120
43+
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@620c810c35684e2f515acec0f67211e8c756a98a
4444
id: checkChanges
4545

4646
buildAndPublish:
@@ -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@157da2591934750237f41cc7a069b8908d10a120
140+
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@620c810c35684e2f515acec0f67211e8c756a98a
141141
with:
142142
artifactName: "build-artifacts"
143143
uploadArtifacts: true

.github/workflows/ciCreatePlatformPool.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
canReplenishPool: ${{ steps.checkLimits.outputs.canReplenishPool }}
4444
steps:
4545
- name: Setup SF CLI
46-
uses: navikt/sf-platform/.github/actions/installSfCli@157da2591934750237f41cc7a069b8908d10a120
46+
uses: navikt/sf-platform/.github/actions/installSfCli@620c810c35684e2f515acec0f67211e8c756a98a
4747
with:
4848
version: ${{ vars.SF_CLI_VERSION }}
4949

.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@157da2591934750237f41cc7a069b8908d10a120
34+
uses: navikt/sf-platform/.github/actions/installSfCli@620c810c35684e2f515acec0f67211e8c756a98a
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@157da2591934750237f41cc7a069b8908d10a120
84+
uses: navikt/sf-platform/.github/actions/prettierCheck@620c810c35684e2f515acec0f67211e8c756a98a
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@157da2591934750237f41cc7a069b8908d10a120
90+
uses: navikt/sf-platform/.github/actions/eslintCheck@620c810c35684e2f515acec0f67211e8c756a98a
9191
with:
9292
pathToValidate: ${{ steps.paths.outputs.eslintPathsToValidate }}
9393

.github/workflows/on_push_pr_branch.yml

Lines changed: 2 additions & 2 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@157da2591934750237f41cc7a069b8908d10a120
43+
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@620c810c35684e2f515acec0f67211e8c756a98a
4444
id: checkChanges
4545

4646
# Validate changes
@@ -181,7 +181,7 @@ jobs:
181181
# The logs are uploaded with the name "build-logs"
182182
- name: Upload artifacts and logs
183183
if: always()
184-
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@157da2591934750237f41cc7a069b8908d10a120
184+
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@620c810c35684e2f515acec0f67211e8c756a98a
185185
with:
186186
artifactName: "build-artifacts"
187187
uploadArtifacts: true

.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@157da2591934750237f41cc7a069b8908d10a120
30+
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@620c810c35684e2f515acec0f67211e8c756a98a
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@157da2591934750237f41cc7a069b8908d10a120
66+
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@620c810c35684e2f515acec0f67211e8c756a98a
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@157da2591934750237f41cc7a069b8908d10a120
33+
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@620c810c35684e2f515acec0f67211e8c756a98a
3434
id: checkChanges
3535

3636
validateChanges:
@@ -114,6 +114,6 @@ jobs:
114114
pull-requests: write
115115
steps:
116116
- name: Set pull request to draft
117-
uses: navikt/sf-platform/.github/actions/setPrToDraft@157da2591934750237f41cc7a069b8908d10a120
117+
uses: navikt/sf-platform/.github/actions/setPrToDraft@620c810c35684e2f515acec0f67211e8c756a98a
118118
with:
119119
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@c7f87aa956e4c323abf06d5dec078e358f6b4d04
31+
uses: astral-sh/setup-uv@6b9c6063abd6010835644d4c2e1bef4cf5cd0fca
3232

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

0 commit comments

Comments
 (0)