Skip to content

Commit f6920e0

Browse files
committed
github ci: bump actions/checkout to v5
1 parent afc8eee commit f6920e0

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v1
16+
uses: actions/checkout@v5
1717
- name: Build Linux
1818
run: ./make.sh all

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
runs-on: macos-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v1
16+
uses: actions/checkout@v5
1717
- name: Build macOS
1818
run: ./make.sh all

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Project
2-
cmake_minimum_required(VERSION 3.0 FATAL_ERROR)
2+
cmake_minimum_required(VERSION 3.14...3.22 FATAL_ERROR)
33
project(stackusage VERSION 1.0 LANGUAGES C CXX)
44
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99 -g \
55
-Wall -Wextra -Wshadow -Wpointer-arith -Wcast-qual \

src/stackusage

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# Copyright (C) 2015-2025 Kristofer Berggren
3+
# Copyright (C) 2015-2026 Kristofer Berggren
44
# All rights reserved.
55
#
66
# stackusage is distributed under the BSD 3-Clause license, see LICENSE for details.
@@ -44,9 +44,9 @@ showusage()
4444

4545
showversion()
4646
{
47-
echo "stackusage v1.20"
47+
echo "stackusage v1.21"
4848
echo ""
49-
echo "Copyright (C) 2015-2025 Kristofer Berggren"
49+
echo "Copyright (C) 2015-2026 Kristofer Berggren"
5050
echo ""
5151
echo "stackusage is distributed under the BSD 3-Clause license."
5252
echo ""

src/stackusage.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.\" DO NOT MODIFY THIS FILE! It was generated by help2man.
2-
.TH STACKUSAGE "1" "July 2025" "stackusage v1.20" "User Commands"
2+
.TH STACKUSAGE "1" "May 2026" "stackusage v1.21" "User Commands"
33
.SH NAME
44
stackusage \- measure stack usage in applications
55
.SH SYNOPSIS
@@ -60,6 +60,6 @@ Written by Kristofer Berggren
6060
.SH "REPORTING BUGS"
6161
Report bugs at https://github.com/d99kris/stackusage
6262
.SH COPYRIGHT
63-
Copyright \(co 2015\-2025 Kristofer Berggren
63+
Copyright \(co 2015\-2026 Kristofer Berggren
6464
.PP
6565
stackusage is distributed under the BSD 3\-Clause license.

0 commit comments

Comments
 (0)