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/download-artifact from 3 to 4.1.7 in /.github/workflows #468

Open
wants to merge 1 commit into
base: trunk
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/preview-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,20 +103,20 @@ jobs:
- uses: actions/checkout@v2
- uses: actions-ecosystem/action-get-latest-tag@v1
id: get-latest-tag
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4.1.7
with:
name: rubyfmt-source-release
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4.1.7
with:
name: rubyfmt-release-artifact-ubuntu-20.04-aarch64-unknown-linux-gnu
- run: |
# The arch part of this path is set with uname, but we cross-compile the arm build on
# an x86 machine, so we want to make sure the name is correct for the release
mv rubyfmt-${{ steps.get-latest-tag.outputs.tag }}-Linux-x86_64.tar.gz rubyfmt-${{ steps.get-latest-tag.outputs.tag }}-Linux-aarch64.tar.gz
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4.1.7
with:
name: rubyfmt-release-artifact-ubuntu-20.04-native
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4.1.7
with:
name: rubyfmt-release-artifact-macos-latest-native
- name: Upload Release
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,13 @@ jobs:
- build
- source-release
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4.1.7
with:
name: rubyfmt-source-release
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4.1.7
with:
name: rubyfmt-release-artifact-ubuntu-latest
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4.1.7
with:
name: rubyfmt-release-artifact-macos-latest
- name: Ship It 🚢
Expand Down
Loading