diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 61251419..324a5096 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,14 +11,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout the source code - uses: actions/checkout@v2 + uses: actions/checkout@v4 # This is the version of python used to package the code. The unit # tests will have run against python 3.6, 3.7 etc ensuring # compatibility with those runtimes. # https://github.com/axnsan12/drf-yasg/pull/741#discussion_r713297594 - name: Set the python version - uses: actions/setup-python@v3 + uses: actions/setup-python@v5 with: python-version: 3.8 diff --git a/.github/workflows/review.yml b/.github/workflows/review.yml index fe831382..baab3e39 100644 --- a/.github/workflows/review.yml +++ b/.github/workflows/review.yml @@ -13,10 +13,10 @@ jobs: steps: - name: Checkout the source code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Set the python version - uses: actions/setup-python@v3 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python }}