Skip to content

Commit a980b49

Browse files
authored
Merge branch 'main' into add-zenable-check-hook
2 parents 670b496 + a3959ef commit a980b49

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

{{cookiecutter.project_name|replace(" ", "")}}/.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
contents: write
2424
steps:
2525
- name: Checkout the repository
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727
with:
2828
persist-credentials: 'false'
2929
- name: Bootstrap repository
@@ -50,7 +50,7 @@ jobs:
5050
runs-on: ubuntu-24.04
5151
steps:
5252
- name: Checkout the repository
53-
uses: actions/checkout@v4
53+
uses: actions/checkout@v5
5454
with:
5555
persist-credentials: 'false'
5656
- name: Bootstrap repository
@@ -72,7 +72,7 @@ jobs:
7272
- linux/arm64
7373
steps:
7474
- name: Checkout code
75-
uses: actions/checkout@v4
75+
uses: actions/checkout@v5
7676
with:
7777
persist-credentials: 'false'
7878
- name: Bootstrap repository
@@ -147,7 +147,7 @@ jobs:
147147
exit 1
148148
fi
149149
- name: Checkout the repository
150-
uses: actions/checkout@v4
150+
uses: actions/checkout@v5
151151
- name: Scan workflow logs for warnings and errors
152152
run: scripts/scan_workflow_logs.sh {% raw %}${{ github.run_id }}{% endraw %}
153153
env:

{{cookiecutter.project_name|replace(" ", "")}}/.github/workflows/commit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-24.04
2020
steps:
2121
- name: Checkout the repository
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323
with:
2424
persist-credentials: 'false'
2525
- name: Bootstrap repository
@@ -40,7 +40,7 @@ jobs:
4040
- linux/arm64
4141
steps:
4242
- name: Checkout the repository
43-
uses: actions/checkout@v4
43+
uses: actions/checkout@v5
4444
with:
4545
fetch-depth: 0
4646
persist-credentials: 'false'

{{cookiecutter.project_name|replace(" ", "")}}/.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
tag: ${{ "{{ steps.release.outputs.tag }}" }}
2222
steps:
2323
- name: Checkout the repository
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
with:
2626
fetch-depth: 0
2727
persist-credentials: 'false'
@@ -56,7 +56,7 @@ jobs:
5656
runs-on: ubuntu-24.04
5757
steps:
5858
- name: Checkout the repository
59-
uses: actions/checkout@v4
59+
uses: actions/checkout@v5
6060
with:
6161
fetch-depth: 0
6262
ref: ${{ "{{ needs.release.outputs.tag }}" }}

{{cookiecutter.project_name|replace(" ", "")}}/.github/workflows/security.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- name: Checkout the repository
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535
with:
3636
persist-credentials: 'false'
3737
- name: Bootstrap repository

{{cookiecutter.project_name|replace(" ", "")}}/.github/workflows/update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
pull-requests: write
2323
steps:
2424
- name: Checkout the repository
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626
with:
2727
persist-credentials: 'false'
2828
- name: Bootstrap repository

{{cookiecutter.project_name|replace(" ", "")}}/.github/workflows/validate_pr_titles.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
# https://github.com/amannn/action-semantic-pull-request/releases
23-
- uses: amannn/action-semantic-pull-request@v5
23+
- uses: amannn/action-semantic-pull-request@v6
2424
env:
2525
GITHUB_TOKEN: ${{ "{{ secrets.GITHUB_TOKEN }}" }}
2626
with:

0 commit comments

Comments
 (0)