diff --git a/.github/workflows/bootstrap_project.yml b/.github/workflows/bootstrap_project.yml index c7f7c77..401634d 100644 --- a/.github/workflows/bootstrap_project.yml +++ b/.github/workflows/bootstrap_project.yml @@ -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: | @@ -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: | @@ -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: | diff --git a/.github/workflows/create-tag.yml b/.github/workflows/create-tag.yml index df78f63..17757f5 100644 --- a/.github/workflows/create-tag.yml +++ b/.github/workflows/create-tag.yml @@ -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 diff --git a/.github/workflows/lintinig.yml b/.github/workflows/lintinig.yml index 54408d2..9c756d4 100644 --- a/.github/workflows/lintinig.yml +++ b/.github/workflows/lintinig.yml @@ -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 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0c339c9..d02abb9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 }} @@ -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 }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3051b9a..27eff75 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -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: