Skip to content

Commit 28b9802

Browse files
authored
chore: bump dependencies and upgrade github action (#54)
* chore: bump dependencies to latest versions * fix: upgrade github action for deployment
1 parent 74f38fa commit 28b9802

File tree

3 files changed

+21
-23
lines changed

3 files changed

+21
-23
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: bun run build
3232

3333
- name: Upload artifact
34-
uses: actions/upload-pages-artifact@v1
34+
uses: actions/upload-pages-artifact@v3
3535
with:
3636
path: ./dist
3737

@@ -44,4 +44,4 @@ jobs:
4444
steps:
4545
- name: Deploy to GitHub Pages
4646
id: deployment
47-
uses: actions/deploy-pages@v1
47+
uses: actions/deploy-pages@v4

astro.config.mjs

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -10,35 +10,33 @@ export default defineConfig({
1010
title: "Payment Pointers",
1111
description:
1212
"Payment Pointers are a standardized identifier for payment accounts. In the same way that an email address provides an identifier for a mailbox in the email ecosystem a payment pointer is used by an account holder to share the details of their account with a counter-party.",
13-
head: [
14-
{
15-
tag: 'script',
16-
attrs: {
17-
defer: true,
18-
'data-website-id': 'cab4fd0a-e2db-4666-a974-5b199f0d6d43',
19-
src: 'https://ilf-site-analytics.netlify.app/script.js',
20-
'data-domains': 'paymentpointers.org'
21-
}
22-
}
23-
],
24-
customCss: [
13+
head: [
14+
{
15+
tag: "script",
16+
attrs: {
17+
defer: true,
18+
"data-website-id": "cab4fd0a-e2db-4666-a974-5b199f0d6d43",
19+
src: "https://ilf-site-analytics.netlify.app/script.js",
20+
"data-domains": "paymentpointers.org",
21+
},
22+
},
23+
],
24+
customCss: [
2525
"./node_modules/@interledger/docs-design-system/src/styles/teal-theme.css",
2626
"./node_modules/@interledger/docs-design-system/src/styles/ilf-docs.css",
2727
],
2828
plugins: [starlightLinksValidator()],
2929
components: {
3030
Header: "./src/components/Header.astro",
31-
PageSidebar: './src/components/PageSidebar.astro'
31+
PageSidebar: "./src/components/PageSidebar.astro",
3232
},
3333
expressiveCode: {
3434
styleOverrides: {
3535
borderColor: "transparent",
3636
borderRadius: "var(--border-radius)",
3737
},
3838
},
39-
social: {
40-
github: "https://github.com/interledger/paymentpointers.org",
41-
},
39+
social: [{ icon: "github", label: "GitHub", href: "https://github.com/interledger/paymentpointers.org" }],
4240
sidebar: [
4341
{ label: "Explainer", link: "/" },
4442
{ label: "Design Goals", link: "/goals" },

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"astro": "astro"
99
},
1010
"dependencies": {
11-
"@astrojs/starlight": "^0.31.1",
12-
"@interledger/docs-design-system": "^0.6.1",
13-
"astro": "^5.1.7",
14-
"sharp": "^0.33.5",
15-
"starlight-links-validator": "^0.14.1"
11+
"@astrojs/starlight": "^0.33.0",
12+
"@interledger/docs-design-system": "^0.6.2",
13+
"astro": "^5.6.1",
14+
"sharp": "^0.34.1",
15+
"starlight-links-validator": "^0.15.0"
1616
}
1717
}

0 commit comments

Comments
 (0)