From 3c03f40eca907934184b296cd774f5ad1ab6af7d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Sep 2025 03:28:11 +0000 Subject: [PATCH] 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 [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv). Updates `navikt/sf-platform` from 06dfcd9b3ba08f6c27a650c6f315ed5730491540 to bc917d0e489c10c35c7f66988d09a2dc820d5872 - [Release notes](https://github.com/navikt/sf-platform/releases) - [Commits](https://github.com/navikt/sf-platform/compare/06dfcd9b3ba08f6c27a650c6f315ed5730491540...bc917d0e489c10c35c7f66988d09a2dc820d5872) Updates `astral-sh/setup-uv` from 6.6.1 to 6.7.0 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](https://github.com/astral-sh/setup-uv/compare/557e51de59eb14aaaba2ed9621916900a91d50c6...b75a909f75acd358c2196fb9a5f1299a9a8868a4) --- updated-dependencies: - dependency-name: navikt/sf-platform dependency-version: bc917d0e489c10c35c7f66988d09a2dc820d5872 dependency-type: direct:production dependency-group: gha - dependency-name: astral-sh/setup-uv dependency-version: 6.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gha ... Signed-off-by: dependabot[bot] --- .github/workflows/buildAndPublish.yml | 6 +++--- .github/workflows/ciStaticCodeValidation.yml | 2 +- .github/workflows/createRelease.yml | 2 +- .github/workflows/quickbuildOnPush.yml | 4 ++-- .github/workflows/releaseToDev.yml | 2 +- .github/workflows/releaseToProd.yml | 2 +- .github/workflows/validatePackageChangesOnPr.yml | 6 +++--- .github/workflows/zizmor.yml | 2 +- 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/buildAndPublish.yml b/.github/workflows/buildAndPublish.yml index 314c90b..55fa5e2 100644 --- a/.github/workflows/buildAndPublish.yml +++ b/.github/workflows/buildAndPublish.yml @@ -43,7 +43,7 @@ jobs: persist-credentials: false # Check for changes in the src directory excluding .md files - - uses: navikt/sf-platform/.github/actions/checkForPackageChanges@06dfcd9b3ba08f6c27a650c6f315ed5730491540 + - uses: navikt/sf-platform/.github/actions/checkForPackageChanges@bc917d0e489c10c35c7f66988d09a2dc820d5872 id: checkChanges buildAndPublish: @@ -155,14 +155,14 @@ jobs: - name: Push logged metrics if: always() # Always push metrics regardless of build success - uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@06dfcd9b3ba08f6c27a650c6f315ed5730491540 + uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@bc917d0e489c10c35c7f66988d09a2dc820d5872 with: metricsKey: ${{ secrets.METRICS_KEYS }} # 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@06dfcd9b3ba08f6c27a650c6f315ed5730491540 + uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@bc917d0e489c10c35c7f66988d09a2dc820d5872 with: artifactName: build-artifacts uploadArtifacts: true diff --git a/.github/workflows/ciStaticCodeValidation.yml b/.github/workflows/ciStaticCodeValidation.yml index f74539a..a2ac102 100644 --- a/.github/workflows/ciStaticCodeValidation.yml +++ b/.github/workflows/ciStaticCodeValidation.yml @@ -90,7 +90,7 @@ jobs: - name: Prettier Check if: ${{ !cancelled() && steps.paths.outcome == 'success' }} - uses: navikt/sf-platform/.github/actions/prettierCheck@06dfcd9b3ba08f6c27a650c6f315ed5730491540 + uses: navikt/sf-platform/.github/actions/prettierCheck@bc917d0e489c10c35c7f66988d09a2dc820d5872 with: pathToValidate: ${{ steps.paths.outputs.prettierPathsToValidate }} diff --git a/.github/workflows/createRelease.yml b/.github/workflows/createRelease.yml index ba26282..44697cd 100644 --- a/.github/workflows/createRelease.yml +++ b/.github/workflows/createRelease.yml @@ -272,6 +272,6 @@ jobs: echo "::endgroup::" - name: Push logged metrics - uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@06dfcd9b3ba08f6c27a650c6f315ed5730491540 + uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@bc917d0e489c10c35c7f66988d09a2dc820d5872 with: metricsKey: ${{ secrets.METRICS_KEYS }} diff --git a/.github/workflows/quickbuildOnPush.yml b/.github/workflows/quickbuildOnPush.yml index b2d8636..1b10c33 100644 --- a/.github/workflows/quickbuildOnPush.yml +++ b/.github/workflows/quickbuildOnPush.yml @@ -28,7 +28,7 @@ jobs: with: fetch-depth: 0 persist-credentials: false - - uses: navikt/sf-platform/.github/actions/checkForPackageChanges@06dfcd9b3ba08f6c27a650c6f315ed5730491540 + - uses: navikt/sf-platform/.github/actions/checkForPackageChanges@bc917d0e489c10c35c7f66988d09a2dc820d5872 id: checkChanges quickBuild: @@ -64,7 +64,7 @@ jobs: - name: Upload artifacts and logs if: always() - uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@06dfcd9b3ba08f6c27a650c6f315ed5730491540 + uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@bc917d0e489c10c35c7f66988d09a2dc820d5872 with: artifactName: build-artifacts uploadArtifacts: true diff --git a/.github/workflows/releaseToDev.yml b/.github/workflows/releaseToDev.yml index 2bf43d5..04d196a 100644 --- a/.github/workflows/releaseToDev.yml +++ b/.github/workflows/releaseToDev.yml @@ -73,6 +73,6 @@ jobs: auth_token: ${{ secrets.GITHUB_TOKEN }} - name: Push logged metrics - uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@06dfcd9b3ba08f6c27a650c6f315ed5730491540 + uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@bc917d0e489c10c35c7f66988d09a2dc820d5872 with: metricsKey: ${{ secrets.METRICS_KEYS }} diff --git a/.github/workflows/releaseToProd.yml b/.github/workflows/releaseToProd.yml index 6e33aba..690f130 100644 --- a/.github/workflows/releaseToProd.yml +++ b/.github/workflows/releaseToProd.yml @@ -54,6 +54,6 @@ jobs: auth_token: ${{ secrets.GITHUB_TOKEN }} - name: Push logged metrics - uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@06dfcd9b3ba08f6c27a650c6f315ed5730491540 + uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@bc917d0e489c10c35c7f66988d09a2dc820d5872 with: metricsKey: ${{ secrets.METRICS_KEYS }} diff --git a/.github/workflows/validatePackageChangesOnPr.yml b/.github/workflows/validatePackageChangesOnPr.yml index 2e069dd..99a5b44 100644 --- a/.github/workflows/validatePackageChangesOnPr.yml +++ b/.github/workflows/validatePackageChangesOnPr.yml @@ -32,7 +32,7 @@ jobs: fetch-depth: 0 persist-credentials: false - - uses: navikt/sf-platform/.github/actions/checkForPackageChanges@06dfcd9b3ba08f6c27a650c6f315ed5730491540 + - uses: navikt/sf-platform/.github/actions/checkForPackageChanges@bc917d0e489c10c35c7f66988d09a2dc820d5872 id: checkChanges validateChanges: @@ -107,7 +107,7 @@ jobs: fi - name: Push logged metrics - uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@06dfcd9b3ba08f6c27a650c6f315ed5730491540 + uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@bc917d0e489c10c35c7f66988d09a2dc820d5872 with: metricsKey: ${{ secrets.METRICS_KEYS }} @@ -121,6 +121,6 @@ jobs: pull-requests: write steps: - name: Set pull request to draft - uses: navikt/sf-platform/.github/actions/setPrToDraft@06dfcd9b3ba08f6c27a650c6f315ed5730491540 + uses: navikt/sf-platform/.github/actions/setPrToDraft@bc917d0e489c10c35c7f66988d09a2dc820d5872 with: pullRequestId: ${{ github.event.pull_request.node_id }} diff --git a/.github/workflows/zizmor.yml b/.github/workflows/zizmor.yml index d37c38c..f950de1 100644 --- a/.github/workflows/zizmor.yml +++ b/.github/workflows/zizmor.yml @@ -28,7 +28,7 @@ jobs: persist-credentials: false - name: Install the latest version of uv - uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 + uses: astral-sh/setup-uv@b75a909f75acd358c2196fb9a5f1299a9a8868a4 - name: Run zizmor run: uvx zizmor --format sarif . > results.sarif