CI: bump a few actions to newer versions Node 12 is deprecated so let's bump the actions to newer versions that use Node 16. See https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
diff --git a/.github/workflows/github-release.yml b/.github/workflows/github-release.yml
index 2c0f72a..2d6e496 100644
--- a/.github/workflows/github-release.yml
+++ b/.github/workflows/github-release.yml
@@ -15,7 +15,7 @@ jobs:
permissions:
contents: write
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
fetch-depth: 0
persist-credentials: false
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index 6e6b650..6085b4f 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -14,10 +14,10 @@ jobs:
matrix:
compiler: [clang, gcc]
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
persist-credentials: false
- - uses: actions/setup-python@v2
+ - uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 077c8ed..4754b93 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -15,10 +15,10 @@ jobs:
permissions:
contents: read
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
persist-credentials: false
- - uses: actions/setup-python@v2
+ - uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index e7a2856..d68af18 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -15,10 +15,10 @@ jobs:
permissions:
contents: read
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
with:
persist-credentials: false
- - uses: actions/setup-python@v2
+ - uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install dependencies