Skip to content

Commit

Permalink
deps: update all dependencies to the latest
Browse files Browse the repository at this point in the history
  • Loading branch information
marcomontalbano committed May 6, 2024
1 parent 93d5991 commit cef1d6b
Show file tree
Hide file tree
Showing 14 changed files with 1,427 additions and 1,826 deletions.
2 changes: 1 addition & 1 deletion .github/actions/transform-inputs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ outputs:
description: Stringified array of ids to export

runs:
using: node16
using: node20
main: main.js
83 changes: 66 additions & 17 deletions .github/actions/transform-inputs/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .github/actions/transform-inputs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"dependencies": {
"@actions/core": "^1.6.0"
"@actions/core": "^1.10.1"
},
"scripts": {
"test": "env $(awk 'NF > 0 && !/^#/ { print $0 }' .env.test | xargs) node main.test.js"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Figma Export PDFs 🦾
id: figmaExportPdfs
Expand All @@ -31,7 +31,7 @@ jobs:
outDir: ${{ steps.figmaExportPdfs.outputs.outDir }}

- name: Upload artifact 📂
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: my-pdfs
path: ${{ steps.figmaExportPdfs.outputs.outDir }}
6 changes: 3 additions & 3 deletions .github/workflows/dispatch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Figma Export PDFs 🦾
id: figmaExportPdfs
Expand All @@ -39,13 +39,13 @@ jobs:
outDir: ${{ steps.figmaExportPdfs.outputs.outDir }}

- name: Upload artifact 📂
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: my-pdfs
path: ${{ steps.figmaExportPdfs.outputs.outDir }}

- name: FTP Upload 📂
uses: SamKirkland/FTP-Deploy-Action@4.0.0
uses: SamKirkland/FTP-Deploy-Action@v4.3.5
with:
server: ${{ secrets.FTP_SERVER }}
username: ${{ secrets.FTP_USERNAME }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/from-figma.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Transform Inputs 🧬
id: transformInputs
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
outDir: ${{ steps.figmaExportPdfs.outputs.outDir }}

- name: Upload 📂
uses: SamKirkland/FTP-Deploy-Action@4.0.0
uses: SamKirkland/FTP-Deploy-Action@v4.3.5
with:
server: ${{ secrets.FTP_SERVER }}
username: ${{ secrets.FTP_USERNAME }}
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18
20
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# FROM node:18-alpine
# FROM node:20-alpine

# ENTRYPOINT ["/github/workspace/entrypoint.sh"]

FROM node:18-alpine
FROM node:20-alpine

WORKDIR /figma-export-pdfs-action

Expand Down
Loading

0 comments on commit cef1d6b

Please sign in to comment.