Skip to content

Commit 1f0bf9b

Browse files
aykevldeadprogram
authored andcommitted
ci: switch to actions/checkout@v3
I saw the following warning on GitHub Actions: Node.js 12 actions are deprecated. Please update the following actions to use Node.js 16: actions/checkout@v2. For more information see: https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/. Updating seems quite reasonable to me.
1 parent 0b0ae19 commit 1f0bf9b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build-macos.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
run: |
104104
HOMEBREW_NO_AUTO_UPDATE=1 brew install llvm@15
105105
- name: Checkout
106-
uses: actions/checkout@v2
106+
uses: actions/checkout@v3
107107
- name: Install Go
108108
uses: actions/setup-go@v3
109109
with:

.github/workflows/windows.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
run: |
109109
scoop install binaryen
110110
- name: Checkout
111-
uses: actions/checkout@v2
111+
uses: actions/checkout@v3
112112
- name: Install Go
113113
uses: actions/setup-go@v3
114114
with:
@@ -132,7 +132,7 @@ jobs:
132132
needs: build-windows
133133
steps:
134134
- name: Checkout
135-
uses: actions/checkout@v2
135+
uses: actions/checkout@v3
136136
- name: Install Go
137137
uses: actions/setup-go@v3
138138
with:
@@ -162,7 +162,7 @@ jobs:
162162
run: |
163163
scoop install binaryen wasmtime
164164
- name: Checkout
165-
uses: actions/checkout@v2
165+
uses: actions/checkout@v3
166166
- name: Install Go
167167
uses: actions/setup-go@v3
168168
with:

0 commit comments

Comments
 (0)