Skip to content

Commit

Permalink
Update github actions plugins for release
Browse files Browse the repository at this point in the history
  • Loading branch information
simw committed Feb 6, 2025
1 parent a862f69 commit 1e2f127
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- run: curl -sSL https://install.python-poetry.org | python - -y
Expand All @@ -23,8 +23,8 @@ jobs:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: curl -sSL https://install.python-poetry.org | POETRY_VERSION=1.8.4 python - -y
Expand All @@ -39,7 +39,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- run: curl -sSL https://install.python-poetry.org | python - -y
Expand All @@ -48,7 +48,7 @@ jobs:
with:
version_file_path: src/pipedata/__init__.py
- run: make package
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: dist/*
name: package
Expand All @@ -62,7 +62,7 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: package
path: dist
Expand Down

0 comments on commit 1e2f127

Please sign in to comment.