Skip to content

Commit 8118613

Browse files
jobselkopedro-psb
authored andcommitted
Update deprecated GH actions
1 parent 83fe090 commit 8118613

8 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: "ubuntu-latest"
1010
steps:
1111
- uses: "actions/checkout@v5"
12-
- uses: "actions/cache@v4"
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@v7"
3131
with:
3232
name: "pulp_cli_packages"
3333
path: |

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
- name: "Checkout repository"
2121
uses: "actions/checkout@v5"
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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 }}"
@@ -88,7 +88,7 @@ jobs:
8888
git commit -m "Update CLI and GLUE"
8989
fi
9090
- name: "Create Pull Request"
91-
uses: "peter-evans/create-pull-request@v7"
91+
uses: "peter-evans/create-pull-request@v8"
9292
id: "create_pr"
9393
with:
9494
token: "${{ secrets.RELEASE_TOKEN }}"

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515
- "3.14"
1616
steps:
1717
- uses: "actions/checkout@v5"
18-
- uses: "actions/cache@v4"
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/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
- uses: "actions/checkout@v5"
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_branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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 }}"

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ jobs:
2727
python: "3.12"
2828
steps:
2929
- uses: "actions/checkout@v5"
30-
- uses: "actions/cache@v4"
30+
- uses: "actions/cache@v5"
3131
with:
3232
path: "~/.cache/pip"
3333
key: "${{ runner.os }}-pip-${{ hashFiles('**/*requirements.txt', '**/*constraints.lock', '**/setup.py', '**/pyproject.toml') }}"
3434
restore-keys: |
3535
${{ runner.os }}-pip-
3636
3737
- name: "Download wheels"
38-
uses: "actions/download-artifact@v5"
38+
uses: "actions/download-artifact@v8"
3939
with:
4040
name: "pulp_cli_packages"
4141
- name: "Set up Python"

0 commit comments

Comments
 (0)