Skip to content

Commit 8727fb9

Browse files
chore(deps): update github-actions
1 parent 1881b58 commit 8727fb9

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

.github/actions/prepare-build/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ runs:
1919
using: composite
2020
- name: Restore ${{ inputs.name }}
2121
id: restore-ref-artifact
22-
uses: actions/cache@v3
22+
uses: actions/cache@v4
2323
with:
2424
path: |
2525
./${{ inputs.package }}/dist-${{ inputs.ref }}${{ inputs.ext }}

.github/actions/setup/action.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ inputs:
5050
runs:
5151
using: composite
5252
steps:
53-
- uses: pnpm/action-setup@d882d12c64e032187b2edb46d3a0d003b7a43598 # v2.4.0
53+
- uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0
5454
- uses: actions/setup-node@v4
5555
with:
5656
registry-url: 'https://registry.npmjs.org'
@@ -63,7 +63,7 @@ runs:
6363

6464
- name: 'Setup local TurboRepo server'
6565
if: ${{ inputs.repo-token }}
66-
uses: felixmosh/turborepo-gh-artifacts@v2
66+
uses: felixmosh/turborepo-gh-artifacts@v3
6767
with:
6868
repo-token: ${{ inputs.repo-token }}
6969

@@ -97,7 +97,7 @@ runs:
9797
9898
- name: Restore Broccoli Cache
9999
if: ${{ inputs.restore-broccoli-cache == 'true' }}
100-
uses: actions/cache@v3
100+
uses: actions/cache@v4
101101
with:
102102
path: |
103103
${{ github.workspace }}/.broccoli-cache
@@ -111,7 +111,7 @@ runs:
111111
112112
- name: Restore Lint Caches
113113
if: ${{ inputs.restore-lint-caches == 'true' }}
114-
uses: actions/cache@v3
114+
uses: actions/cache@v4
115115
with:
116116
path: |
117117
.eslintcache

.github/workflows/asset-size-check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
fetch-depth: 3
2929
- run: git fetch origin main --depth=1
30-
- uses: pnpm/action-setup@d882d12c64e032187b2edb46d3a0d003b7a43598 # v2.4.0
30+
- uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0
3131
- uses: actions/setup-node@v4
3232
with:
3333
node-version: 19.x

.github/workflows/deprecations-check.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
16-
- uses: pnpm/action-setup@d882d12c64e032187b2edb46d3a0d003b7a43598 # v2.4.0
16+
- uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0
1717
- uses: actions/setup-node@v4
1818
with:
1919
node-version: 19.x
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535
steps:
3636
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
37-
- uses: pnpm/action-setup@d882d12c64e032187b2edb46d3a0d003b7a43598 # v2.4.0
37+
- uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0
3838
- uses: actions/setup-node@v4
3939
with:
4040
node-version: 19.x

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595

9696
- name: Check for Test Failure Retry
9797
id: retry-test-failures
98-
uses: actions/cache/restore@v3
98+
uses: actions/cache/restore@v4
9999
with:
100100
path: failed-test-log.txt
101101
key: failed-test-log_${{ github.sha }}
@@ -131,7 +131,7 @@ jobs:
131131

132132
- name: Maybe Cache Failures
133133
if: always()
134-
uses: actions/cache/save@v3
134+
uses: actions/cache/save@v4
135135
with:
136136
path: failed-test-log.txt
137137
key: failed-test-log_${{ github.sha }}

.github/workflows/perf-check.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
originSha=$(git rev-parse HEAD^2)
3939
echo $originSha > tmp/sha-for-commit.txt
4040
git show --format=short --no-patch $originSha
41-
- uses: pnpm/action-setup@d882d12c64e032187b2edb46d3a0d003b7a43598 # v2.4.0
41+
- uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0
4242
- uses: actions/setup-node@v4
4343
with:
4444
node-version: 19.x

.github/workflows/perf-over-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
originSha=$(git rev-parse HEAD^2)
3939
echo $originSha > tmp/sha-for-commit.txt
4040
git show --format=short --no-patch $originSha
41-
- uses: pnpm/action-setup@d882d12c64e032187b2edb46d3a0d003b7a43598 # v2.4.0
41+
- uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0
4242
- uses: actions/setup-node@v4
4343
with:
4444
node-version: 19.x

0 commit comments

Comments
 (0)