Skip to content

Commit

Permalink
Merge pull request #1046 from SFDO-Tooling/update-ci
Browse files Browse the repository at this point in the history
Update actions and add python versions to test matrix
  • Loading branch information
jstvz committed Apr 30, 2024
2 parents 5b79631 + 4390295 commit ae84a7f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
runs-on: sfdc-ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v1"
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.python-version }}"

Expand All @@ -43,11 +43,11 @@ jobs:
name: With CumulusCI
runs-on: sfdc-ubuntu-latest
steps:
- uses: "actions/checkout@v2"
- uses: "actions/checkout@v4"
- run: |
git fetch --no-tags origin main:_remote_main_
- uses: "actions/setup-python@v1"
- uses: "actions/setup-python@v5"
with:
python-version: "3.9"

Expand Down Expand Up @@ -77,8 +77,8 @@ jobs:
name: Faker Docs
runs-on: sfdc-ubuntu-latest
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v1"
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v5"
with:
python-version: "3.9"

Expand All @@ -99,8 +99,8 @@ jobs:
matrix:
python-version: ["3.8", "3.10"]
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v1"
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.python-version }}"

Expand All @@ -124,8 +124,8 @@ jobs:
matrix:
python-version: ["3.9", "3.10"]
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v1"
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v5"
with:
python-version: "${{ matrix.python-version }}"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/extra-checks-after-pull-request-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
name: Faker Docs I18N
runs-on: sfdc-ubuntu-latest
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v1"
- uses: "actions/checkout@v4"
- uses: "actions/setup-python@v5"
with:
python-version: "3.9"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
name: Publish new release to PyPI
runs-on: sfdc-ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: actions/checkout@4
- name: Set up Python 3.8
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install build tools
Expand Down

0 comments on commit ae84a7f

Please sign in to comment.