Skip to content

Commit 787d36e

Browse files
authored
Merge branch 'main' into feat-reuse
2 parents 04a54de + 5f88356 commit 787d36e

File tree

6 files changed

+1440
-251
lines changed

6 files changed

+1440
-251
lines changed

.github/actions/download-tar-artifact/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ runs:
1212
using: "composite"
1313
steps:
1414
- name: ⬇ Download build
15-
uses: actions/download-artifact@v3
15+
uses: actions/download-artifact@v4
1616
with:
1717
name: ${{ inputs.name }}
1818

.github/actions/extract-branch/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ runs:
99
using: "composite"
1010
steps:
1111
- name: ⏬ Get branch name
12-
uses: actions/github-script@v6
12+
uses: actions/github-script@v7
1313
id: get-branch-name
1414
with:
1515
result-encoding: string

.github/actions/npm-cache/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ runs:
88
# https://github.com/actions/setup-node
99
uses: actions/setup-node@v4
1010
with:
11-
node-version: 22
11+
node-version-file: '.nvmrc'
1212

1313
- name: Display node and npm version
1414
shell: bash
1515
run: |
1616
node --version
1717
npm --version
1818
19-
- uses: actions/cache@v3
19+
- uses: actions/cache@v4
2020
id: "npm-cache" # use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true'
2121
with:
2222
path: "./node_modules"

.github/actions/upload-tar-artifact/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ runs:
1616
shell: bash
1717

1818
- name: ⬆ Upload build
19-
uses: actions/upload-artifact@v3
19+
uses: actions/upload-artifact@v4
2020
with:
2121
name: ${{ inputs.name }}
2222
path: ${{ inputs.name }}

0 commit comments

Comments
 (0)