You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@ jobs:
67
67
runs-on: ubuntu-latest
68
68
steps:
69
69
- name: Checkout 🛎️
70
-
uses: actions/checkout@v3
70
+
uses: actions/checkout@v4
71
71
72
72
- name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
73
73
run: |
@@ -89,7 +89,7 @@ on:
89
89
- main
90
90
```
91
91
92
-
> **Warning**
92
+
> [!WARNING]
93
93
> If you do not supply the action with an access token or an SSH key, you must access your repositories settings and provide `Read and Write Permissions` to the provided `GITHUB_TOKEN`, otherwise you'll potentially run into permission issues. Alternatively you can set the following in your workflow file to grant the action the permissions it needs.
94
94
95
95
```yml
@@ -185,7 +185,7 @@ jobs:
185
185
runs-on: ubuntu-latest
186
186
steps:
187
187
- name: Checkout 🛎️
188
-
uses: actions/checkout@v3
188
+
uses: actions/checkout@v4
189
189
190
190
- name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
191
191
run: |
@@ -235,7 +235,7 @@ jobs:
235
235
runs-on: windows-latest # The first job utilizes windows-latest
236
236
steps:
237
237
- name: Checkout 🛎️
238
-
uses: actions/checkout@v3
238
+
uses: actions/checkout@v4
239
239
240
240
- name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
241
241
run: |
@@ -254,7 +254,7 @@ jobs:
254
254
runs-on: ubuntu-latest
255
255
steps:
256
256
- name: Checkout 🛎️
257
-
uses: actions/checkout@v3
257
+
uses: actions/checkout@v4
258
258
259
259
- name: Download Artifacts 🔻 # The built project is downloaded into the 'site' folder.
260
260
uses: actions/download-artifact@v1
@@ -308,7 +308,7 @@ jobs:
308
308
runs-on: ubuntu-latest
309
309
steps:
310
310
- name: Checkout 🛎️
311
-
uses: actions/checkout@v3
311
+
uses: actions/checkout@v4
312
312
313
313
- name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built.
0 commit comments