Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug: updating the github action to newest version #196

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
python-version: ["3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Protoc
Expand Down Expand Up @@ -49,9 +49,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ env.release-python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: ${{ env.release-python-version }}
- name: Install Protoc
Expand All @@ -64,7 +64,7 @@ jobs:
- name: Build Python distribution
run: pip wheel --wheel-dir dist/ .
- name: Upload distribution artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: distribution-packages
path: dist/metricq-*.whl
Expand All @@ -76,7 +76,7 @@ jobs:

steps:
- name: Download distribution artifacts
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: distribution-packages
path: dist/
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
base: "none.md" # ignore the HISTORY.md file
output: release-changelog.md
- name: Upload release changelog artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: release-changelog
path: release-changelog.md
Expand All @@ -131,7 +131,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ env.release-python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ env.release-python-version }}
- name: Install Protoc
Expand All @@ -149,7 +149,7 @@ jobs:
# run HTML builder (-b) in nitpicky mode (-n) in a fresh environment (-E)
sphinx-build -b html -n -E docs ${{ env.OUTPUT_DIR }}
- name: Upload generated HTML as build artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
path: ${{ env.OUTPUT_DIR }}
name: docs
Expand Down
Loading