From 3e3df82cba11953abffb083dd1bb7c76c6cedc15 Mon Sep 17 00:00:00 2001 From: Florian Date: Fri, 18 Oct 2024 08:29:10 +0200 Subject: [PATCH] Update actions-versions in full example of README.md In the full example the actions-versions still says v2, which gives warnings when using it to build the artifact. Today v4 is recommended and working. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bbfc5a5..0b0ad2f 100644 --- a/README.md +++ b/README.md @@ -73,14 +73,14 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Package Application uses: JackMcKew/pyinstaller-action-windows@main with: path: src - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: name-of-artifact path: src/dist/windows