Skip to content

Commit 4477c02

Browse files
authored
chore(ci): update actions to v4 (#1415)
1 parent d55d438 commit 4477c02

File tree

12 files changed

+22
-22
lines changed

12 files changed

+22
-22
lines changed

.github/workflows/actions/build-core/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ description: 'Build Ionicons'
33
runs:
44
using: 'composite'
55
steps:
6-
- uses: actions/checkout@v3
6+
- uses: actions/checkout@v4
77
with:
88
# Checkout the latest commit in this branch
99
ref: ${{ github.event.pull_request.head.sha }}
10-
- uses: actions/setup-node@v3
10+
- uses: actions/setup-node@v4
1111

1212
- name: Cache Node Modules
13-
uses: actions/cache@v3
13+
uses: actions/cache@v4
1414
env:
1515
cache-name: node-modules
1616
with:

.github/workflows/actions/download-archive/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ inputs:
1010
runs:
1111
using: 'composite'
1212
steps:
13-
- uses: actions/download-artifact@v3
13+
- uses: actions/download-artifact@v4
1414
with:
1515
name: ${{ inputs.name }}
1616
path: ${{ inputs.path }}

.github/workflows/actions/publish-npm/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ inputs:
1515
runs:
1616
using: 'composite'
1717
steps:
18-
- uses: actions/setup-node@v3
18+
- uses: actions/setup-node@v4
1919
with:
2020
node-version: 18.x
2121
- name: Install latest npm

.github/workflows/actions/test-e2e/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ inputs:
1010
runs:
1111
using: 'composite'
1212
steps:
13-
- uses: actions/setup-node@v3
13+
- uses: actions/setup-node@v4
1414

1515
- name: Cache Node Modules
16-
uses: actions/cache@v3
16+
uses: actions/cache@v4
1717
env:
1818
cache-name: node-modules
1919
with:
@@ -65,7 +65,7 @@ runs:
6565
shell: bash
6666
- name: Archive Updated Screenshots
6767
if: inputs.update == 'true' && steps.test-and-update.outputs.hasUpdatedScreenshots == 'true'
68-
uses: actions/upload-artifact@v3
68+
uses: actions/upload-artifact@v4
6969
with:
7070
name: updated-screenshots-${{ inputs.shard }}-${{ inputs.totalShards }}
7171
path: UpdatedScreenshots-${{ inputs.shard }}-${{ inputs.totalShards }}.zip

.github/workflows/actions/test-spec/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ description: 'Test Spec'
33
runs:
44
using: 'composite'
55
steps:
6-
- uses: actions/setup-node@v3
6+
- uses: actions/setup-node@v4
77

88
- name: Cache Node Modules
9-
uses: actions/cache@v3
9+
uses: actions/cache@v4
1010
env:
1111
cache-name: node-modules
1212
with:

.github/workflows/actions/update-reference-screenshots/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ on:
77
runs:
88
using: 'composite'
99
steps:
10-
- uses: actions/setup-node@v3
11-
- uses: actions/download-artifact@v3
10+
- uses: actions/setup-node@v4
11+
- uses: actions/download-artifact@v4
1212
with:
1313
path: ./artifacts
1414
- name: Extract Archives

.github/workflows/actions/upload-archive/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ runs:
1313
- name: Create Archive
1414
run: zip -q -r ${{ inputs.output }} ${{ inputs.paths }}
1515
shell: bash
16-
- uses: actions/upload-artifact@v3
16+
- uses: actions/upload-artifact@v4
1717
with:
1818
name: ${{ inputs.name }}
1919
path: ${{ inputs.output }}

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
build-core:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
with:
2020
# Checkout the latest commit in this branch
2121
ref: ${{ github.event.pull_request.head.sha }}
@@ -25,7 +25,7 @@ jobs:
2525
needs: [build-core]
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2929
- uses: ./.github/workflows/actions/test-spec
3030

3131
test-e2e:
@@ -46,7 +46,7 @@ jobs:
4646
needs: [build-core]
4747
runs-on: ubuntu-latest
4848
steps:
49-
- uses: actions/checkout@v3
49+
- uses: actions/checkout@v4
5050
- uses: ./.github/workflows/actions/test-e2e
5151
with:
5252
shard: ${{ matrix.shard }}

.github/workflows/dev-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
outputs:
1010
dev-hash: ${{ steps.create-dev-hash.outputs.DEV_HASH }}
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- name: Install Dependencies
1414
run: npm ci --no-package-lock
1515
shell: bash

.github/workflows/release-ionicons.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
permissions:
2222
id-token: write
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
- uses: ./.github/workflows/actions/publish-npm
2626
with:
2727
tag: ${{ inputs.tag }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
needs: [release-ionicons]
3232
runs-on: ubuntu-latest
3333
steps:
34-
- uses: actions/checkout@v3
34+
- uses: actions/checkout@v4
3535
with:
3636
token: ${{ secrets.IONITRON_TOKEN }}
3737
fetch-depth: 0

.github/workflows/update-screenshots.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
build-core:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
- uses: ./.github/workflows/actions/build-core
1212

1313
test-e2e:
@@ -28,7 +28,7 @@ jobs:
2828
needs: [build-core]
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232
- uses: ./.github/workflows/actions/test-e2e
3333
with:
3434
shard: ${{ matrix.shard }}
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: ubuntu-latest
4040
needs: [test-e2e]
4141
steps:
42-
- uses: actions/checkout@v3
42+
- uses: actions/checkout@v4
4343
# Normally, we could just push with the
4444
# default GITHUB_TOKEN, but that will
4545
# not cause the build workflow

0 commit comments

Comments
 (0)