Skip to content

Commit

Permalink
Upgrade @actions/artifact actions (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
maennchen committed Dec 15, 2023
1 parent 41dde3d commit caaa280
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/part_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
docs-bdepsuild-{{ runner.os }}-${{ steps.setupBEAM.outputs.otp-version }}-${{ steps.setupBEAM.outputs.elixir-version }}-
- run: mix deps.get
- run: mix docs
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: docs
path: doc
Expand All @@ -53,7 +53,7 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: docs
path: docs
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/part_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
mix_hex_build-deps-${{ runner.os }}-${{ steps.setupBEAM.outputs.otp-version }}-
- run: mix deps.get
- run: mix hex.build --output package.tar
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: package
path: package.tar
Expand All @@ -87,7 +87,7 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: package
path: .
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/part_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ jobs:
- run: mix coveralls.multiple --type html --type github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: mix_test-coverage
name: mix_test-coverage-${{ matrix.elixir }}
path: cover/

credo:
Expand Down

0 comments on commit caaa280

Please sign in to comment.