Skip to content

Commit

Permalink
Update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dustin committed Oct 26, 2024
1 parent 037e0d7 commit 2b11e8d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Cache Key
id: cache_key
run: echo ::set-output name=key::$(md5sum stack.yaml | awk '{print $1}')

- name: Cache Dependencies
id: cache
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: ~/.stack
key: ${{ matrix.os }}-${{ steps.cache_key.outputs.key }}
Expand All @@ -42,7 +42,7 @@ jobs:
mkdir -p dist/ && mv $(stack path --local-install-root)/doc/$PKG_NAME-*/* dist/
- name: Store Artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3
with:
name: mqtt-watch-${{ matrix.os }}
path: mqtt-watch
Expand Down

0 comments on commit 2b11e8d

Please sign in to comment.