Skip to content

Commit

Permalink
Update GitHub actions versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamDumpleton committed Sep 11, 2024
1 parent a524212 commit 2b84146
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v4"
- uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.python-version }}"
- name: "Update package details"
Expand All @@ -29,7 +29,7 @@ jobs:
- name: "Build mod_wsgi packages"
run: ./package.sh && ls -las dist
- name: "Store built packages"
uses: actions/upload-artifact@v3
uses: "actions/upload-artifact@v4"
with:
name: dist ${{ matrix.python-version }}
path: dist/*
Expand All @@ -45,11 +45,11 @@ jobs:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v4"
- uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.python-version }}"
- name: "Download built packages"
uses: actions/download-artifact@v3
uses: "actions/download-artifact@v4"
with:
name: dist ${{ matrix.python-version }}
path: dist
Expand Down

0 comments on commit 2b84146

Please sign in to comment.