Skip to content

Commit

Permalink
Update the GitHub actions versions
Browse files Browse the repository at this point in the history
Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
  • Loading branch information
s0undt3ch committed Dec 21, 2022
1 parent ec045a7 commit 0f9a7a4
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 25 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
Publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install Nox
Expand Down
46 changes: 23 additions & 23 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ jobs:
Pre-Commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.9
- name: Set Cache Key
run: echo "PY=$(python --version --version | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV
- name: Install System Deps
Expand All @@ -28,11 +28,11 @@ jobs:
needs: Pre-Commit

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.8'
python-version: 3.9
- name: Install Nox
run: |
python -m pip install --upgrade pip
Expand All @@ -49,12 +49,12 @@ jobs:
timeout-minutes: 10

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python 3.7 For Nox
uses: actions/setup-python@v2
- name: Set up Python 3.9 For Nox
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.9

- name: Install Nox
run: |
Expand All @@ -78,12 +78,12 @@ jobs:
timeout-minutes: 10

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python 3.7 For Nox
uses: actions/setup-python@v2
- name: Set up Python 3.9 For Nox
uses: actions/setup-python@v4
with:
python-version: 3.7
python-version: 3.9

- name: Install Nox
run: |
Expand Down Expand Up @@ -120,10 +120,10 @@ jobs:
- "~=7.2.0"

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -291,10 +291,10 @@ jobs:
- "~=7.2.0"

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -431,10 +431,10 @@ jobs:
- "~=7.2.0"

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down Expand Up @@ -577,7 +577,7 @@ jobs:
- name: Upload Logs
if: always()
uses: actions/upload-artifact@main
uses: actions/upload-artifact@v3
with:
name: runtests-${{ steps.codecov.outputs.report-name }}.log
path: artifacts/runtests-*.log
Expand All @@ -593,11 +593,11 @@ jobs:
- Windows
- macOS
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install Nox
Expand Down
1 change: 1 addition & 0 deletions changelog/38.trivial.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update the GitHub actions versions

0 comments on commit 0f9a7a4

Please sign in to comment.