diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index ac05d670d0b..7ed26edd893 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -54,7 +54,7 @@ jobs: ARTIFACTORY_PUBLISH_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} - name: Check free disk space run: df . - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: ${{ matrix.artifact-name }} path: build/allOutputs @@ -159,7 +159,7 @@ jobs: - name: Check disk free space (Windows) run: wmic logicaldisk get caption, freespace if: matrix.os == 'windows-2022' - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: ${{ matrix.artifact-name }} path: ${{ matrix.build-dir }}/${{ matrix.outputs }} @@ -183,7 +183,7 @@ jobs: env: ARTIFACTORY_PUBLISH_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} ARTIFACTORY_PUBLISH_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: Documentation path: docs/build/outputs @@ -212,7 +212,7 @@ jobs: (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')) with: repository: wpilibsuite/build-tools - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 if: | github.repository_owner == 'wpilibsuite' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')) @@ -255,7 +255,7 @@ jobs: RUN_AZURE_ARTIFACTORY_RELEASE: "TRUE" ARTIFACTORY_PUBLISH_USERNAME: ${{ secrets.ARTIFACTORY_USERNAME }} ARTIFACTORY_PUBLISH_PASSWORD: ${{ secrets.ARTIFACTORY_PASSWORD }} - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 if: | github.repository_owner == 'wpilibsuite' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')) diff --git a/.github/workflows/lint-format.yml b/.github/workflows/lint-format.yml index 67e948efb8a..53de1730da5 100644 --- a/.github/workflows/lint-format.yml +++ b/.github/workflows/lint-format.yml @@ -35,7 +35,7 @@ jobs: - name: Generate diff run: git diff HEAD > wpiformat-fixes.patch if: ${{ failure() }} - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: wpiformat fixes path: wpiformat-fixes.patch diff --git a/.github/workflows/pregenerate.yml b/.github/workflows/pregenerate.yml index 6b84fb0fa7e..9b01e0947b1 100644 --- a/.github/workflows/pregenerate.yml +++ b/.github/workflows/pregenerate.yml @@ -42,7 +42,7 @@ jobs: - name: Generate diff run: git diff HEAD > pregenerated-files-fixes.patch if: ${{ failure() }} - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: pregenerated-files-fixes path: pregenerated-files-fixes.patch