Skip to content

Commit 7c6a812

Browse files
akxchayim
andauthored
Update GitHub Actions versions (#2389)
Co-authored-by: Chayim <[email protected]>
1 parent 027abe5 commit 7c6a812

File tree

3 files changed

+14
-18
lines changed

3 files changed

+14
-18
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ jobs:
3636

3737
steps:
3838
- name: Checkout repository
39-
uses: actions/checkout@v2
39+
uses: actions/checkout@v3
4040

4141
# Initializes the CodeQL tools for scanning.
4242
- name: Initialize CodeQL
43-
uses: github/codeql-action/init@v1
43+
uses: github/codeql-action/init@v2
4444
with:
4545
languages: ${{ matrix.language }}
4646
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -51,7 +51,7 @@ jobs:
5151
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5252
# If this step fails, then you should remove it and run the build manually (see below)
5353
- name: Autobuild
54-
uses: github/codeql-action/autobuild@v1
54+
uses: github/codeql-action/autobuild@v2
5555

5656
# ℹ️ Command-line programs to run using the OS shell.
5757
# 📚 https://git.io/JvXDl
@@ -65,4 +65,4 @@ jobs:
6565
# make release
6666

6767
- name: Perform CodeQL Analysis
68-
uses: github/codeql-action/analyze@v1
68+
uses: github/codeql-action/analyze@v2

.github/workflows/integration.yaml

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,8 @@ jobs:
3131
name: Code linters
3232
runs-on: ubuntu-latest
3333
steps:
34-
- uses: actions/checkout@v2
35-
- name: install python
36-
uses: actions/setup-python@v4
34+
- uses: actions/checkout@v3
35+
- uses: actions/setup-python@v4
3736
with:
3837
python-version: 3.9
3938
cache: 'pip'
@@ -55,9 +54,8 @@ jobs:
5554
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
5655
name: Python ${{ matrix.python-version }} ${{matrix.test-type}}-${{matrix.connection-type}} tests
5756
steps:
58-
- uses: actions/checkout@v2
59-
- name: install python
60-
uses: actions/setup-python@v4
57+
- uses: actions/checkout@v3
58+
- uses: actions/setup-python@v4
6159
with:
6260
python-version: ${{ matrix.python-version }}
6361
cache: 'pip'
@@ -93,9 +91,8 @@ jobs:
9391
matrix:
9492
extension: ['tar.gz', 'whl']
9593
steps:
96-
- uses: actions/checkout@v2
97-
- name: install python
98-
uses: actions/setup-python@v3
94+
- uses: actions/checkout@v3
95+
- uses: actions/setup-python@v4
9996
with:
10097
python-version: 3.9
10198
- name: Run installed unit tests
@@ -109,9 +106,8 @@ jobs:
109106
matrix:
110107
python-version: ['3.7', '3.8', '3.9', '3.10', 'pypy-3.7']
111108
steps:
112-
- uses: actions/checkout@v2
113-
- name: install python ${{ matrix.python-version }}
114-
uses: actions/setup-python@v3
109+
- uses: actions/checkout@v3
110+
- uses: actions/setup-python@v4
115111
with:
116112
python-version: ${{ matrix.python-version }}
117113
cache: 'pip'

.github/workflows/pypi-publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ jobs:
99
build_and_package:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313
- name: install python
14-
uses: actions/setup-python@v3
14+
uses: actions/setup-python@v4
1515
with:
1616
python-version: 3.9
1717
- name: Install dev tools

0 commit comments

Comments
 (0)