Compare commits

...

12 commits

Author SHA1 Message Date
40c818327e Merge pull request 'Update actions/download-artifact action to v4' (#7) from renovate/actions-download-artifact-4.x into main
Reviewed-on: #7
2024-03-16 18:49:14 +01:00
29c32e36b7 Merge pull request 'Update actions/upload-artifact action to v4' (#8) from renovate/actions-upload-artifact-4.x into main
Reviewed-on: #8
2024-03-16 18:49:08 +01:00
842db75dbc Merge pull request 'Update node Docker tag to v21' (#9) from renovate/node-21.x into main
Reviewed-on: #9
2024-03-16 18:49:06 +01:00
33f7c85591 Merge pull request 'Update actions/checkout action to v4' (#6) from renovate/actions-checkout-4.x into main
Reviewed-on: #6
2024-03-16 18:49:04 +01:00
27dd7d3639 Update node Docker tag to v21 2024-03-16 17:35:29 +00:00
ee5d83f0a9 Update actions/upload-artifact action to v4 2024-03-16 17:35:27 +00:00
22bc996d92 Update actions/download-artifact action to v4 2024-03-16 17:35:26 +00:00
276950e16f Update actions/checkout action to v4 2024-03-16 17:35:24 +00:00
e63f561650 camelCase instead of lowercase for prHourlyLimit 2024-03-16 18:08:20 +01:00
84de1a1d85 disable PR limit for renovate as we have no tests or CI ran for PR (yet) 2024-03-11 23:31:49 +01:00
b058ff182a Merge pull request 'Configure Renovate' (#4) from renovate/configure into main
Reviewed-on: #4
2024-03-11 23:31:34 +01:00
b5279f3567 Add renovate.json 2024-03-11 22:28:32 +00:00
2 changed files with 9 additions and 5 deletions

View file

@ -7,15 +7,15 @@ jobs:
build:
runs-on: docker
container:
image: node:16-bullseye # Required by actions/checkout and actions/upload-artifact
image: node:21-bullseye # Required by actions/checkout and actions/upload-artifact
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install dependencies
run: npm install
- name: Build
run: npx @11ty/eleventy
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
@ -23,9 +23,9 @@ jobs:
needs: [build]
runs-on: docker
container:
image: node:16-bullseye # Required by actions/download-artifact
image: node:21-bullseye # Required by actions/download-artifact
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: dist
- name: rsync deployment

4
renovate.json Normal file
View file

@ -0,0 +1,4 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"prHourlyLimit": 0
}