From 994d51176494e0772bdda7466376ec87d54a6f13 Mon Sep 17 00:00:00 2001 From: Mark Callow Date: Sun, 5 Jul 2026 20:24:56 +0900 Subject: [PATCH 1/2] Update actions to Node.js 24 compatible version. --- .github/workflows/check-dfdutils.yml | 6 +++--- .github/workflows/check-reuse.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check-dfdutils.yml b/.github/workflows/check-dfdutils.yml index 96f09b5..3e22ca9 100644 --- a/.github/workflows/check-dfdutils.yml +++ b/.github/workflows/check-dfdutils.yml @@ -63,7 +63,7 @@ jobs: #WERROR: ON steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 # with: # # Fetch all history to make sure tags are # # included (used for version creation) @@ -91,7 +91,7 @@ jobs: - name: Upload artifact libdfdutils if: matrix.config == 'Release' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: libdfdutils-${{ runner.os }}-${{ runner.arch }} path: ${{env.BUILD_DIR}}/Release/*dfdutils* @@ -99,7 +99,7 @@ jobs: - name: Upload generated HTML documentation for GitHub Pages if: matrix.os == 'ubuntu-latest' && matrix.config == 'Release' id: deployment - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v5 with: path: ${{ env.BUILD_DIR }}/doc/html diff --git a/.github/workflows/check-reuse.yml b/.github/workflows/check-reuse.yml index c358aa5..03b9717 100644 --- a/.github/workflows/check-reuse.yml +++ b/.github/workflows/check-reuse.yml @@ -27,7 +27,7 @@ jobs: env: GIT_LFS_SKIP_SMUDGE: 1 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 From 791932e66a00c3bf4d425bc5dbc455d24db66379 Mon Sep 17 00:00:00 2001 From: Mark Callow Date: Sun, 5 Jul 2026 20:29:44 +0900 Subject: [PATCH 2/2] Update VS generator for windows-latest == 2026. --- .github/workflows/check-dfdutils.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-dfdutils.yml b/.github/workflows/check-dfdutils.yml index 3e22ca9..ae350d6 100644 --- a/.github/workflows/check-dfdutils.yml +++ b/.github/workflows/check-dfdutils.yml @@ -50,10 +50,10 @@ jobs: # ".dll.a" extension. I have neither the time nor energy to find out # how to change the behaviour. Use VS. - os: windows-latest - generator: 'Visual Studio 17 2022' + generator: 'Visual Studio 18 2026' config: Release - os: windows-latest - generator: 'Visual Studio 17 2022' + generator: 'Visual Studio 18 2026' config: Debug runs-on: ${{ matrix.os }}