Skip to content
Merged
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/bootstrap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
key: bootstrap-${{ runner.os }}-${{ matrix.ghc }}-20221115-${{ github.sha }}
restore-keys: bootstrap-${{ runner.os }}-${{ matrix.ghc }}-20221115-

- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: haskell-actions/setup@v2
with:
ghc-version: ${{ matrix.ghc }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/changelogs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
echo "$HOME/.local/bin" >> $GITHUB_PATH

- name: Checkout cabal sources
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Run changelog-d
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-sdist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
ghc-version: ${{ matrix.ghc }}
cabal-version: latest

- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Make sdist
run: cabal sdist cabal-install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: marocchino/validate-dependabot@v3
id: validate
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
fourmolu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: haskell-actions/run-fourmolu@v11
with:
version: "0.12.0.0"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
hlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: haskell-actions/hlint-setup@v2
with:
version: "3.10"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/quick-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
cabal --version
- name: Update Hackage index
run: cabal v2-update
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Generate build plan for correct cache key
run: ${{ env.cabal_build }} --dry-run
- name: Restore cached dependencies
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
restore-keys: linux-store-doctest
- name: Update Hackage index
run: cabal v2-update
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install doctest
run: make doctest-install
- name: Doctest
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
cabal --version
- name: Update Hackage index
run: cabal v2-update
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Generate build plan for correct cache key
run: ${{ env.cabal_build }} --dry-run
- name: Restore cached dependencies
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
cabal --version
- name: Update Hackage Index
run: cabal v2-update
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Check Release with Pinned Hackage
run: cabal build all --dry-run --project-file=cabal.release.project
- name: Check Release with Latest Hackage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }}
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Download artifacts
uses: actions/download-artifact@v6
Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/reusable-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ jobs:
with:
cabal: ${{ env.CABAL_VERSION }}

- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ matrix.branch }}

Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
ADD_CABAL_ARGS: "--enable-split-sections --enable-executable-static"

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ matrix.branch }}

Expand Down Expand Up @@ -241,7 +241,7 @@ jobs:
}
]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ matrix.branch }}

Expand Down Expand Up @@ -290,7 +290,7 @@ jobs:
matrix:
branch: ${{ fromJSON(inputs.branches) }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ matrix.branch }}

Expand Down Expand Up @@ -330,7 +330,7 @@ jobs:
matrix:
branch: ${{ fromJSON(inputs.branches) }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ matrix.branch }}

Expand Down Expand Up @@ -369,7 +369,7 @@ jobs:
matrix:
branch: ${{ fromJSON(inputs.branches) }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ matrix.branch }}

Expand Down Expand Up @@ -423,7 +423,7 @@ jobs:
matrix:
branch: ${{ fromJSON(inputs.branches) }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ matrix.branch }}

Expand Down Expand Up @@ -538,7 +538,7 @@ jobs:
run: |
${{ matrix.platform.installCmd }} curl bash git ${{ matrix.platform.toolRequirements }}

- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ matrix.branch }}

Expand Down Expand Up @@ -583,7 +583,7 @@ jobs:
# matrix:
# branch: ${{ fromJSON(inputs.branches) }}
# steps:
# - uses: actions/checkout@v5
# - uses: actions/checkout@v6
# with:
# ref: ${{ matrix.branch }}
#
Expand Down Expand Up @@ -620,7 +620,7 @@ jobs:
}
]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ matrix.branch }}

Expand Down Expand Up @@ -664,7 +664,7 @@ jobs:
matrix:
branch: ${{ fromJSON(inputs.branches) }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ matrix.branch }}

Expand Down Expand Up @@ -705,7 +705,7 @@ jobs:
matrix:
branch: ${{ fromJSON(inputs.branches) }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ matrix.branch }}

Expand Down Expand Up @@ -741,7 +741,7 @@ jobs:
matrix:
branch: ${{ fromJSON(inputs.branches) }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ matrix.branch }}

Expand Down Expand Up @@ -790,7 +790,7 @@ jobs:
matrix:
branch: ${{ fromJSON(inputs.branches) }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ matrix.branch }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:

- uses: actions/checkout@v5
- uses: actions/checkout@v6

- run: |
wget -q https://github.com/crate-ci/typos/releases/download/${{ env.TYPOS_VER }}/typos-${{ env.TYPOS_VER }}-${{ env.TYPOS_PLATFORM }}.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/users-guide.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
python-version: ['3.10']

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
submodules: recursive

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
run: |
echo "TMP=${{ runner.temp }}" >> "$GITHUB_ENV"

- uses: actions/checkout@v5
- uses: actions/checkout@v6

# See https://github.com/haskell/cabal/blob/master/CONTRIBUTING.md#hackage-revisions
- name: Add manually supplied allow-newer
Expand Down Expand Up @@ -268,7 +268,7 @@ jobs:
fail-fast: false

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Install prerequisites for old GHCs
run: |
Expand Down Expand Up @@ -333,7 +333,7 @@ jobs:
# that Alpine's git doesn't like. Hack around it.
- run: git config --global --add safe.directory $(pwd)

- uses: actions/checkout@v5
- uses: actions/checkout@v6

# See https://github.com/haskell/cabal/blob/master/CONTRIBUTING.md#hackage-revisions
- name: Manually supplied constraints/allow-newer
Expand Down Expand Up @@ -427,7 +427,7 @@ jobs:
run: |
echo "TMP=${{ runner.temp }}" >> "$GITHUB_ENV"

- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: haskell-actions/setup@v2
id: setup-haskell
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/whitespace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:

- uses: actions/checkout@v5
- uses: actions/checkout@v6

- run: |
# no longer using the action because apparently we're supposed to use the Makefile here
Expand Down
Loading