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

chore(deps): bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows in the github_actions group across 1 directory #160

Closed
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/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,15 +182,15 @@ jobs:
- uses: actions/checkout@v2

- name: Download phase-version artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: phase-version
path: phase-version

- name: Set VERSION from file
run: echo "VERSION=$(cat ./phase-version/PHASE_CLI_VERSION.txt | tr -d '\r')" >> $GITHUB_ENV
- name: Download phase-alpine-build artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: phase-alpine-build
path: dist
Expand All @@ -211,7 +211,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Download phase-version artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: phase-version
path: phase-version
Expand All @@ -237,7 +237,7 @@ jobs:
steps:
# Download all the artifacts from the build jobs
- name: Download all artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7

# # Debug: List the content of the current directory
# - name: Debug - List contents of artifacts directory
Expand Down
Loading