Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
with:
push: ${{ github.ref == 'refs/heads/main'}}
tags: ${{ steps.docker-metadata.outputs.tags }}
platforms: linux/amd64,linux/arm64
labels: ${{ steps.docker-metadata.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max

6 changes: 3 additions & 3 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
VERSION: ${{ steps.get_version.outputs.VERSION }}
steps:
- name: Checkout source code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install dependencies (apt-get)
run: |
sudo apt-get update
Expand Down Expand Up @@ -54,14 +54,14 @@ jobs:
with:
extra_args: --verbose --all-files
- name: Setup haskell tooling
uses: haskell/actions/setup@v2
uses: haskell-actions/setup@v2
with:
ghc-version: '9.2.8'
cabal-version: '3.10.1.0'
enable-stack: true
stack-version: '2.9'
- name: Setup cache
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: cache-cabal
with:
Expand Down