Skip to content

Commit

Permalink
Merge pull request #5 from lewisjared/migrate-actions
Browse files Browse the repository at this point in the history
Migrate actions
  • Loading branch information
lewisjared authored Apr 12, 2024
2 parents acdfcc9 + 4164652 commit 7cc7fc5
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bump.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
CI_COMMIT_EMAIL: "ci-runner@fgen_example.invalid"
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
token: "${{ secrets.PERSONAL_ACCESS_TOKEN }}"
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: ./.github/actions/setup
with:
os: "ubuntu-latest"
Expand All @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: ./.github/actions/setup
with:
os: "ubuntu-latest"
Expand All @@ -54,7 +54,7 @@ jobs:
shell: bash
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: ./.github/actions/setup
with:
os: "${{ matrix.os }}"
Expand All @@ -77,7 +77,7 @@ jobs:
runs-on: "${{ matrix.os }}"
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: ./.github/actions/setup
with:
python-version: "${{ matrix.python-version }}"
Expand All @@ -90,7 +90,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: ./.github/actions/setup
with:
python-version: "3.11"
Expand All @@ -110,7 +110,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: ./.github/actions/setup
with:
python-version: "3.11"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
pip install --upgrade pip
pip install fgen-example
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Test installation
run: |
which python
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/setup
Expand All @@ -35,7 +35,7 @@ jobs:
needs: [ generate-wheels, test-repository ]
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
Expand Down
1 change: 1 addition & 0 deletions changelog/5.trivial.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Upgrade actions/checkout to v4

0 comments on commit 7cc7fc5

Please sign in to comment.