From f54389dae456be1a04d7675131ef876dee3fb226 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A5le=20Stor=C3=B8=20Hauknes?= Date: Wed, 22 May 2024 11:58:36 +0200 Subject: [PATCH] Update readme --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 797406a..3117001 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ owner and access permission checks are done before writing to the file. Add the following to your workflow. ```yaml -- uses: extractions/netrc@v1 +- uses: extractions/netrc@v2 with: machine: some.private.domain.com username: ${{ secrets.USERNAME }} @@ -55,15 +55,15 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - - uses: extractions/netrc@v1 + - uses: extractions/netrc@v2 with: machine: pypi.private.domain.com username: ${{ secrets.PYPI_USERNAME }} password: ${{ secrets.PYPI_PASSWORD }} - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v5 with: python-version: 3.8