Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Install booststrap's dependencies
run: |
sudo apt-get update
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Build
run: PLATFORM=${{ matrix.platform }} CONFIG=${{ matrix.config }} ./Bootstrap.sh
- name: Test
Expand All @@ -68,7 +68,7 @@ jobs:
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Build
shell: cmd
env:
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
shell: msys2 {0}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: 'Setup MSYS2'
uses: msys2/setup-msys2@v2
with:
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- uses: tritao/[email protected]
with:
version: '3.9.2'
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
shell: freebsd {0}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Start FreeBSD VM
uses: vmactions/[email protected]
with:
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:
shell: openbsd {0}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Start OpenBSD VM
uses: vmactions/[email protected]
with:
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:
shell: netbsd {0}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Build on NetBSD VM
uses: vmactions/[email protected]
with:
Expand Down Expand Up @@ -286,7 +286,7 @@ jobs:
shell: dragonflybsd {0}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Build on DragonflyBSD VM
uses: vmactions/[email protected]
with:
Expand Down Expand Up @@ -317,7 +317,7 @@ jobs:
shell: solaris {0}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Build on Solaris VM
uses: vmactions/[email protected]
with:
Expand Down Expand Up @@ -349,7 +349,7 @@ jobs:
shell: omnios {0}
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Build on OmniOS VM
uses: vmactions/[email protected]
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '18'
Expand All @@ -23,7 +23,7 @@ jobs:
if: github.repository_owner == 'premake' && github.event_name == 'push' && github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/setup-node@v6
Expand Down
Loading