Skip to content
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/check-dfdutils.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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)
Expand Down Expand Up @@ -91,15 +91,15 @@ 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*

- 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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-reuse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
env:
GIT_LFS_SKIP_SMUDGE: 1
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
Loading