Browse Source

fix for ci

Thomas B 3 months ago
parent
commit
5506a55cb7
2 changed files with 5 additions and 4 deletions
  1. 4
    4
      .github/workflows/docs.yml
  2. 1
    0
      src/mem.c

+ 4
- 4
.github/workflows/docs.yml View File

1
-# SPDX-FileCopyrightText: 2024 Thomas Buck <thomas@xythobuz.de>
1
+# SPDX-FileCopyrightText: 2024 - 2025 Thomas Buck <thomas@xythobuz.de>
2
 # SPDX-License-Identifier: CERN-OHL-S-2.0+
2
 # SPDX-License-Identifier: CERN-OHL-S-2.0+
3
 #
3
 #
4
 #  ------------------------------------------------------------------------------
4
 #  ------------------------------------------------------------------------------
5
-# | Copyright (c) 2024 Thomas Buck <thomas@xythobuz.de>                          |
5
+# | Copyright (c) 2024 - 2025 Thomas Buck <thomas@xythobuz.de>                   |
6
 # |                                                                              |
6
 # |                                                                              |
7
 # | This source describes Open Hardware and is licensed under the CERN-OHL-S v2  |
7
 # | This source describes Open Hardware and is licensed under the CERN-OHL-S v2  |
8
 # | or any later version.                                                        |
8
 # | or any later version.                                                        |
71
         uses: actions/configure-pages@v2
71
         uses: actions/configure-pages@v2
72
 
72
 
73
       - name: Upload artifact
73
       - name: Upload artifact
74
-        uses: actions/upload-pages-artifact@v1
74
+        uses: actions/upload-pages-artifact@v3
75
         with:
75
         with:
76
           path: 'docs/book'
76
           path: 'docs/book'
77
 
77
 
78
       - name: Deploy to GitHub Pages
78
       - name: Deploy to GitHub Pages
79
         id: deployment
79
         id: deployment
80
-        uses: actions/deploy-pages@v1
80
+        uses: actions/deploy-pages@v4

+ 1
- 0
src/mem.c View File

17
  */
17
  */
18
 
18
 
19
 #include <string.h>
19
 #include <string.h>
20
+#include <inttypes.h>
20
 
21
 
21
 #include "pico/flash.h"
22
 #include "pico/flash.h"
22
 
23
 

Loading…
Cancel
Save