Skip to content

Commit 548077d

Browse files
committed
Upgrade GitHub Actions to Node 24 runtimes
Assisted-By: devx/51da43b4-7970-4354-82a7-7bffdd9dd987
1 parent fe1f6b7 commit 548077d

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/actions/prepare/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Prepare repo
22
runs:
33
using: 'composite'
44
steps:
5-
- uses: actions/setup-node@v4
5+
- uses: actions/setup-node@v5
66
name: Setup node.js and yarn
77
with:
88
registry-url: 'https://registry.npmjs.org' # Required for OIDC

.github/workflows/changesets-reminder.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
timeout-minutes: 2
3131
if: ${{ !github.event.pull_request.draft && !startsWith(github.head_ref, 'changeset-release/') }}
3232
steps:
33-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v5
3434
- uses: mskelton/changelog-reminder-action@7039cd14fb784c0a2b37f6e7a6ade2c9148c2245 # v2.0.0
3535
with:
3636
changelogRegex: "\\.changeset"

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
type-check:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@v5
1010
- uses: ./.github/workflows/actions/prepare
1111

1212
- id: typescript-cache
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-latest
2828

2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
- uses: ./.github/workflows/actions/prepare
3232

3333
- id: eslint-cache
@@ -46,7 +46,7 @@ jobs:
4646
runs-on: ubuntu-latest
4747

4848
steps:
49-
- uses: actions/checkout@v4
49+
- uses: actions/checkout@v5
5050
- uses: ./.github/workflows/actions/prepare
5151

5252
- name: Build packages
@@ -89,7 +89,7 @@ jobs:
8989
runs-on: ubuntu-latest
9090

9191
steps:
92-
- uses: actions/checkout@v4
92+
- uses: actions/checkout@v5
9393
- uses: ./.github/workflows/actions/prepare
9494

9595
- id: test-build

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
steps:
3535
# WARNING: DO NOT RUN ANY CUSTOM LOCAL SCRIPT BEFORE RUNNING THE SNAPIT ACTION
3636
# This action can be executed by 3rd party users and it should not be able to run arbitrary code from a PR.
37-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v5
3838
with:
3939
token: ${{ secrets.SHOPIFY_GH_ACCESS_TOKEN }}
4040

@@ -62,7 +62,7 @@ jobs:
6262
contents: read
6363
id-token: write # Required for OIDC
6464
steps:
65-
- uses: actions/checkout@v3
65+
- uses: actions/checkout@v5
6666
with:
6767
token: ${{ secrets.SHOPIFY_GH_ACCESS_TOKEN }}
6868

.github/workflows/internal-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Internal Snapshot
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v5
1717
with:
1818
token: ${{ secrets.SHOPIFY_GH_ACCESS_TOKEN }}
1919

.github/workflows/unstable-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Unstable Snapshot
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v5
1717
with:
1818
token: ${{ secrets.SHOPIFY_GH_ACCESS_TOKEN }}
1919

0 commit comments

Comments
 (0)