Commit Graph

53 Commits

Author SHA1 Message Date
dependabot[bot]
4cf801c16b Bump actions/cache from 4 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-12-31 07:10:32 +08:00
dependabot[bot]
723be739c1 Bump actions/checkout from 5 to 6
Some checks failed
check / Stackage check (push) Has been cancelled
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-11-24 11:13:57 +01:00
dependabot[bot]
1b79a2c5cd
Bump actions/checkout from 4 to 5 (#7827)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-08-26 21:15:48 -07:00
Jens Petersen
97d791196f bump GH action to ubuntu-latest 2025-07-14 14:14:52 +08:00
Mihai Maruseac
150da98401
Add lts24 branch to CI, remove lts22
Signed-off-by: Mihai Maruseac <mihai.maruseac@gmail.com>
2025-07-13 11:39:30 -07:00
Bryan Richter
d5cf56f232
Commit some changes that have been around forever
I don't know if these will fix CI, but I guess they won't hurt.
2025-06-10 20:58:04 +03:00
Jens Petersen
c40046121b update GH image action for lts23 2024-12-09 13:12:47 +05:30
Jens Petersen
2a8c05dd4e PR template: "upgrade" verify-package step to recommended 2024-03-19 23:30:27 +08:00
dependabot[bot]
46b3ce4f5b
Bump actions/checkout from 3 to 4 (#7305)
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v3...v4)

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

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-05 07:18:59 +01:00
dependabot[bot]
10b8304cd7
Bump actions/cache from 3 to 4
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v3...v4)

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

Signed-off-by: dependabot[bot] <support@github.com>
2024-02-05 06:11:26 +00:00
Andreas Ländle
65882c2ae4
Create dependabot.yml 2024-02-05 07:10:37 +01:00
Jens Petersen
d375e753c8 rename GH PULL_REQUEST_TEMPLATE.md to lowercase
[skip ci]
2024-01-05 13:01:36 +08:00
Mihai Maruseac
7245bf7d2f
Prepare for new LTS
Signed-off-by: Mihai Maruseac <mihai.maruseac@gmail.com>
2023-12-15 21:40:53 -08:00
Andreas Ländle
56d27e1cfe
Update image.yml to build lts21 branch image. 2023-06-19 18:16:07 +02:00
Jens Petersen
3739c7aaeb update GH actions to v3 2023-01-04 15:52:23 +08:00
Jens Petersen
14e465b3a1 GH check action: bump to ubuntu-22.04
because stack defaults ghc-9.4.3 to a bindist that needs glibc-2.32
2022-11-19 21:23:27 +08:00
Mihai Maruseac
b05a7b08ea Change CI to lts20
Signed-off-by: Mihai Maruseac <mihai.maruseac@gmail.com>
2022-11-15 16:37:08 -08:00
Adam Bergmark
431c2b0933 Upgrade docker image to ubuntu 20.04 2022-06-06 20:03:34 +02:00
nathannaveen
d848a54838 chore: Set permissions for GitHub actions
Restrict the GitHub token permissions only to the required ones; this way, even if the attackers will succeed in compromising your workflow, they won’t be able to do much.

- Included permissions for the action. https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions

https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions

https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs

[Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/)

Signed-off-by: nathannaveen <42319948+nathannaveen@users.noreply.github.com>
2022-05-31 21:40:42 -07:00
Adam Bergmark
9bdb21352d Note debian-bootstrap.sh in PR template 2022-05-21 20:57:32 +02:00
Mihai Maruseac
3d6168d3c1
Update PULL_REQUEST_TEMPLATE.md 2022-04-11 09:59:14 -07:00
Jens Petersen
70317ea1c4 GH image action: lts19 branch 2022-03-17 17:08:51 +08:00
Adam Bergmark
adf139fe1d Add note on CI failures in PR template 2021-10-31 10:17:15 +01:00
Michael Snoyman
0c5bc988e1
Enable image workflow 2021-08-19 12:14:58 +03:00
Jens Petersen
a0a3df145f disable the GHA for building images since we are not using it yet 2021-07-02 17:22:49 +08:00
Jens Petersen
37809469d0 GH check action: try restricting to the master branch 2021-06-17 23:35:33 +08:00
Jens Petersen
113a8313db github docker registry requires image name below repository name
name unknown: docker image push is only supported with a tag of the format :owner/:repo_name/:image_name.
		Please add an image name to "commercialhaskell/stackage" tag. e.g. "commercialhaskell/stackage/<image_name>"
2021-06-17 23:29:38 +08:00
Jens Petersen
14f4d3b79f GH image: fix branch tag 2021-06-17 22:59:33 +08:00
Jens Petersen
ceaa6825ab add GH workflow action to create the build image
Based on https://github.com/fpco/stackage-server/blob/master/.github/workflows/base.yml

Image is pushed to docker.pkg.github.com.
Later we should switch from docker to current beta container registry ghcr.io
2021-06-17 22:24:23 +08:00
Jens Petersen
b9f1c635c1 GH workflow: we don't actually use haskell/actions just our own stack 2021-06-17 14:35:35 +08:00
Jens Petersen
2dcb7d8e8f .github: drop the hardcoding of cabal-install 2021-04-15 11:27:29 +08:00
Adam Bergmark
bfcd7c5d31 Note location of verify-package, closes #5605 2021-03-15 23:44:54 +01:00
Adam Bergmark
4f652d8149 Revert "Try adding link in PR template"
This reverts commit 2d7cc6b9f4.
2021-03-15 23:43:50 +01:00
Adam Bergmark
2d7cc6b9f4 Try adding link in PR template 2021-03-15 23:43:01 +01:00
Adam Bergmark
93f2d1f238 Note that pull request template needs to be updated to match verify-package 2021-03-15 23:41:27 +01:00
Jens Petersen
98e53dc17e github workflow: also specify cabal-install default 3.4 to avoid pulling 3.2 2021-02-21 02:45:36 +08:00
Jens Petersen
a4e107cbe1 github workflow: specify ghc 8.10 - ubuntu 8.10.3 currently 2021-02-21 02:37:53 +08:00
Jens Petersen
fcc5ea235f github workflow: specify ghc version for completeness 2021-02-21 02:25:47 +08:00
Jens Petersen
e2ac7b6308 add github workflow check action 2021-02-17 11:29:21 +08:00
Michael Sloan
b9a700c5ca
Fix another typo in PR template 2020-08-31 23:52:14 -06:00
Adam Bergmark
186780a2e5 Fix typo in PR template 2020-08-08 19:06:04 +02:00
Hideaki Kawai
b1a28d0710 Update github PR template 2020-07-28 23:24:14 +00:00
Leonhard Markert
ca7a4f4d4c Update build instructions
... to bring them closer to what's described in MAINTAINERS.md.

In particular, the `cd` and `rm -f stack.yaml` steps were missing.
2020-02-18 14:09:43 +00:00
Mihai Maruseac
7f9d602e23
Update PULL_REQUEST_TEMPLATE.md 2019-01-21 19:59:28 -08:00
Jens Petersen
e942eccfc4
tweaks to the PR template text 2018-07-21 23:15:38 +09:00
Alexey Zabelin
1e5df511e6
Add more precise instructions 2018-05-02 20:15:35 -04:00
Dan Burton
2776a2b573
Specify 30 mins in PR template, closes #3386 2018-03-16 16:32:46 -07:00
Dylan Simon
3e3a2cbad3 PR template: fix typo of "successfully" 2018-01-24 14:05:49 -05:00
Mihai Maruseac
837a05e0ba
Fix typo in pull request template. 2018-01-01 11:18:06 -08:00
Mihai Maruseac
4348312a1c
Update PULL_REQUEST_TEMPLATE.md
So that the fact that the last step needs to be run on a local machine is made clear
2018-01-01 11:17:36 -08:00