Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/check-clang-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ jobs:
if: >
always() &&
steps.check.outcome == 'failure'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
path: ${{ env.WORKING_FOLDER }}/expected/.clang-format
if-no-files-found: error
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
if: >
always() &&
steps.check.outcome == 'failure'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
path: ${{ env.WORKING_FOLDER }}/output
if-no-files-found: error
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:
OUTPUT_PATH="${{ env.CONVERSION_OUTPUT_PATH }}"

- name: Save conversion to a workflow artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
path: ${{ env.CONVERSION_OUTPUT_PATH }}
if-no-files-found: error
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-labels-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
file-url: https://raw.githubusercontent.com/arduino/tooling-project-assets/main/workflow-templates/assets/sync-labels/${{ matrix.filename }}

- name: Pass configuration files to next job via workflow artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
path: ${{ matrix.filename }}
if-no-files-found: error
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-install-script.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
"${{ env.SCRIPT_FOLDER }}/${{ env.SCRIPT_NAME }}"

- name: Save configured script as workflow artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
if-no-files-found: error
path: ${{ env.SCRIPT_FOLDER }}/${{ env.SCRIPT_NAME }}
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/check-go-dependencies-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
# Some might find it convenient to have CI generate the cache rather than setting up for it locally
- name: Upload cache to workflow artifact
if: failure() && steps.diff.outcome == 'failure'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
if-no-files-found: error
include-hidden-files: true
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/check-npm-dependencies-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
# Some might find it convenient to have CI generate the cache rather than setting up for it locally
- name: Upload cache to workflow artifact
if: failure() && steps.diff.outcome == 'failure'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
if-no-files-found: error
include-hidden-files: true
Expand Down
4 changes: 2 additions & 2 deletions workflow-templates/publish-go-nightly-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
github.com/go-task/task/v3/cmd/task dist:${{ matrix.os.task }}

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
if-no-files-found: error
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.os.artifact-suffix }}
Expand Down Expand Up @@ -201,7 +201,7 @@ jobs:
echo "PACKAGE_FILENAME=$PACKAGE_FILENAME" >>$GITHUB_ENV

- name: Replace artifact with notarized build
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
if-no-files-found: error
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.build.artifact-suffix }}
Expand Down
4 changes: 2 additions & 2 deletions workflow-templates/publish-go-tester-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ jobs:

# Transfer builds to artifacts job
- name: Upload build artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
path: ${{ env.DIST_DIR }}/${{ matrix.os.path }}
name: ${{ matrix.os.artifact-name }}
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
done

- name: Upload checksum artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
path: ./*checksums.txt
name: checksums
4 changes: 2 additions & 2 deletions workflow-templates/release-go-crosscompile-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
github.com/go-task/task/v3/cmd/task dist:${{ matrix.os.task }}

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
if-no-files-found: error
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.os.artifact-suffix }}
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
"${{ env.BUILD_FOLDER }}/"

- name: Replace artifact with notarized build
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
if-no-files-found: error
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.build.artifact-suffix }}
Expand Down
4 changes: 2 additions & 2 deletions workflow-templates/release-go-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
github.com/go-task/task/v3/cmd/task dist:${{ matrix.os.task }}

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
if-no-files-found: error
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.os.artifact-suffix }}
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
-C ../../ LICENSE.txt

- name: Replace artifact with notarized build
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
if-no-files-found: error
name: ${{ env.ARTIFACT_PREFIX }}${{ matrix.build.artifact-suffix }}
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/sync-labels-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
file-url: https://raw.githubusercontent.com/arduino/tooling-project-assets/main/workflow-templates/assets/sync-labels/${{ matrix.filename }}

- name: Pass configuration files to next job via workflow artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
path: ${{ matrix.filename }}
if-no-files-found: error
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/sync-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
file-url: https://raw.githubusercontent.com/arduino/tooling-project-assets/main/workflow-templates/assets/sync-labels/${{ matrix.filename }}

- name: Pass configuration files to next job via workflow artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
path: ${{ matrix.filename }}
if-no-files-found: error
Expand Down
Loading