Skip to content

Commit 948310e

Browse files
committed
chore: update deps
1 parent ee4a36c commit 948310e

8 files changed

Lines changed: 269 additions & 255 deletions

File tree

.github/workflows/cd.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@ jobs:
1919
# ====================================================
2020
semantic-release:
2121
name: semantic-release
22-
uses: wislertt/zerv/.github/workflows/shared-semantic-release.yml@27570d5b52a04e0e970ae662464aec147e320e6d # v0.8.11
22+
uses: wislertt/zerv/.github/workflows/shared-semantic-release.yml@3be92cd48b13e9710b1d7b5e34c4fb5906d8af49 # v0.8.12
2323
with:
2424
allowed_workflow_dispatch_branches: '["main"]'
2525
fail_on_invalid_workflow_dispatch_ref: true
2626

2727
zerv-versioning:
2828
needs: semantic-release
2929
if: needs.semantic-release.outputs.is_valid_semantic_release == 'true'
30-
uses: wislertt/zerv/.github/workflows/shared-zerv-versioning.yml@27570d5b52a04e0e970ae662464aec147e320e6d # v0.8.11
30+
uses: wislertt/zerv/.github/workflows/shared-zerv-versioning.yml@3be92cd48b13e9710b1d7b5e34c4fb5906d8af49 # v0.8.12
3131

3232
create-version-prefix-tags:
3333
needs: zerv-versioning
34-
uses: wislertt/zerv/.github/workflows/shared-create-tags.yml@27570d5b52a04e0e970ae662464aec147e320e6d # v0.8.11
34+
uses: wislertt/zerv/.github/workflows/shared-create-tags.yml@3be92cd48b13e9710b1d7b5e34c4fb5906d8af49 # v0.8.12
3535
with:
3636
tags: >-
3737
[

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ jobs:
1818
# ====================================================
1919
check-pre-release:
2020
name: check-pre-release
21-
uses: wislertt/zerv/.github/workflows/shared-check-pr-label-and-branch.yml@27570d5b52a04e0e970ae662464aec147e320e6d # v0.8.11
21+
uses: wislertt/zerv/.github/workflows/shared-check-pr-label-and-branch.yml@3be92cd48b13e9710b1d7b5e34c4fb5906d8af49 # v0.8.12
2222
with:
2323
target_label: "pre-release"
2424
branch_prefixes: '["release/"]'
2525

2626
zerv-versioning:
2727
name: zerv-versioning
2828
needs: check-pre-release
29-
uses: wislertt/zerv/.github/workflows/shared-zerv-versioning.yml@27570d5b52a04e0e970ae662464aec147e320e6d # v0.8.11
29+
uses: wislertt/zerv/.github/workflows/shared-zerv-versioning.yml@3be92cd48b13e9710b1d7b5e34c4fb5906d8af49 # v0.8.12
3030
with:
3131
schema: ${{ (needs.check-pre-release.outputs.is_valid == 'true' && 'standard-base-prerelease-post') || '' }}
3232

@@ -35,7 +35,7 @@ jobs:
3535
name: tag-pre-release
3636
needs: [zerv-versioning, check-pre-release]
3737
if: needs.check-pre-release.outputs.is_valid == 'true'
38-
uses: wislertt/zerv/.github/workflows/shared-create-tags.yml@27570d5b52a04e0e970ae662464aec147e320e6d # v0.8.11
38+
uses: wislertt/zerv/.github/workflows/shared-create-tags.yml@3be92cd48b13e9710b1d7b5e34c4fb5906d8af49 # v0.8.12
3939
with:
4040
tags: '["${{ fromJson(needs.zerv-versioning.outputs.versions).v_semver }}"]'
4141

@@ -56,7 +56,7 @@ jobs:
5656
# ====================================================
5757
check-deploy-env-labels:
5858
name: check-deploy-env-labels
59-
uses: wislertt/zerv/.github/workflows/shared-check-pr-labels-with-prefix.yml@27570d5b52a04e0e970ae662464aec147e320e6d # v0.8.11
59+
uses: wislertt/zerv/.github/workflows/shared-check-pr-labels-with-prefix.yml@3be92cd48b13e9710b1d7b5e34c4fb5906d8af49 # v0.8.12
6060
with:
6161
prefix: "deploy-"
6262

@@ -76,7 +76,7 @@ jobs:
7676
# ====================================================
7777
check-deploy-no-env-label:
7878
name: check-deploy-no-env-label
79-
uses: wislertt/zerv/.github/workflows/shared-check-pr-label-and-branch.yml@27570d5b52a04e0e970ae662464aec147e320e6d # v0.8.11
79+
uses: wislertt/zerv/.github/workflows/shared-check-pr-label-and-branch.yml@3be92cd48b13e9710b1d7b5e34c4fb5906d8af49 # v0.8.12
8080
with:
8181
target_label: "deploy"
8282

.github/workflows/deploy-env.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
lock:
3737
name: lock-${{ inputs.lock_key }}
3838
if: fromJson(inputs.deploy_labels)[format('deploy-{0}', inputs.env)]
39-
uses: wislertt/zerv/.github/workflows/shared-lock.yml@27570d5b52a04e0e970ae662464aec147e320e6d # v0.8.11
39+
uses: wislertt/zerv/.github/workflows/shared-lock.yml@3be92cd48b13e9710b1d7b5e34c4fb5906d8af49 # v0.8.12
4040
with:
4141
key: ${{ inputs.lock_key }}
4242
key_owner: ${{ inputs.lock_key_owner }}
@@ -56,7 +56,7 @@ jobs:
5656
5757
unlock:
5858
name: unlock-${{ inputs.lock_key }}
59-
uses: wislertt/zerv/.github/workflows/shared-unlock.yml@27570d5b52a04e0e970ae662464aec147e320e6d # v0.8.11
59+
uses: wislertt/zerv/.github/workflows/shared-unlock.yml@3be92cd48b13e9710b1d7b5e34c4fb5906d8af49 # v0.8.12
6060
needs: [lock, deploy]
6161
if: always() && inputs.unlock_after_deploy == true && needs.lock.result != 'skipped'
6262
with:

.github/workflows/pr-unlock.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99

1010
jobs:
1111
shared-pr-unlock:
12-
uses: wislertt/zerv/.github/workflows/shared-pr-unlock.yml@27570d5b52a04e0e970ae662464aec147e320e6d # v0.8.11
12+
uses: wislertt/zerv/.github/workflows/shared-pr-unlock.yml@3be92cd48b13e9710b1d7b5e34c4fb5906d8af49 # v0.8.12
1313
with:
1414
environments: '["d", "n", "p"]'
1515
deploy_label_prefix: "deploy-"

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,14 +97,14 @@ jobs:
9797

9898
- name: upload-coverage-reports-to-codecov
9999
if: matrix.os == 'ubuntu-latest'
100-
uses: codecov/codecov-action@1af58845a975a7985b0beb0cbe6fbbb71a41dbad # v5.5.3
100+
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0
101101
with:
102102
fail_ci_if_error: true
103103
token: ${{ secrets.CODECOV_TOKEN }}
104104
verbose: true
105105

106106
- name: sonarqube-scan
107107
if: matrix.os == 'ubuntu-latest'
108-
uses: SonarSource/sonarqube-scan-action@a31c9398be7ace6bbfaf30c0bd5d415f843d45e9 # v7.0.0
108+
uses: SonarSource/sonarqube-scan-action@299e4b793aaa83bf2aba7c9c14bedbb485688ec4 # v7.1.0
109109
env:
110110
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repos:
88
- id: check-added-large-files
99
args: ["--maxkb=2000"]
1010
- repo: https://github.com/gitleaks/gitleaks
11-
rev: v8.30.1
11+
rev: v8.30.0
1212
hooks:
1313
- name: gitleaks
1414
id: gitleaks

0 commit comments

Comments
 (0)