diff --git a/.github/workflows/ci-workflow.yml b/.github/workflows/ci-workflow.yml index 64a84bc1c8..3b3015e19c 100644 --- a/.github/workflows/ci-workflow.yml +++ b/.github/workflows/ci-workflow.yml @@ -11,7 +11,7 @@ jobs: platform: [x64] steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Build run: make -f Bootstrap.mak linux PLATFORM=${{ matrix.platform }} CONFIG=${{ matrix.config }} - name: Test @@ -20,7 +20,7 @@ jobs: run: bin/${{ matrix.config }}/premake5 docs-check - name: Upload Artifacts if: matrix.config == 'release' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: premake-linux-${{ matrix.platform }} path: bin/${{ matrix.config }}/ @@ -32,7 +32,7 @@ jobs: platform: [x64] steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Build run: make -f Bootstrap.mak macosx PLATFORM=${{ matrix.platform }} CONFIG=${{ matrix.config }} - name: Test @@ -41,7 +41,7 @@ jobs: run: bin/${{ matrix.config }}/premake5 docs-check - name: Upload Artifacts if: matrix.config == 'release' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: premake-macosx-${{ matrix.platform }} path: bin/${{ matrix.config }}/ @@ -53,7 +53,7 @@ jobs: platform: [Win32, x64] steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Build run: | $vcvarsall_path = vswhere.exe -find VC\Auxiliary\Build\vcvarsall.bat @@ -66,7 +66,7 @@ jobs: shell: cmd - name: Upload Artifacts if: matrix.config == 'release' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: premake-windows-${{ matrix.platform }} path: bin\${{ matrix.config }}\ @@ -86,7 +86,7 @@ jobs: shell: msys2 {0} steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: 'Setup MSYS2' uses: msys2/setup-msys2@v2 with: @@ -105,7 +105,7 @@ jobs: run: bin/${{ matrix.config }}/premake5.exe docs-check - name: Upload Artifacts if: matrix.config == 'release' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: premake-${{ matrix.msystem }}-${{ matrix.platform }} path: bin\${{ matrix.config }}\ diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index c57e28abf9..31e0b33f1a 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -10,8 +10,8 @@ jobs: checks: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 with: node-version: '14' - name: Test Build @@ -23,10 +23,10 @@ jobs: if: github.repository_owner == 'premake' && github.event_name == 'push' && github.ref == 'refs/heads/master' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 with: node-version: '14' - name: Add key to allow access to repository