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
86 changes: 43 additions & 43 deletions .github/workflows/ArtifactsUpload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ jobs:

steps:
- name: ⏬ Checkout repository to use local actions
uses: actions/checkout@v5
uses: actions/checkout@v6

- uses: ./.github/actions/create-files

- name: 📤 Upload artifact '${{ matrix.os.name }}-github-release' with github action
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
continue-on-error: true
with:
name: ${{ matrix.os.name }}-github-release
Expand Down Expand Up @@ -108,11 +108,11 @@ jobs:

steps:
- name: ⏬ Checkout repository to use local actions
uses: actions/checkout@v5
uses: actions/checkout@v6

- uses: ./.github/actions/create-files
- name: 📤 Upload artifact '${{ matrix.os.name }}-github-single-file'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
continue-on-error: true
with:
name: ${{ matrix.os.name }}-github-single-file
Expand Down Expand Up @@ -145,11 +145,11 @@ jobs:

steps:
- name: ⏬ Checkout repository to use local actions
uses: actions/checkout@v5
uses: actions/checkout@v6

- uses: ./.github/actions/create-files
- name: 📤 Upload artifact '${{ matrix.os.name }}-github-single-file-in-directory'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
continue-on-error: true
with:
name: ${{ matrix.os.name }}-github-single-file-in-directory
Expand Down Expand Up @@ -182,11 +182,11 @@ jobs:

steps:
- name: ⏬ Checkout repository to use local actions
uses: actions/checkout@v5
uses: actions/checkout@v6

- uses: ./.github/actions/create-files
- name: 📤 Upload artifact '${{ matrix.os.name }}-github-double-file-in-directory'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
continue-on-error: true
with:
name: ${{ matrix.os.name }}-github-double-file-in-directory
Expand Down Expand Up @@ -221,11 +221,11 @@ jobs:

steps:
- name: ⏬ Checkout repository to use local actions
uses: actions/checkout@v5
uses: actions/checkout@v6

- uses: ./.github/actions/create-files
- name: 📤 Upload artifact '${{ matrix.os.name }}-github-triple-file-in-directory'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
continue-on-error: true
with:
name: ${{ matrix.os.name }}-github-triple-file-in-directory
Expand Down Expand Up @@ -262,11 +262,11 @@ jobs:

steps:
- name: ⏬ Checkout repository to use local actions
uses: actions/checkout@v5
uses: actions/checkout@v6

- uses: ./.github/actions/create-files
- name: 📤 Upload artifact '${{ matrix.os.name }}-github-double-file-in-deep-directory'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
continue-on-error: true
with:
name: ${{ matrix.os.name }}-github-double-file-in-deep-directory
Expand Down Expand Up @@ -301,11 +301,11 @@ jobs:

steps:
- name: ⏬ Checkout repository to use local actions
uses: actions/checkout@v5
uses: actions/checkout@v6

- uses: ./.github/actions/create-files
- name: 📤 Upload artifact '${{ matrix.os.name }}-github-single-directory'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
continue-on-error: true
with:
name: ${{ matrix.os.name }}-github-single-directory
Expand Down Expand Up @@ -338,11 +338,11 @@ jobs:

steps:
- name: ⏬ Checkout repository to use local actions
uses: actions/checkout@v5
uses: actions/checkout@v6

- uses: ./.github/actions/create-files
- name: 📤 Upload artifact '${{ matrix.os.name }}-github-double-directory'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
continue-on-error: true
with:
name: ${{ matrix.os.name }}-github-double-directory
Expand Down Expand Up @@ -377,11 +377,11 @@ jobs:

steps:
- name: ⏬ Checkout repository to use local actions
uses: actions/checkout@v5
uses: actions/checkout@v6

- uses: ./.github/actions/create-files
- name: 📤 Upload artifact '${{ matrix.os.name }}-github-unpredictable-wildcard'
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
continue-on-error: true
with:
name: ${{ matrix.os.name }}-github-unpredictable-wildcard
Expand Down Expand Up @@ -418,11 +418,11 @@ jobs:

steps:
- name: ⏬ Checkout repository to use local actions
uses: actions/checkout@v5
uses: actions/checkout@v6

- uses: ./.github/actions/create-files
- name: 📤 Upload artifact '${{ matrix.os.name }}-github-nofile' with warning
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
continue-on-error: true
with:
name: ${{ matrix.os.name }}-github-nofile
Expand Down Expand Up @@ -456,10 +456,10 @@ jobs:

steps:
- name: ⏬ Checkout repository to use local actions
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: 📥 Download artifact
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: ${{ matrix.os.name }}-github-release

Expand Down Expand Up @@ -505,10 +505,10 @@ jobs:

steps:
- name: ⏬ Checkout repository to use local actions
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: 📥 Download artifact
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: ${{ matrix.os.name }}-pyTooling-release

Expand Down Expand Up @@ -580,10 +580,10 @@ jobs:

steps:
- name: ⏬ Checkout repository to use local actions
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: 📥 Download artifact uploaded via '${{ matrix.task.action }}'
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: ${{ matrix.os.name }}-${{ matrix.task.artifact }}-single-file

Expand Down Expand Up @@ -634,10 +634,10 @@ jobs:

steps:
- name: ⏬ Checkout repository to use local actions
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: 📥 Download artifact uploaded via '${{ matrix.task.action }}'
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: ${{ matrix.os.name }}-${{ matrix.task.artifact }}-single-file-in-directory

Expand Down Expand Up @@ -690,10 +690,10 @@ jobs:

steps:
- name: ⏬ Checkout repository to use local actions
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: 📥 Download artifact uploaded via '${{ matrix.task.action }}'
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: ${{ matrix.os.name }}-${{ matrix.task.artifact }}-double-file-in-directory

Expand Down Expand Up @@ -746,10 +746,10 @@ jobs:

steps:
- name: ⏬ Checkout repository to use local actions
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: 📥 Download artifact uploaded via '${{ matrix.task.action }}'
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: ${{ matrix.os.name }}-${{ matrix.task.artifact }}-triple-file-in-directory

Expand Down Expand Up @@ -806,10 +806,10 @@ jobs:

steps:
- name: ⏬ Checkout repository to use local actions
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: 📥 Download artifact uploaded via '${{ matrix.task.action }}'
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: ${{ matrix.os.name }}-${{ matrix.task.artifact }}-double-file-in-deep-directory

Expand Down Expand Up @@ -858,10 +858,10 @@ jobs:

steps:
- name: ⏬ Checkout repository to use local actions
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: 📥 Download artifact uploaded via '${{ matrix.task.action }}'
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: ${{ matrix.os.name }}-${{ matrix.task.artifact }}-single-directory

Expand Down Expand Up @@ -914,10 +914,10 @@ jobs:

steps:
- name: ⏬ Checkout repository to use local actions
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: 📥 Download artifact uploaded via '${{ matrix.task.action }}'
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: ${{ matrix.os.name }}-${{ matrix.task.artifact }}-double-directory

Expand Down Expand Up @@ -980,10 +980,10 @@ jobs:

steps:
- name: ⏬ Checkout repository to use local actions
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: 📥 Download artifact uploaded via '${{ matrix.task.action }}'
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: ${{ matrix.os.name }}-${{ matrix.task.artifact }}-unpredictable-wildcard

Expand Down Expand Up @@ -1039,10 +1039,10 @@ jobs:

steps:
- name: ⏬ Checkout repository to use local actions
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: 📥 Download artifact uploaded via '${{ matrix.task.action }}'
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: ${{ matrix.os.name }}-${{ matrix.task.artifact }}-lib

Expand Down Expand Up @@ -1120,7 +1120,7 @@ jobs:

steps:
- name: ⏬ Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# The command 'git describe' (used for version) needs the history.
fetch-depth: 0
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
MyJob:
steps:
- name: 📤 Upload artifact 'binaries'
uses: pyTooling/upload-artifact@v5
uses: pyTooling/upload-artifact@v6
with:
name: binaries
working-directory: build
Expand All @@ -47,7 +47,7 @@ jobs:
lib

- name: 📤 Upload artifact 'logfiles'
uses: pyTooling/upload-artifact@v5
uses: pyTooling/upload-artifact@v6
with:
name: logfiles
path: |
Expand Down Expand Up @@ -145,7 +145,7 @@ To ensure files are extracted and assigned to the owner/group of the extracting

## Dependencies

* [actions/upload-artifact@v5](https://github.com/actions/upload-artifact)
* [actions/upload-artifact@v6](https://github.com/actions/upload-artifact)


## Competing Actions
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ runs:

# https://github.com/actions/upload-artifact
- name: 📤 Upload artifact (tarball)
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
id: upload
if: inputs.mode == 'tar'
with:
Expand Down Expand Up @@ -340,7 +340,7 @@ runs:
fi

- name: 📤 Upload artifact (legacy)
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
id: upload-legacy
if: inputs.mode == 'legacy'
with:
Expand Down
Loading