Skip to content

Commit

Permalink
Merge pull request #1600 from krzys-h/dependabot/github_actions/actio…
Browse files Browse the repository at this point in the history
…ns/upload-artifact-4

Bump actions/upload-artifact from 2 to 4
  • Loading branch information
colinator27 authored Jan 10, 2024
2 parents 0ae110a + b13b91a commit 34cd251
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish_cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
cp ./README.md ./CLI-${{ matrix.os }}/
cp ./LICENSE.txt ./CLI-${{ matrix.os }}/
- name: Upload ${{ matrix.os }} CLI
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: CLI-${{ matrix.os }}-isBundled-${{ matrix.bundled }}
path: CLI-${{ matrix.os }}
2 changes: 1 addition & 1 deletion .github/workflows/publish_gui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
cp ./SCRIPTS.md ./${{ matrix.os }}
cp ./LICENSE.txt ./${{ matrix.os }}
- name: Upload ${{ matrix.os }} GUI
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: GUI-${{ matrix.os }}-isBundled-${{ matrix.bundled }}-isSingleFile-${{ matrix.singlefile }}
path: ${{ matrix.os }}
2 changes: 1 addition & 1 deletion .github/workflows/publish_gui_32bit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
cp ./SCRIPTS.md ./${{ matrix.os }}
cp ./LICENSE.txt ./${{ matrix.os }}
- name: Upload ${{ matrix.os }} GUI 32Bit
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}-isBundled-${{ matrix.bundled }}-isSingleFile-${{ matrix.singlefile }}
path: ${{ matrix.os }}
4 changes: 2 additions & 2 deletions .github/workflows/publish_gui_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
run: |
7z a -tzip GUI-${{ matrix.os }}-${{ matrix.configuration }}-isBundled-${{ matrix.bundled }}-isSingleFile-${{ matrix.singlefile }}.zip ./${{ matrix.os }}/* -mx0
- name: Upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: GUI-${{ matrix.os }}-${{ matrix.configuration }}-isBundled-${{ matrix.bundled }}-isSingleFile-${{ matrix.singlefile }}
path: GUI-${{ matrix.os }}-${{ matrix.configuration }}-isBundled-${{ matrix.bundled }}-isSingleFile-${{ matrix.singlefile }}.zip
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
run: |
7z a -tzip CLI-${{ matrix.os }}-${{ matrix.configuration }}-isBundled-${{ matrix.bundled }}.zip ./CLI-${{ matrix.os }}/* -mx0
- name: Upload artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: CLI-${{ matrix.os }}-${{ matrix.configuration }}-isBundled-${{ matrix.bundled }}
path: CLI-${{ matrix.os }}-${{ matrix.configuration }}-isBundled-${{ matrix.bundled }}.zip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
cp ./SCRIPTS.md ./${{ matrix.os }}
cp ./LICENSE.txt ./${{ matrix.os }}
- name: Upload ${{ matrix.os }} GUI
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: GUI-${{ matrix.os }}-isBundled-${{ matrix.bundled }}-isSingleFile-${{ matrix.singlefile }}
path: ${{ matrix.os }}
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
cp ./README.md ./CLI-${{ matrix.os }}/
cp ./LICENSE.txt ./CLI-${{ matrix.os }}/
- name: Upload ${{ matrix.os }} CLI
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: CLI-${{ matrix.os }}-isBundled-${{ matrix.bundled }}
path: CLI-${{ matrix.os }}

0 comments on commit 34cd251

Please sign in to comment.