diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 4555d1a..5b9d68e 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -59,7 +59,7 @@ jobs: steps: - name: Checkout project - uses: actions/checkout@v3.3.0 + uses: actions/checkout@v4.1.1 with: submodules: recursive @@ -71,7 +71,7 @@ jobs: continue-on-error: true - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5.0.0 with: python-version: "3.x" @@ -105,21 +105,21 @@ jobs: Remove-Item bin/* -Include *.exp,*.pdb -Force - name: Upload library artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v3.1.3 with: name: ${{ github.event.repository.name }}-library path: | ${{ github.workspace }}/bin/liblexy-vdf.* - name: Upload executable artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v3.1.3 with: name: ${{ github.event.repository.name }}-executable path: | ${{ github.workspace }}/bin/lexy-vdf.headless.* - name: Archive Release - uses: thedoctor0/zip-release@0.7.1 + uses: thedoctor0/zip-release@0.7.6 with: type: "zip" filename: "../../../liblexy-vdf.${{ matrix.platform }}.${{ matrix.arch }}.zip" @@ -127,7 +127,7 @@ jobs: if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') - name: Create and upload asset - uses: ncipollo/release-action@v1 + uses: ncipollo/release-action@v1.13.0 with: allowUpdates: true artifacts: "liblexy-vdf.${{ matrix.platform }}.${{ matrix.arch }}.zip"