diff --git a/.github/actions/build-pyinstaller/action.yml b/.github/actions/build-pyinstaller/action.yml index ef795165..637aa7e8 100644 --- a/.github/actions/build-pyinstaller/action.yml +++ b/.github/actions/build-pyinstaller/action.yml @@ -2,8 +2,8 @@ name: Build Configurator inputs: python-version: - description: 'Python version. 3.9 default' - default: '3.9' + description: 'Python version. 3.11 default' + default: '3.11' path: description: 'input path' required: true @@ -17,7 +17,7 @@ runs: # Steps represent a sequence of tasks that will be executed as part of the job steps: - - uses: actions/setup-python@v2 + - uses: actions/setup-python@v4 with: python-version: ${{ inputs.python-version }} diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ceb3447d..16f742c1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,7 +29,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - id: build uses: ./.github/actions/build-pyinstaller @@ -37,7 +37,7 @@ jobs: path: '${{ github.workspace }}' python-version: '${{ matrix.conf.pyver }}' - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: OpenFFBoard-Configurator-${{ matrix.conf.os }}-py${{ matrix.conf.pyver }} path: ${{ steps.build.outputs.distpath }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e297cb63..d640b636 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: steps: # Checkout - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 # Download artifacts for release - uses: actions/download-artifact@v3