Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/bootstrap_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
uses: actions/checkout@v7

- name: Rename directory
run: |
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
needs: rename_directory # Ensures it runs after rename is pushed
steps:
- name: Check out repository
uses: actions/checkout@v3 # Checks out the repo with the renamed directory
uses: actions/checkout@v7 # Checks out the repo with the renamed directory

- name: Update README title
run: |
Expand All @@ -73,7 +73,7 @@ jobs:
needs: rename_directory # Can run after rename, in parallel with update_readme
steps:
- name: Check out repository
uses: actions/checkout@v3 # Checks out the repo with the renamed directory
uses: actions/checkout@v7 # Checks out the repo with the renamed directory

- name: Create CODEOWNERS file
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
contents: write # Required to push tags
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
fetch-depth: 0 # Required to fetch all tags

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lintinig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Check out Git repository
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
Expand All @@ -39,7 +39,7 @@ jobs:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
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,7 +14,7 @@ jobs:
name: Create Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
# by default, it uses a depth of 1
# this fetches all history so that we can read each commit
Expand All @@ -30,7 +30,7 @@ jobs:
needs: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v7
- name: Set up Python
uses: actions/setup-python@v1
with:
Expand Down
Loading