diff --git a/.github/workflows/buildAndPublish.yml b/.github/workflows/buildAndPublish.yml index 5ce5620..f80efd7 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@4591965e00c659878b6671ad54156e002d4709af + - uses: navikt/sf-platform/.github/actions/checkForPackageChanges@6a0baa17871b9ecb6b8d2b235c27ecaab120ed68 id: checkChanges buildAndPublish: @@ -74,7 +74,7 @@ jobs: persist-credentials: true - name: Authenticate Node - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: registry-url: "https://npm.pkg.github.com" @@ -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@4591965e00c659878b6671ad54156e002d4709af + uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@6a0baa17871b9ecb6b8d2b235c27ecaab120ed68 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@4591965e00c659878b6671ad54156e002d4709af + uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@6a0baa17871b9ecb6b8d2b235c27ecaab120ed68 with: artifactName: build-artifacts uploadArtifacts: true diff --git a/.github/workflows/ciStaticCodeValidation.yml b/.github/workflows/ciStaticCodeValidation.yml index 828f0e0..4cd72be 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@4591965e00c659878b6671ad54156e002d4709af + uses: navikt/sf-platform/.github/actions/prettierCheck@6a0baa17871b9ecb6b8d2b235c27ecaab120ed68 with: pathToValidate: ${{ steps.paths.outputs.prettierPathsToValidate }} diff --git a/.github/workflows/createRelease.yml b/.github/workflows/createRelease.yml index dafa606..af3efae 100644 --- a/.github/workflows/createRelease.yml +++ b/.github/workflows/createRelease.yml @@ -48,7 +48,7 @@ jobs: printf 'RELEASE_NAME=%q%s' "$RELEASE_NAME_PREFIX" "$(date +%s%3N)" >> "$GITHUB_ENV" - name: Authenticate Node - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: registry-url: https://npm.pkg.github.com @@ -272,6 +272,6 @@ jobs: echo "::endgroup::" - name: Push logged metrics - uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@4591965e00c659878b6671ad54156e002d4709af + uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@6a0baa17871b9ecb6b8d2b235c27ecaab120ed68 with: metricsKey: ${{ secrets.METRICS_KEYS }} diff --git a/.github/workflows/quickbuildOnPush.yml b/.github/workflows/quickbuildOnPush.yml index afbc232..4a6636e 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@4591965e00c659878b6671ad54156e002d4709af + - uses: navikt/sf-platform/.github/actions/checkForPackageChanges@6a0baa17871b9ecb6b8d2b235c27ecaab120ed68 id: checkChanges quickBuild: @@ -64,7 +64,7 @@ jobs: - name: Upload artifacts and logs if: always() - uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@4591965e00c659878b6671ad54156e002d4709af + uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@6a0baa17871b9ecb6b8d2b235c27ecaab120ed68 with: artifactName: build-artifacts uploadArtifacts: true diff --git a/.github/workflows/releaseToDev.yml b/.github/workflows/releaseToDev.yml index 13d79ac..0c7d40e 100644 --- a/.github/workflows/releaseToDev.yml +++ b/.github/workflows/releaseToDev.yml @@ -45,7 +45,7 @@ jobs: NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - name: Authenticate Node - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: registry-url: https://npm.pkg.github.com @@ -73,6 +73,6 @@ jobs: auth_token: ${{ secrets.GITHUB_TOKEN }} - name: Push logged metrics - uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@4591965e00c659878b6671ad54156e002d4709af + uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@6a0baa17871b9ecb6b8d2b235c27ecaab120ed68 with: metricsKey: ${{ secrets.METRICS_KEYS }} diff --git a/.github/workflows/releaseToProd.yml b/.github/workflows/releaseToProd.yml index aaa88fe..552f9a5 100644 --- a/.github/workflows/releaseToProd.yml +++ b/.github/workflows/releaseToProd.yml @@ -32,7 +32,7 @@ jobs: NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - name: Authenticate Node - uses: actions/setup-node@v5 + uses: actions/setup-node@v6 with: registry-url: https://npm.pkg.github.com @@ -54,6 +54,6 @@ jobs: auth_token: ${{ secrets.GITHUB_TOKEN }} - name: Push logged metrics - uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@4591965e00c659878b6671ad54156e002d4709af + uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@6a0baa17871b9ecb6b8d2b235c27ecaab120ed68 with: metricsKey: ${{ secrets.METRICS_KEYS }} diff --git a/.github/workflows/validatePackageChangesOnPr.yml b/.github/workflows/validatePackageChangesOnPr.yml index ef5956a..73f80b8 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@4591965e00c659878b6671ad54156e002d4709af + - uses: navikt/sf-platform/.github/actions/checkForPackageChanges@6a0baa17871b9ecb6b8d2b235c27ecaab120ed68 id: checkChanges validateChanges: @@ -107,7 +107,7 @@ jobs: fi - name: Push logged metrics - uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@4591965e00c659878b6671ad54156e002d4709af + uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@6a0baa17871b9ecb6b8d2b235c27ecaab120ed68 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@4591965e00c659878b6671ad54156e002d4709af + uses: navikt/sf-platform/.github/actions/setPrToDraft@6a0baa17871b9ecb6b8d2b235c27ecaab120ed68 with: pullRequestId: ${{ github.event.pull_request.node_id }} diff --git a/.github/workflows/zizmor.yml b/.github/workflows/zizmor.yml index 3bbc723..6c22591 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@3259c6206f993105e3a61b142c2d97bf4b9ef83d + uses: astral-sh/setup-uv@2ddd2b9cb38ad8efd50337e8ab201519a34c9f24 - name: Run zizmor run: uvx zizmor --format sarif . > results.sarif