1
0
Fork 0
mirror of https://github.com/gwm17/glfw.git synced 2024-05-18 23:03:22 -04:00

Update to actions/checkout@v3

Fixes the following CI warning:

"Node.js 12 actions are deprecated. Please update the following
actions to use Node.js 16: actions/checkout@v2..."

Closes #2255
This commit is contained in:
Juan Ramos 2023-01-21 11:18:35 -07:00 committed by Camilla Löwy
parent 2b580012da
commit 9a87635686

View File

@ -16,7 +16,7 @@ jobs:
CC: clang
CFLAGS: -Werror
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt update
@ -39,7 +39,7 @@ jobs:
CC: clang
CFLAGS: -Werror
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt update
@ -62,7 +62,7 @@ jobs:
CFLAGS: -Werror
MACOSX_DEPLOYMENT_TARGET: 10.8
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Configure static library
run: cmake -S . -B build-static
@ -80,7 +80,7 @@ jobs:
env:
CFLAGS: /WX
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Configure static library
run: cmake -S . -B build-static -G "Visual Studio 17 2022"