Skip to content

Commit

Permalink
Downgrade upload-artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
bilgelm committed Apr 22, 2024
1 parent e54b2db commit 504a9b1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
uses: actions/checkout@v4

- name: Run Labeler
uses: crazy-max/ghaction-github-labeler@v4.1.0
uses: crazy-max/ghaction-github-labeler@v5
with:
skip-delete: true
8 changes: 0 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,6 @@ jobs:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}

- name: Publish package on TestPyPI
if: ! steps.check-version.outputs.tag
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.TEST_PYPI_TOKEN }}
repository-url: https://test.pypi.org/legacy/

- name: Publish the release notes
uses: release-drafter/release-drafter@v6
with:
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@ jobs:
- name: Install Poetry
run: |
constraint_file=$PWD/.github/workflows/constraints.txt
pipx install --pip-args=--constraint=$constraint_file poetry
pipx install --pip-args=--constraint=$PWD/.github/workflows/constraints.txt poetry
poetry --version
- name: Install Nox
Expand Down Expand Up @@ -93,14 +92,14 @@ jobs:
- name: Upload coverage data
if: always() && matrix.session == 'tests'
uses: "actions/upload-artifact@v4"
uses: "actions/upload-artifact@v3"
with:
name: coverage-data
path: ".coverage.*"

- name: Upload documentation
if: matrix.session == 'docs-build'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: docs
path: docs/_build
Expand Down

0 comments on commit 504a9b1

Please sign in to comment.