Skip to content

Commit 97a9859

Browse files
committed
small workflow updates
1 parent 0a86959 commit 97a9859

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ jobs:
4141
run: cp build/linux/aimbot aimbot-linux-x86_64
4242

4343
- name: Upload build artifact
44-
uses: actions/upload-artifact@v7.0.0
44+
uses: actions/upload-artifact@v7.0.1
4545
with:
4646
name: aimbot-linux-x86_64
4747
path: aimbot-linux-x86_64
4848

4949
- name: Attach to release
5050
if: startsWith(github.ref, 'refs/tags/')
51-
uses: softprops/action-gh-release@v2.6.1
51+
uses: softprops/action-gh-release@v3.0.0
5252
with:
5353
files: aimbot-linux-x86_64
5454

@@ -85,7 +85,7 @@ jobs:
8585
8686
# Cache the vcpkg binary cache (compiled .zip archives)
8787
- name: Cache vcpkg binaries
88-
uses: actions/cache@v5.0.4
88+
uses: actions/cache@v5.0.5
8989
with:
9090
path: ${{ env.VCPKG_DEFAULT_BINARY_CACHE }}
9191
key: vcpkg-opencv-core-imgproc-highgui-x64-static-v1
@@ -94,7 +94,7 @@ jobs:
9494
# Cache the vcpkg installed tree — skip the install step entirely on hit
9595
- name: Cache vcpkg installed
9696
id: vcpkg-installed
97-
uses: actions/cache@v5.0.4
97+
uses: actions/cache@v5.0.5
9898
with:
9999
path: ${{ env.VCPKG_INSTALLATION_ROOT }}\installed
100100
key: vcpkg-installed-opencv-core-imgproc-highgui-x64-static-v1
@@ -108,15 +108,15 @@ jobs:
108108

109109
# Cache FetchContent downloads (nlohmann_json tarball)
110110
- name: Cache FetchContent
111-
uses: actions/cache@v5.0.4
111+
uses: actions/cache@v5.0.5
112112
with:
113113
path: ${{ env.FETCHCONTENT_BASE_DIR }}
114114
key: fetchcontent-${{ hashFiles('**/CMakeLists.txt') }}
115115
restore-keys: fetchcontent-
116116

117117
# Cache the build dir for incremental recompilation on code-only changes
118118
- name: Cache build directory
119-
uses: actions/cache@v4
119+
uses: actions/cache@v5.0.5
120120
with:
121121
path: build/windows
122122
key: build-windows-${{ hashFiles('src/**', 'includes/**', 'CMakeLists.txt') }}
@@ -138,13 +138,13 @@ jobs:
138138
run: Copy-Item build/windows/Release/aimbot.exe aimbot-windows-x86_64.exe
139139

140140
- name: Upload build artifact
141-
uses: actions/upload-artifact@v7.0.0
141+
uses: actions/upload-artifact@v7.0.1
142142
with:
143143
name: aimbot-windows-x86_64
144144
path: aimbot-windows-x86_64.exe
145145

146146
- name: Attach to release
147147
if: startsWith(github.ref, 'refs/tags/')
148-
uses: softprops/action-gh-release@v2.6.1
148+
uses: softprops/action-gh-release@v3.0.0
149149
with:
150150
files: aimbot-windows-x86_64.exe

0 commit comments

Comments
 (0)