Skip to content

Commit

Permalink
Update GitHub action versions.
Browse files Browse the repository at this point in the history
Switch haskell/actions/setup to haskell-actions/setup.  See https://github.com/haskell/actions.
  • Loading branch information
chungyc authored Oct 20, 2024
1 parent 2631bf6 commit 9c20bcf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
env:
cabal_project_freeze: cabal.project.${{ matrix.ghc }}.freeze
steps:
- uses: actions/checkout@v2
- uses: haskell/actions/setup@v2
- uses: actions/checkout@v4
- uses: haskell-actions/setup@v2
id: setup-haskell-build
with:
ghc-version: ${{ matrix.ghc }}
- name: Cache Cabal build artifacts
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
${{ steps.setup-haskell-build.outputs.cabal-store }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/stale@v1
- uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: 'This issue has not seen any activity in a long time. If no further activity occurs, it will be closed after ten weeks.'
Expand Down

0 comments on commit 9c20bcf

Please sign in to comment.