Skip to content

Commit b2f7867

Browse files
committed
ci: Upgrade to newer upload-artifact action, old one is being deprecated
Also fix workflow warning: save-always is not really an input to actions/cache. Signed-off-by: Larry Gritz <[email protected]>
1 parent 8839acc commit b2f7867

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

.github/workflows/build-steps.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ jobs:
114114
path: ./ccache
115115
key: ${{github.job}}-${{inputs.nametag}}-${{steps.ccache_cache_keys.outputs.date}}
116116
restore-keys: ${{github.job}}-
117-
save-always: true
118117
- name: Setup Nuget.exe (Windows only)
119118
if: runner.os == 'Windows'
120119
uses: nuget/setup-nuget@a21f25cd3998bf370fde17e3f1b4c12c175172f9 # v2.0.0
@@ -187,9 +186,7 @@ jobs:
187186
cd src/doc
188187
time make doxygen
189188
time make sphinx
190-
- uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
191-
# Note: versions of upload-artifact >= 4.0 can't run on the ASWF
192-
# containers because they need a newer glibc than they have.
189+
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
193190
if: ${{ failure() || inputs.build_docs == '1'}}
194191
with:
195192
name: oiio-${{github.job}}-${{inputs.nametag}}

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -221,9 +221,7 @@ jobs:
221221
cd src/doc
222222
time make doxygen
223223
time make sphinx
224-
- uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
225-
# Note: versions of upload-artifact >= 4.0 can't run on the ASWF
226-
# containers because they need a newer glibc than they have.
224+
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
227225
if: ${{ failure() || matrix.build_docs == '1'}}
228226
with:
229227
name: oiio-${{github.job}}-${{matrix.nametag}}

0 commit comments

Comments
 (0)