Skip to content

Commit

Permalink
Bump actions/upload-artifact from 2 to 3
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v2...v3)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Apr 11, 2022
1 parent f79967b commit 07a97cc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,14 @@ jobs:
tar -czf cabal.tar.gz *
- name: Upload workspace
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: workspace
retention-days: 1
path: workspace.tar.gz

- name: Upload .cabal
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: cabal-home
retention-days: 1
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
column -s, -t < ghcide/bench-results/unprofiled/${{ matrix.example }}/results.csv | tee ghcide/bench-results/unprofiled/${{ matrix.example }}/results.txt
- name: Archive benchmarking artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: bench-results-${{ runner.os }}-${{ matrix.ghc }}
path: |
Expand All @@ -151,7 +151,7 @@ jobs:
ghcide/bench-results/**/*.eventlog.html
- name: Archive benchmark logs
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: bench-logs-${{ runner.os }}-${{ matrix.ghc }}
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
asset_content_type: application/gzip

- name: Upload source tarball to workflow artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: haskell-language-server-${{ env.HLS_VER }}-src.tar.gz
path: src-dist/haskell-language-server.tar.gz
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
}
- name: Upload binaries tarball to workflow artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
path: ${{ github.workspace }}/*

Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
asset_content_type: plain/text

- name: Upload sha256sums to workflow artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: SHA256SUMS
path: SHA256SUMS
2 changes: 1 addition & 1 deletion .github/workflows/hackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ jobs:
- name: "Upload package dist tarball"
if: steps.get-hackage-version.outputs.exists != 'true' && matrix.ghc == '8.10.7'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.package }}
path: ${{ steps.generate-dist-tarball.outputs.path }}
Expand Down

0 comments on commit 07a97cc

Please sign in to comment.