Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:

steps:
- name: Checkout repository (with submodules)
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
submodules: recursive
fetch-depth: 0
Expand All @@ -80,7 +80,7 @@ jobs:
pkg-config

- name: Cache vcpkg packages
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
${{ github.workspace }}/vcpkg_installed
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Run Actionlint
uses: step-security/action-actionlint@v1
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/quality-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:
- name: Checkout repository (with submodules)
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
submodules: recursive
fetch-depth: 0
Expand All @@ -43,7 +43,7 @@ jobs:
libxkbcommon-dev pkg-config

- name: Cache vcpkg packages
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
${{ github.workspace }}/vcpkg_installed
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
submodules: recursive

Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Run codespell
uses: codespell-project/actions-codespell@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/security-codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
steps:
# Checkout repository and initialize submodules (vcpkg).
- name: Checkout repository (with submodules)
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
# Install system dependencies required by Raylib, GLFW and related libraries.
submodules: recursive
Expand All @@ -65,7 +65,7 @@ jobs:
pkg-config

- name: Cache vcpkg packages
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
${{ github.workspace }}/vcpkg_installed
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Review dependencies for vulnerabilities
uses: actions/dependency-review-action@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vcpkg-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0
Expand Down
Loading