diff --git a/.github/workflows/latex.yml b/.github/workflows/latex.yml index 79b244d0a2..9c68cacec0 100644 --- a/.github/workflows/latex.yml +++ b/.github/workflows/latex.yml @@ -12,17 +12,17 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Fix stupidity run: | cp AUTHORS AUTHORS. cp LICENSE LICENSE. - name: Compile LaTeX - uses: xu-cheng/latex-action@v2 + uses: xu-cheng/latex-action@v3 with: working_directory: manual root_file: tracy.tex - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: manual path: manual/tracy.pdf diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index c0e67a16fc..04f8d41eaa 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-22.04 container: archlinux:base-devel steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install linux libraries run: pacman -Syu --noconfirm && pacman -S --noconfirm --needed freetype2 capstone tbb debuginfod wayland dbus libxkbcommon libglvnd meson - name: Profiler GUI diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index fee70b66c8..98f095c7a7 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -11,7 +11,7 @@ jobs: runs-on: macOS-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install macos libraries run: brew install capstone tbb pkg-config glfw meson - name: Profiler GUI diff --git a/.github/workflows/msvc.yml b/.github/workflows/msvc.yml index d69bf32beb..f20abe7323 100644 --- a/.github/workflows/msvc.yml +++ b/.github/workflows/msvc.yml @@ -12,8 +12,8 @@ jobs: runs-on: windows-2022 steps: - - uses: actions/checkout@v2 - - uses: microsoft/setup-msbuild@v1.0.2 + - uses: actions/checkout@v4 + - uses: microsoft/setup-msbuild@v2 - name: Integrate vcpkg run: vcpkg integrate install - name: Profiler GUI Debug @@ -54,7 +54,7 @@ jobs: copy library\win32\x64\Release\TracyProfiler.dll bin\dev copy library\win32\x64\Release\TracyProfiler.lib bin\dev 7z a Tracy.7z bin - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: path: Tracy.7z @@ -66,8 +66,8 @@ jobs: VCPKG_ROOT: '' steps: - - uses: actions/checkout@v2 - - uses: microsoft/setup-msbuild@v1.0.2 + - uses: actions/checkout@v4 + - uses: microsoft/setup-msbuild@v2 - name: Install vcpkg dependencies run: vcpkg/install_vcpkg_dependencies.bat - name: Profiler GUI Release