From cfd2914f841e6164f926f598580ce09296032cc4 Mon Sep 17 00:00:00 2001 From: anders Date: Sun, 30 Jun 2024 10:37:32 +0200 Subject: [PATCH] Fixed build-win --- .github/workflows/build-win.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-win.yml b/.github/workflows/build-win.yml index ac43497..1ecdb5c 100644 --- a/.github/workflows/build-win.yml +++ b/.github/workflows/build-win.yml @@ -9,9 +9,9 @@ jobs: if: contains(github.event.head_commit.message, '[build-win]' ) || github.event_name == 'workflow_dispatch' # only run if commit message contains [build] runs-on: windows-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python 3.10 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.10 # - name: Install dependencies @@ -40,7 +40,7 @@ jobs: pynsist installer.cfg cp build/nsis/oai-windows-installer.exe out/oai-windows-installer.exe - name: Upload Release Windows - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Windows Binary path: out/oai-windows-installer.exe