Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/buildAndPublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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"

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ciStaticCodeValidation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/createRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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 }}
4 changes: 2 additions & 2 deletions .github/workflows/quickbuildOnPush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/releaseToDev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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 }}
4 changes: 2 additions & 2 deletions .github/workflows/releaseToProd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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 }}
6 changes: 3 additions & 3 deletions .github/workflows/validatePackageChangesOnPr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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 }}

Expand All @@ -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 }}
2 changes: 1 addition & 1 deletion .github/workflows/zizmor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading