Skip to content

Commit 59866b8

Browse files
committed
GitHub Actions: Fix warnings
1 parent 2d3ea17 commit 59866b8

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
container:
1111
image: registry.gitlab.com/jhasse/android-ndk-docker:r28b
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
- name: Cache CPM.cmake packages
1515
uses: actions/cache@v4
1616
with:

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010
- name: Install dependencies
1111
run: microdnf install -y git graphviz doxygen cmake make tar xz rsync texlive-latex texlive-newunicodechar texlive-dvips pdf2svg ghostscript
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
with:
1414
persist-credentials: false
1515
- name: Build

.github/workflows/ios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
build:
55
runs-on: macos-latest
66
steps:
7-
- uses: actions/checkout@v4
7+
- uses: actions/checkout@v5
88
- name: Cache CPM.cmake packages
99
uses: actions/cache@v4
1010
with:

.github/workflows/linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
build:
55
runs-on: ubuntu-24.04
66
steps:
7-
- uses: actions/checkout@v4
7+
- uses: actions/checkout@v5
88
- name: Basic linting
99
run: .github/ci.py
1010
- name: Install dependencies

.github/workflows/macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ jobs:
44
build:
55
runs-on: macos-latest
66
steps:
7-
- uses: actions/checkout@v4
7+
- uses: actions/checkout@v5
88
- name: Install dependencies
99
run: |
10-
brew install sdl2 libvorbis webp ninja
10+
brew install sdl2 libvorbis webp
1111
- name: Build with CMake
1212
run: |
1313
cmake -Bbuild-cmake -GNinja

.github/workflows/windows.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
clang-cl:
55
runs-on: windows-2025
66
steps:
7-
- uses: actions/checkout@v4
7+
- uses: actions/checkout@v5
88
- name: Cache CPM.cmake packages
99
uses: actions/cache@v4
1010
with:
@@ -29,7 +29,7 @@ jobs:
2929
msvc:
3030
runs-on: windows-2025
3131
steps:
32-
- uses: actions/checkout@v4
32+
- uses: actions/checkout@v5
3333
- name: Cache CPM.cmake packages
3434
uses: actions/cache@v4
3535
with:
@@ -57,7 +57,7 @@ jobs:
5757
steps:
5858
- name: Install dependencies
5959
run: microdnf install -y cmake ninja-build mingw64-pkg-config mingw64-libvorbis mingw64-SDL2 mingw64-fontconfig mingw64-libwebp mingw64-dlfcn mingw32-nsis mingw64-gcc-c++ tar gzip
60-
- uses: actions/checkout@v4
60+
- uses: actions/checkout@v5
6161
- name: Build with CMake and GCC
6262
run: |
6363
mingw64-cmake -Bbuild-windows -DCMAKE_BUILD_TYPE=Debug -DBUILD_SHARED_LIBS=0

0 commit comments

Comments
 (0)