Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/upload-artifact from 3 to 4 #2705

Merged
merged 1 commit into from
Dec 15, 2023
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
14 changes: 7 additions & 7 deletions .github/workflows/release-build-sign-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ jobs:
make out/cf-cli_linux_arm64

- name: Store Linux Binaries
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: cf-cli-linux-binaries
Expand Down Expand Up @@ -285,7 +285,7 @@ jobs:
working-directory: signed-redhat-installer

- name: Store Signed Linux RPM Packages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: cf-cli-linux-rpm-packages
Expand Down Expand Up @@ -387,7 +387,7 @@ jobs:
working-directory: packaged-deb

- name: Store Debian Packages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: cf-cli-linux-deb-packages
Expand Down Expand Up @@ -476,7 +476,7 @@ jobs:
make out/cf-cli_macosarm

- name: Store macOS Binaries
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: cf-cli-macos-binaries
Expand Down Expand Up @@ -616,7 +616,7 @@ jobs:
"signed-macos-installer/cf${VERSION_MAJOR}-cli-installer_${VERSION_BUILD}_macosarm.pkg"

- name: Store macOS Signed Packages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: cf-cli-macos-packages
Expand Down Expand Up @@ -702,7 +702,7 @@ jobs:
# Stop-Service sshd

- name: Save signed binaries as a GitHub Action Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: cf-cli-windows-binaries
if-no-files-found: error
Expand Down Expand Up @@ -754,7 +754,7 @@ jobs:
# uses: mxschmitt/action-tmate@v3

- name: Save installer and dist files as a GitHub Action Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: cf-cli-windows-packages
if-no-files-found: error
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-update-repos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ jobs:
# ls -R
#
# - name: Backup current Linux RPM repodata
# uses: actions/upload-artifact@v3
# uses: actions/upload-artifact@v4
# with:
# if-no-files-found: error
# name: cf-cli-linux-rpm-repodata-backup
Expand Down Expand Up @@ -433,7 +433,7 @@ jobs:
run: ls -R

- name: Store Linux RPM repodata
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
if-no-files-found: error
name: cf-cli-linux-rpm-repodata
Expand Down
Loading