Skip to content

Commit 793d1d0

Browse files
ci: Update to current versions of actions.
This should remove the warnings within the GitHub Actions UI about using the deprecated Node 12 and 16 versions.
1 parent 3c313e9 commit 793d1d0

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

‎.github/workflows/latex.yml‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
- name: Fix stupidity
1717
run: |
1818
cp AUTHORS AUTHORS.
1919
cp LICENSE LICENSE.
2020
- name: Compile LaTeX
21-
uses: xu-cheng/latex-action@v2
21+
uses: xu-cheng/latex-action@v3
2222
with:
2323
working_directory: manual
2424
root_file: tracy.tex
25-
- uses: actions/upload-artifact@v2
25+
- uses: actions/upload-artifact@v4
2626
with:
2727
name: manual
2828
path: manual/tracy.pdf

‎.github/workflows/linux.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-22.04
1313
container: archlinux:base-devel
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
- name: Install linux libraries
1717
run: pacman -Syu --noconfirm && pacman -S --noconfirm --needed freetype2 capstone tbb debuginfod wayland dbus libxkbcommon libglvnd meson
1818
- name: Profiler GUI

‎.github/workflows/macos.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
runs-on: macOS-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v4
1515
- name: Install macos libraries
1616
run: brew install capstone tbb pkg-config glfw meson
1717
- name: Profiler GUI

‎.github/workflows/msvc.yml‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
runs-on: windows-2022
1313

1414
steps:
15-
- uses: actions/checkout@v2
16-
- uses: microsoft/setup-msbuild@v1.0.2
15+
- uses: actions/checkout@v4
16+
- uses: microsoft/setup-msbuild@v2
1717
- name: Integrate vcpkg
1818
run: vcpkg integrate install
1919
- name: Profiler GUI Debug
@@ -54,7 +54,7 @@ jobs:
5454
copy library\win32\x64\Release\TracyProfiler.dll bin\dev
5555
copy library\win32\x64\Release\TracyProfiler.lib bin\dev
5656
7z a Tracy.7z bin
57-
- uses: actions/upload-artifact@v2
57+
- uses: actions/upload-artifact@v4
5858
with:
5959
path: Tracy.7z
6060

@@ -66,8 +66,8 @@ jobs:
6666
VCPKG_ROOT: ''
6767

6868
steps:
69-
- uses: actions/checkout@v2
70-
- uses: microsoft/setup-msbuild@v1.0.2
69+
- uses: actions/checkout@v4
70+
- uses: microsoft/setup-msbuild@v2
7171
- name: Install vcpkg dependencies
7272
run: vcpkg/install_vcpkg_dependencies.bat
7373
- name: Profiler GUI Release

0 commit comments

Comments
 (0)