Skip to content

Commit acd03a6

Browse files
committed
Update GH actions
Some of them were marked deprecated.
1 parent 2a3c52c commit acd03a6

24 files changed

Lines changed: 55 additions & 55 deletions

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
build:
99
runs-on: "ubuntu-latest"
1010
steps:
11-
- uses: "actions/checkout@v5"
12-
- uses: "actions/cache@v4"
11+
- uses: "actions/checkout@v6"
12+
- uses: "actions/cache@v5"
1313
with:
1414
path: "~/.cache/pip"
1515
key: "${{ runner.os }}-pip-${{ hashFiles('**/*requirements.txt', '**/*constraints.lock', '**/setup.py', '**/pyproject.toml') }}"
@@ -27,7 +27,7 @@ jobs:
2727
run: |
2828
make build
2929
- name: "Upload wheels"
30-
uses: "actions/upload-artifact@v4"
30+
uses: "actions/upload-artifact@v6"
3131
with:
3232
name: "pulp_cli_packages"
3333
path: |

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ jobs:
1818

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

2727
- name: "Perform CodeQL Analysis"
28-
uses: "github/codeql-action/analyze@v3"
28+
uses: "github/codeql-action/analyze@v4"
2929
with:
3030
category: "/language:python"
3131
...

.github/workflows/collect_changes.yml

Lines changed: 2 additions & 2 deletions
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@v5"
11+
- uses: "actions/checkout@v6"
1212
with:
1313
ref: "main"
1414
fetch-depth: 0
@@ -24,7 +24,7 @@ jobs:
2424
pip install GitPython packaging
2525
python3 .ci/scripts/collect_changes.py
2626
- name: "Create Pull Request"
27-
uses: "peter-evans/create-pull-request@v7"
27+
uses: "peter-evans/create-pull-request@v8"
2828
id: "create_pr"
2929
with:
3030
token: "${{ secrets.RELEASE_TOKEN }}"

.github/workflows/cookiecutter.yml

Lines changed: 3 additions & 3 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@v5"
16+
- uses: "actions/checkout@v6"
1717
with:
1818
repository: "pulp/pulp-cli"
1919
path: "pulp-cli"
20-
- uses: "actions/checkout@v5"
20+
- uses: "actions/checkout@v6"
2121
with:
2222
token: "${{ secrets.RELEASE_TOKEN }}"
2323
path: "pulp-cli"
@@ -41,7 +41,7 @@ jobs:
4141
git commit -m "Update cookiecutter"
4242
fi
4343
- name: "Create Pull Request"
44-
uses: "peter-evans/create-pull-request@v7"
44+
uses: "peter-evans/create-pull-request@v8"
4545
id: "create_pr"
4646
with:
4747
token: "${{ secrets.RELEASE_TOKEN }}"

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ jobs:
1414
- "3.11"
1515
- "3.14"
1616
steps:
17-
- uses: "actions/checkout@v5"
18-
- uses: "actions/cache@v4"
17+
- uses: "actions/checkout@v6"
18+
- uses: "actions/cache@v5"
1919
with:
2020
path: "~/.cache/pip"
2121
key: "${{ runner.os }}-pip-${{ hashFiles('**/*requirements.txt', '**/*constraints.lock', '**/setup.py', '**/pyproject.toml') }}"
2222
restore-keys: |
2323
${{ runner.os }}-pip-
2424
2525
- name: "Download wheels"
26-
uses: "actions/download-artifact@v5"
26+
uses: "actions/download-artifact@v8"
2727
with:
2828
name: "pulp_cli_packages"
2929
- name: "Set up Python"

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
check-commits:
3434
runs-on: "ubuntu-latest"
3535
steps:
36-
- uses: "actions/checkout@v5"
36+
- uses: "actions/checkout@v6"
3737
with:
3838
fetch-depth: 0
3939
- name: "Set up Python"

.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@v5"
22+
- uses: "actions/checkout@v6"
2323
with:
2424
fetch-depth: 0
2525
- uses: "actions/setup-python@v6"

.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@v5"
17+
- uses: "actions/checkout@v6"
1818
- name: "Download wheels"
19-
uses: "actions/download-artifact@v5"
19+
uses: "actions/download-artifact@v8"
2020
with:
2121
name: "pulp_cli_packages"
2222
- name: "Set up Python"

.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@v5"
12+
- uses: "actions/checkout@v6"
1313
with:
1414
token: "${{ secrets.RELEASE_TOKEN }}"
1515
- name: "Set up Python"

.github/workflows/release_branch.yml

Lines changed: 2 additions & 2 deletions
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@v5"
10+
- uses: "actions/checkout@v6"
1111
with:
1212
token: "${{ secrets.RELEASE_TOKEN }}"
1313
- name: "Set up Python"
@@ -25,7 +25,7 @@ jobs:
2525
run: |
2626
.ci/scripts/create_release_branch.sh
2727
- name: "Create Pull Request"
28-
uses: "peter-evans/create-pull-request@v7"
28+
uses: "peter-evans/create-pull-request@v8"
2929
id: "create_pr"
3030
with:
3131
token: "${{ secrets.RELEASE_TOKEN }}"

0 commit comments

Comments
 (0)