Skip to content

Commit

Permalink
Upgrade deprecated GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jfhbrook committed Nov 16, 2024
1 parent 70f3e44 commit d524c2e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/qa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up Node.js LTS
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "lts/*"
- name: Install the world
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ needs.versions.outputs.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "${{ needs.versions.outputs.python-version }}"
- name: Install the world
Expand All @@ -41,22 +41,22 @@ jobs:
- name: Build Package Distributions
run: python -m build
- name: Store Package Distributions
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: package-distributions
path: dist/
- name: Build Man Page
run: sphinx-build -M man docs _build
- name: Store Man Page
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: man-page
path: _build/man
- name: Build Release Notes
# thanks to https://gist.github.com/Integralist/57accaf446cf3e7974cd01d57158532c
run: mkdir notes && awk '/^##/ {block++} {if (block == 1) { print }}' CHANGELOG.md > notes/RELEASE.md
- name: Store Release Notes
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: release-notes
path: notes
Expand Down

0 comments on commit d524c2e

Please sign in to comment.