Skip to content

Commit f5200a5

Browse files
committed
Update Cookiecutter
1 parent 4943cf7 commit f5200a5

File tree

11 files changed

+17
-17
lines changed

11 files changed

+17
-17
lines changed

cookiecutter/ci/{{ cookiecutter.__project_name }}/.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
build:
99
runs-on: "ubuntu-latest"
1010
steps:
11-
- uses: "actions/checkout@v4"
11+
- uses: "actions/checkout@v5"
1212
{%- include "cache_action" %}
1313
- name: "Set up Python"
1414
uses: "actions/setup-python@v5"

cookiecutter/ci/{{ cookiecutter.__project_name }}/.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: "Checkout repository"
21-
uses: "actions/checkout@v4"
21+
uses: "actions/checkout@v5"
2222
- name: "Initialize CodeQL"
2323
uses: "github/codeql-action/init@v3"
2424
with:

cookiecutter/ci/{{ cookiecutter.__project_name }}/.github/workflows/collect_changes.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
collect-changes:
99
runs-on: "ubuntu-latest"
1010
steps:
11-
- uses: "actions/checkout@v4"
11+
- uses: "actions/checkout@v5"
1212
with:
1313
ref: "main"
1414
fetch-depth: 0

cookiecutter/ci/{{ cookiecutter.__project_name }}/.github/workflows/cookiecutter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
update-ci:
1414
runs-on: "ubuntu-latest"
1515
steps:
16-
- uses: "actions/checkout@v4"
16+
- uses: "actions/checkout@v5"
1717
with:
1818
repository: "pulp/pulp-cli"
1919
path: "pulp-cli"
20-
- uses: "actions/checkout@v4"
20+
- uses: "actions/checkout@v5"
2121
with:
2222
{%- raw %}
2323
token: "${{ secrets.RELEASE_TOKEN }}"

cookiecutter/ci/{{ cookiecutter.__project_name }}/.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
- "3.11"
1515
- "3.13"
1616
steps:
17-
- uses: "actions/checkout@v4"
17+
- uses: "actions/checkout@v5"
1818
{%- include "cache_action" %}
1919
- name: "Download wheels"
20-
uses: "actions/download-artifact@v4"
20+
uses: "actions/download-artifact@v5"
2121
with:
2222
name: "pulp_cli_packages"
2323
- name: "Set up Python"

cookiecutter/ci/{{ cookiecutter.__project_name }}/.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
check-commits:
3636
runs-on: "ubuntu-latest"
3737
steps:
38-
- uses: "actions/checkout@v4"
38+
- uses: "actions/checkout@v5"
3939
with:
4040
fetch-depth: 0
4141
- name: "Set up Python"

cookiecutter/ci/{{ cookiecutter.__project_name }}/.github/workflows/pr_checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
permissions:
2020
pull-requests: "write"
2121
steps:
22-
- uses: "actions/checkout@v4"
22+
- uses: "actions/checkout@v5"
2323
with:
2424
fetch-depth: 0
2525
- uses: "actions/setup-python@v5"

cookiecutter/ci/{{ cookiecutter.__project_name }}/.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
needs: "build"
1515
runs-on: "ubuntu-latest"
1616
steps:
17-
- uses: "actions/checkout@v4"
17+
- uses: "actions/checkout@v5"
1818
- name: "Download wheels"
19-
uses: "actions/download-artifact@v4"
19+
uses: "actions/download-artifact@v5"
2020
with:
2121
name: "pulp_cli_packages"
2222
- name: "Set up Python"

cookiecutter/ci/{{ cookiecutter.__project_name }}/.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: "Release"
1010
runs-on: "ubuntu-latest"
1111
steps:
12-
- uses: "actions/checkout@v4"
12+
- uses: "actions/checkout@v5"
1313
with:
1414
token: "${{ secrets.RELEASE_TOKEN }}"
1515
- name: "Set up Python"

cookiecutter/ci/{{ cookiecutter.__project_name }}/.github/workflows/release_branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
create-release-branch:
88
runs-on: "ubuntu-latest"
99
steps:
10-
- uses: "actions/checkout@v4"
10+
- uses: "actions/checkout@v5"
1111
with:
1212
token: "${{ secrets.RELEASE_TOKEN }}"
1313
- name: "Set up Python"

0 commit comments

Comments
 (0)