Skip to content

Commit 5db3a8a

Browse files
authored
Update workflow versions (#32)
* More deployment workflow simplifications * Update workflow versions
1 parent 381d254 commit 5db3a8a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/cf.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_call:
55
inputs:
66
environment:
7-
default: 'Staging'
7+
default: Staging
88
type: string
99

1010
workflow_dispatch:
@@ -58,8 +58,8 @@ jobs:
5858
id: route
5959
shell: bash
6060
run: |
61-
{{#literal}}host=$(cf app "${APP_NAME}" | awk '/routes:/ {print $2}' | sed -E 's#^https?://##; s/,.*$//')
62-
echo "url=https://$host" >> "$GITHUB_OUTPUT"{{/literal}}
61+
host=$(cf app "${APP_NAME}" | awk '/routes:/ {print $2}' | sed -E 's#^https?://##; s/,.*$//')
62+
echo "url=https://$host" >> "$GITHUB_OUTPUT"
6363
environment:
6464
name: ${{ inputs.environment || 'Staging' }}
6565
url: ${{ steps.route.outputs.url }}

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
matrix:
1919
node-version: [20, 22]
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
with:
2323
submodules: true
24-
- uses: actions/setup-node@v4
24+
- uses: actions/setup-node@v5
2525
with:
2626
node-version: ${{ matrix.node-version }}
2727
- run: npm ci

0 commit comments

Comments
 (0)