Compare commits

...

13 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
40e53676d4 updated hostux git URL for the moment
All checks were successful
/ build (push) Successful in 21s
/ deploy (push) Successful in 19s
2024-02-21 13:49:37 +01:00
2 changed files with 10 additions and 6 deletions

View file

@ -7,15 +7,15 @@ jobs:
build: build:
runs-on: docker runs-on: docker
container: 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: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Install dependencies - name: Install dependencies
run: npm install run: npm install
- name: Build - name: Build
run: npx @11ty/eleventy run: npx @11ty/eleventy
- name: Upload artifact - name: Upload artifact
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: dist name: dist
path: dist/ path: dist/
@ -23,13 +23,13 @@ jobs:
needs: [build] needs: [build]
runs-on: docker runs-on: docker
container: container:
image: node:16-bullseye # Required by actions/download-artifact image: node:21-bullseye # Required by actions/download-artifact
steps: steps:
- uses: actions/download-artifact@v3 - uses: actions/download-artifact@v4
with: with:
name: dist name: dist
- name: rsync deployment - name: rsync deployment
uses: https://git.hostux.fr/Hostux/rsync-deployments@6.0.0 uses: https://git.archive.hostux.fr/Hostux/rsync-deployments@6.0.0
with: with:
switches: -az --no-o --no-g --no-devices --no-specials --delete --progress --checksum switches: -az --no-o --no-g --no-devices --no-specials --delete --progress --checksum
path: . path: .

4
renovate.json Normal file
View file

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