From c370f9aec5df5e2d4b61739a73946cd8c086d927 Mon Sep 17 00:00:00 2001 From: crnbaker Date: Thu, 20 Jul 2023 12:38:48 +0100 Subject: [PATCH] hotfix - updated github action versions --- .github/workflows/pymagewell-publish-to-pypi.yml | 6 +++--- .github/workflows/pymagewell-publish-to-test-pypi.yml | 6 +++--- .github/workflows/pymagewell-unit-tests.yml | 4 ++-- .github/workflows/pymagwell-docs-pages.yml | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/pymagewell-publish-to-pypi.yml b/.github/workflows/pymagewell-publish-to-pypi.yml index 6d52216..075976e 100644 --- a/.github/workflows/pymagewell-publish-to-pypi.yml +++ b/.github/workflows/pymagewell-publish-to-pypi.yml @@ -10,11 +10,11 @@ jobs: name: Build and publish distribution runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} - name: Install pypa/build @@ -31,6 +31,6 @@ jobs: --wheel --outdir dist/ - name: Publish distribution to PyPI - uses: pypa/gh-action-pypi-publish@master + uses: pypa/gh-action-pypi-publish@release/v1 with: password: ${{ secrets.PYPI_API_TOKEN }} diff --git a/.github/workflows/pymagewell-publish-to-test-pypi.yml b/.github/workflows/pymagewell-publish-to-test-pypi.yml index 6d5c018..29e735d 100644 --- a/.github/workflows/pymagewell-publish-to-test-pypi.yml +++ b/.github/workflows/pymagewell-publish-to-test-pypi.yml @@ -10,11 +10,11 @@ jobs: name: Build and publish distribution runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} - name: Install pypa/build @@ -31,7 +31,7 @@ jobs: --wheel --outdir dist/ - name: Publish distribution to Test PyPI - uses: pypa/gh-action-pypi-publish@master + uses: pypa/gh-action-pypi-publish@release/v1 with: password: ${{ secrets.TEST_PYPI_API_TOKEN }} repository_url: https://test.pypi.org/legacy/ diff --git a/.github/workflows/pymagewell-unit-tests.yml b/.github/workflows/pymagewell-unit-tests.yml index bd3ebfe..1ca05b6 100644 --- a/.github/workflows/pymagewell-unit-tests.yml +++ b/.github/workflows/pymagewell-unit-tests.yml @@ -19,11 +19,11 @@ jobs: python-version: ["3.9", "3.10", "3.11"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: FedericoCarboni/setup-ffmpeg@v2 id: setup-ffmpeg - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} - name: Install dependencies diff --git a/.github/workflows/pymagwell-docs-pages.yml b/.github/workflows/pymagwell-docs-pages.yml index 56febe1..b108054 100644 --- a/.github/workflows/pymagwell-docs-pages.yml +++ b/.github/workflows/pymagwell-docs-pages.yml @@ -10,11 +10,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: Set up Python 3.10 - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 with: python-version: "3.10" - name: Install dependencies