diff options
-rw-r--r-- | .github/workflows/linux-build.yml | 4 | ||||
-rw-r--r-- | .github/workflows/onefiledist.yml | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/linux-build.yml b/.github/workflows/linux-build.yml index 445e0cf..1740ac8 100644 --- a/.github/workflows/linux-build.yml +++ b/.github/workflows/linux-build.yml @@ -112,7 +112,7 @@ jobs: echo "VERSION=`ls -d tk* | sed 's/tk//'`" >> $GITHUB_ENV - name: Upload Source Distribution if: ${{ env.BUILD_CONFIG_ID == 'gcc' }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Tk ${{ env.VERSION }} Source distribution (snapshot) path: | @@ -120,7 +120,7 @@ jobs: !/tmp/dist/tk*/html/** - name: Upload Documentation Distribution if: ${{ env.BUILD_CONFIG_ID == 'gcc' }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Tk ${{ env.VERSION }} HTML documentation (snapshot) path: /tmp/dist/tk*/html diff --git a/.github/workflows/onefiledist.yml b/.github/workflows/onefiledist.yml index 2521afa..c21d4d0 100644 --- a/.github/workflows/onefiledist.yml +++ b/.github/workflows/onefiledist.yml @@ -65,7 +65,7 @@ jobs: env: BUILD_NAME: wish${{ env.TCL_PATCHLEVEL }}_snapshot - name: Upload - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Wish ${{ env.TCL_PATCHLEVEL }} Linux single-file build (snapshot) path: ${{ env.INST_DIR }}/*.tar @@ -153,7 +153,7 @@ jobs: env: BUILD_NAME: wish${{ env.TCL_PATCHLEVEL }}_snapshot - name: Upload - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Wish ${{ env.TCL_PATCHLEVEL }} macOS single-file build (snapshot) path: ${{ env.INST_DIR }}/*.dmg @@ -216,7 +216,7 @@ jobs: env: BUILD_NAME: wish${{ env.TCL_PATCHLEVEL }}_snapshot - name: Upload - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Wish ${{ env.TCL_PATCHLEVEL }} Windows single-file build (snapshot) path: install/combined/wish${{ env.TCL_PATCHLEVEL }}_snapshot.exe |