Skip to content

Commit

Permalink
ci: Fix GitHub Actions due to new version of checkout. (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
huxuan committed Sep 11, 2023
1 parent a2b76d1 commit 2cca969
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/package.yml
Expand Up @@ -2,8 +2,9 @@ jobs:
package:
runs-on: ubuntu-latest
steps:
- fetch-tags: 'true'
uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
fetch-tags: 'true'
- name: Set up Python
uses: actions/setup-python@v4
with:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/pages.yml
Expand Up @@ -2,8 +2,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- fetch-tags: 'true'
uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
fetch-tags: 'true'
- name: Set up Python
uses: actions/setup-python@v4
with:
Expand Down
Expand Up @@ -2,8 +2,9 @@ jobs:
package:
runs-on: ubuntu-latest
steps:
- fetch-tags: 'true'
uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
fetch-tags: 'true'
- name: Set up Python
uses: actions/setup-python@v4
with:
Expand Down
Expand Up @@ -2,8 +2,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- fetch-tags: 'true'
uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
fetch-tags: 'true'
- name: Set up Python
uses: actions/setup-python@v4
with:
Expand Down

0 comments on commit 2cca969

Please sign in to comment.