diff --git a/.github/workflows/abibreak.yaml b/.github/workflows/abibreak.yaml index af0594b3..3e2b5bfc 100644 --- a/.github/workflows/abibreak.yaml +++ b/.github/workflows/abibreak.yaml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Get pushed code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Configure run: cmake -S . -B _build -DBUILD_SHARED_LIBS=ON -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built -G Ninja @@ -22,7 +22,7 @@ jobs: run: cmake --install _build --prefix ${GITHUB_WORKSPACE}/_built - name: Get v1.x code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: path: libebml-1 ref: v1.x diff --git a/.github/workflows/linux-gcc13.yaml b/.github/workflows/linux-gcc13.yaml index 07ca7fe3..d1f375f8 100644 --- a/.github/workflows/linux-gcc13.yaml +++ b/.github/workflows/linux-gcc13.yaml @@ -19,7 +19,7 @@ jobs: run: dpkg --list | grep compiler - name: Get pushed code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Configure CMake run: cmake -S . -B _build -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built -G Ninja diff --git a/.github/workflows/linux.yaml b/.github/workflows/linux.yaml index c4324bf8..586ee3c8 100644 --- a/.github/workflows/linux.yaml +++ b/.github/workflows/linux.yaml @@ -16,7 +16,7 @@ jobs: sudo apt-get install -y --no-install-recommends libutfcpp-dev - name: Get pushed code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Configure CMake run: cmake -S . -B _build -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built -G Ninja @@ -42,7 +42,7 @@ jobs: run: dpkg --list | grep compiler - name: Get pushed code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Configure run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built diff --git a/.github/workflows/macos.yaml b/.github/workflows/macos.yaml index 9a1a0701..5b5313e5 100644 --- a/.github/workflows/macos.yaml +++ b/.github/workflows/macos.yaml @@ -11,7 +11,7 @@ jobs: runs-on: macos-latest steps: - name: Get pushed code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Configure CMake run: cmake -S . -B _build -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built -G Ninja diff --git a/.github/workflows/windows.yaml b/.github/workflows/windows.yaml index fee34be3..34cb7d9b 100644 --- a/.github/workflows/windows.yaml +++ b/.github/workflows/windows.yaml @@ -15,7 +15,7 @@ jobs: config: [Debug, Release] steps: - name: Get pushed code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Configure CMake run: cmake -S . -B _build -DCMAKE_INSTALL_PREFIX:STRING=${GITHUB_WORKSPACE}/_built -G Ninja