Skip to content

Commit eed9b4e

Browse files
chore(deps): bump the gha group with 3 updates (#112)
Bumps the gha group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [navikt/sf-platform](https://github.com/navikt/sf-platform) and [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv). Updates `actions/checkout` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@08c6903...1af3b93) Updates `navikt/sf-platform` from 8e4d95d to b79b173 - [Release notes](https://github.com/navikt/sf-platform/releases) - [Commits](8e4d95d...b79b173) Updates `astral-sh/setup-uv` from 7.1.2 to 7.1.4 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@8585678...1e862df) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: gha - dependency-name: navikt/sf-platform dependency-version: b79b173 dependency-type: direct:production dependency-group: gha - dependency-name: astral-sh/setup-uv dependency-version: 7.1.4 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 550d7b0 commit eed9b4e

File tree

8 files changed

+22
-22
lines changed

8 files changed

+22
-22
lines changed

.github/workflows/buildAndPublish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ jobs:
3737
contents: read
3838
steps:
3939
- name: Checkout
40-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
40+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
4141
with:
4242
fetch-depth: 0 # Full history needed for change detection
4343
persist-credentials: false
4444

4545
# Check for changes in the src directory excluding .md files
46-
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@8e4d95d394a4c0824ca56036b86a438894a84b49
46+
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@b79b17356be49158fff788019a38a8cf0e60d964
4747
id: checkChanges
4848

4949
buildAndPublish:
@@ -68,7 +68,7 @@ jobs:
6868
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6969
steps:
7070
- name: Checkout
71-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
71+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
7272
with:
7373
fetch-depth: 0 # Full history for release definition and changelog
7474
persist-credentials: true
@@ -155,14 +155,14 @@ jobs:
155155
156156
- name: Push logged metrics
157157
if: always() # Always push metrics regardless of build success
158-
uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@8e4d95d394a4c0824ca56036b86a438894a84b49
158+
uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@b79b17356be49158fff788019a38a8cf0e60d964
159159
with:
160160
metricsKey: ${{ secrets.METRICS_KEYS }}
161161

162162
# Upload build artifacts and logs if present
163163
- name: Upload Artifacts and Logs
164164
if: steps.build.outputs.artifactsFound == 'true'
165-
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@8e4d95d394a4c0824ca56036b86a438894a84b49
165+
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@b79b17356be49158fff788019a38a8cf0e60d964
166166
with:
167167
artifactName: build-artifacts
168168
uploadArtifacts: true

.github/workflows/ciStaticCodeValidation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
version: ${{ vars.SF_CLI_VERSION }}
5959

6060
- name: Checkout
61-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
61+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
6262
with:
6363
ref: ${{ inputs.gitRef }}
6464
fetch-depth: "0"
@@ -90,7 +90,7 @@ jobs:
9090

9191
- name: Prettier Check
9292
if: ${{ !cancelled() && steps.paths.outcome == 'success' }}
93-
uses: navikt/sf-platform/.github/actions/prettierCheck@8e4d95d394a4c0824ca56036b86a438894a84b49
93+
uses: navikt/sf-platform/.github/actions/prettierCheck@b79b17356be49158fff788019a38a8cf0e60d964
9494
with:
9595
pathToValidate: ${{ steps.paths.outputs.prettierPathsToValidate }}
9696

.github/workflows/createRelease.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
registry-url: https://npm.pkg.github.com
5454

5555
- name: Checkout
56-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
56+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
5757
with:
5858
fetch-depth: 0 # Full history for release definition and changelog
5959
persist-credentials: true
@@ -272,6 +272,6 @@ jobs:
272272
echo "::endgroup::"
273273
274274
- name: Push logged metrics
275-
uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@8e4d95d394a4c0824ca56036b86a438894a84b49
275+
uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@b79b17356be49158fff788019a38a8cf0e60d964
276276
with:
277277
metricsKey: ${{ secrets.METRICS_KEYS }}

.github/workflows/quickbuildOnPush.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ jobs:
2424
contents: read
2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
27+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
2828
with:
2929
fetch-depth: 0
3030
persist-credentials: false
31-
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@8e4d95d394a4c0824ca56036b86a438894a84b49
31+
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@b79b17356be49158fff788019a38a8cf0e60d964
3232
id: checkChanges
3333

3434
quickBuild:
@@ -42,7 +42,7 @@ jobs:
4242
packages: write
4343
steps:
4444
- name: Checkout
45-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
45+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
4646
with:
4747
fetch-depth: 0
4848
persist-credentials: true
@@ -64,7 +64,7 @@ jobs:
6464

6565
- name: Upload artifacts and logs
6666
if: always()
67-
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@8e4d95d394a4c0824ca56036b86a438894a84b49
67+
uses: navikt/sf-platform/.github/actions/uploadWorkflowArtifactsAndLogs@b79b17356be49158fff788019a38a8cf0e60d964
6868
with:
6969
artifactName: build-artifacts
7070
uploadArtifacts: true

.github/workflows/releaseToDev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,6 @@ jobs:
7373
auth_token: ${{ secrets.GITHUB_TOKEN }}
7474

7575
- name: Push logged metrics
76-
uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@8e4d95d394a4c0824ca56036b86a438894a84b49
76+
uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@b79b17356be49158fff788019a38a8cf0e60d964
7777
with:
7878
metricsKey: ${{ secrets.METRICS_KEYS }}

.github/workflows/releaseToProd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ jobs:
5454
auth_token: ${{ secrets.GITHUB_TOKEN }}
5555

5656
- name: Push logged metrics
57-
uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@8e4d95d394a4c0824ca56036b86a438894a84b49
57+
uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@b79b17356be49158fff788019a38a8cf0e60d964
5858
with:
5959
metricsKey: ${{ secrets.METRICS_KEYS }}

.github/workflows/validatePackageChangesOnPr.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
contents: read
2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
30+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
3131
with:
3232
fetch-depth: 0
3333
persist-credentials: false
3434

35-
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@8e4d95d394a4c0824ca56036b86a438894a84b49
35+
- uses: navikt/sf-platform/.github/actions/checkForPackageChanges@b79b17356be49158fff788019a38a8cf0e60d964
3636
id: checkChanges
3737

3838
validateChanges:
@@ -53,7 +53,7 @@ jobs:
5353
PULL_REQUEST_ID: ${{ github.event.pull_request.node_id }}
5454
steps:
5555
- name: Checkout
56-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
56+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
5757
with:
5858
fetch-depth: 0
5959
persist-credentials: false
@@ -107,7 +107,7 @@ jobs:
107107
fi
108108
109109
- name: Push logged metrics
110-
uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@8e4d95d394a4c0824ca56036b86a438894a84b49
110+
uses: navikt/sf-platform/.github/actions/pushLoggedMetrics@b79b17356be49158fff788019a38a8cf0e60d964
111111
with:
112112
metricsKey: ${{ secrets.METRICS_KEYS }}
113113

@@ -121,6 +121,6 @@ jobs:
121121
pull-requests: write
122122
steps:
123123
- name: Set pull request to draft
124-
uses: navikt/sf-platform/.github/actions/setPrToDraft@8e4d95d394a4c0824ca56036b86a438894a84b49
124+
uses: navikt/sf-platform/.github/actions/setPrToDraft@b79b17356be49158fff788019a38a8cf0e60d964
125125
with:
126126
pullRequestId: ${{ github.event.pull_request.node_id }}

.github/workflows/zizmor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323
actions: read
2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
26+
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
2727
with:
2828
persist-credentials: false
2929

3030
- name: Install the latest version of uv
31-
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41
31+
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244
3232

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

0 commit comments

Comments
 (0)