Skip to content

Commit

Permalink
Update GitHub CI scripts (#148)
Browse files Browse the repository at this point in the history
Summary:
Update GitHub helper scripts to their latest version, and consistently request Python 3.9.

Pull Request resolved: #148

Reviewed By: finik

Differential Revision: D56907464

fbshipit-source-id: f599f36907a1de5471ebedb3bf6c3c4825335e59
  • Loading branch information
Georges Berenger authored and facebook-github-bot committed May 2, 2024
1 parent 7a137c2 commit 93eedc0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test-pixi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
os: [macos-latest, macos-14, ubuntu-latest, windows-2019] # macos-14 is macSilicon
steps:
- name : Setup repo
uses: actions/checkout@v2
uses: actions/checkout@v4

- name : Remove Mono framework
if: runner.os == 'macOS'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false

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

- name: Install dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6]
python-version: [3.9]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout-repo-content
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: setup-python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.9

Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
with:
repository: ${{ github.repository }}
- name: checkout-repo-content
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Create release
if: needs.get-current-version.outputs.current_tag != steps.get-latest-tag.outputs.release
Expand Down

0 comments on commit 93eedc0

Please sign in to comment.