Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/checkout from 2 to 4 #1576

Merged
Merged
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/benchmark.yaml
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Loading