Skip to content

Commit 5a36848

Browse files
authored
ci: update github actions (preactjs#266)
* ci: update actions/checkout to v3 * ci: update actions/cache to v3
1 parent 5003099 commit 5a36848

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
name: Build & Test
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818
- uses: actions/setup-node@v3
1919
with:
2020
node-version: 18
2121
- name: Cache node modules
22-
uses: actions/cache@v1
22+
uses: actions/cache@v3
2323
env:
2424
cache-name: cache-node-modules
2525
with:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout Repo
14-
uses: actions/checkout@master
14+
uses: actions/checkout@v3
1515
with:
1616
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
1717
fetch-depth: 0
@@ -22,7 +22,7 @@ jobs:
2222
node-version: 18
2323

2424
- name: Cache node modules
25-
uses: actions/cache@v1
25+
uses: actions/cache@v3
2626
env:
2727
cache-name: cache-node-modules
2828
with:

0 commit comments

Comments
 (0)