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 #2054

Open
wants to merge 1 commit into
base: main
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
4 changes: 2 additions & 2 deletions .github/workflows/part_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
- run: mix compile --warning-as-errors
env:
MIX_ENV: prod
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: compile_assets
path: priv/static
Expand All @@ -143,7 +143,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: mix_release
path: .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/part_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: docs
path: docs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/part_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ jobs:
compile-${{ env.MIX_ENV }}-${{ runner.os }}-${{ steps.setupBEAM.outputs.otp-version }}-${{ steps.setupBEAM.outputs.elixir-version }}-
- run: mix deps.compile
- run: mix compile --warning-as-errors
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: dialyzer_plt_dev
path: priv/plts/
Expand Down
Loading