Skip to content

Commit

Permalink
Bump actions/checkout from 2 to 4 (#1576)
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] committed Nov 10, 2023
1 parent d5d7cec commit 7212a40
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 15 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/benchmark.yaml
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup python ${{ matrix.python-version }}
uses: ./.github/actions/setup-python
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
path: .

- name: Checkout (release)
uses: actions/checkout@v3
uses: actions/checkout@v4
if: ${{ github.event_name =='release' }}
with:
ref: main
Expand All @@ -96,7 +96,7 @@ jobs:
token: "${{ secrets.GH_ACTION_TOKEN }}"

- name: Checkout (pr)
uses: actions/checkout@v3
uses: actions/checkout@v4
if: ${{ github.event_name !='release' }}
with:
path: src
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/copyright.yaml
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/core.yaml
Expand Up @@ -37,7 +37,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup python ${{ matrix.python-version }}
uses: ./.github/actions/setup-python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/flake8.yaml
Expand Up @@ -26,7 +26,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/installation.yaml
Expand Up @@ -103,7 +103,7 @@ jobs:
pip install --target C:\ProgramData\rez .
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup python ${{ matrix.python-version }}
uses: ./.github/actions/setup-python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mac.yaml
Expand Up @@ -34,7 +34,7 @@ jobs:

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

- name: Setup python ${{ matrix.python-version }}
uses: ./.github/actions/setup-python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yaml
Expand Up @@ -10,7 +10,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu.yaml
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup python ${{ matrix.python-version }}
uses: ./.github/actions/setup-python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wiki.yaml
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # required to generate credits list

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/windows.yaml
Expand Up @@ -63,7 +63,7 @@ jobs:

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

- name: Determine base image tag
id: base
Expand Down Expand Up @@ -223,7 +223,7 @@ jobs:
- name: Checkout
if: steps.inspect.outputs.image_exists == 'false'
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Build base image
if: steps.inspect.outputs.image_exists == 'false'
Expand Down Expand Up @@ -287,7 +287,7 @@ jobs:
- name: Checkout
if: steps.inspect.outputs.image_exists == 'false'
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Pull base image
if: steps.inspect.outputs.image_exists == 'false'
Expand Down Expand Up @@ -344,7 +344,7 @@ jobs:
Write-Output "Using image ${docker_image}..."
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Pull py image
run: |
Expand Down

0 comments on commit 7212a40

Please sign in to comment.