From 6acb2ea0e0e41ff41c9435eba4818b9478a25fee Mon Sep 17 00:00:00 2001 From: vili Date: Wed, 2 Aug 2023 16:54:09 +0300 Subject: [PATCH] workflow test --- .github/workflows/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 99dea40..ddd5f51 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -8,9 +8,9 @@ jobs: build_windows: runs-on: windows-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python 3.11 - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 with: python-version: 3.11 - name: Install dependencies @@ -21,7 +21,7 @@ jobs: run: | pyinstaller --onefile h4xtools.py - name: Upload Windows artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: Windows Executable path: dist/ @@ -29,9 +29,9 @@ jobs: build_linux: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python 3.11 - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 with: python-version: 3.11 - name: Install dependencies @@ -42,7 +42,7 @@ jobs: run: | pyinstaller --onefile -F h4xtools.py - name: Upload Linux artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: Linux Executable path: dist/ \ No newline at end of file