Skip to content

Commit 2b84146

Browse files
Update GitHub actions versions.
1 parent a524212 commit 2b84146

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/main.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
2020
steps:
2121
- uses: "actions/checkout@v4"
22-
- uses: "actions/setup-python@v4"
22+
- uses: "actions/setup-python@v5"
2323
with:
2424
python-version: "${{ matrix.python-version }}"
2525
- name: "Update package details"
@@ -29,7 +29,7 @@ jobs:
2929
- name: "Build mod_wsgi packages"
3030
run: ./package.sh && ls -las dist
3131
- name: "Store built packages"
32-
uses: actions/upload-artifact@v3
32+
uses: "actions/upload-artifact@v4"
3333
with:
3434
name: dist ${{ matrix.python-version }}
3535
path: dist/*
@@ -45,11 +45,11 @@ jobs:
4545
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
4646
steps:
4747
- uses: "actions/checkout@v4"
48-
- uses: "actions/setup-python@v4"
48+
- uses: "actions/setup-python@v5"
4949
with:
5050
python-version: "${{ matrix.python-version }}"
5151
- name: "Download built packages"
52-
uses: actions/download-artifact@v3
52+
uses: "actions/download-artifact@v4"
5353
with:
5454
name: dist ${{ matrix.python-version }}
5555
path: dist

0 commit comments

Comments
 (0)