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

Updating checkout action #2304

Merged
merged 1 commit into from
Sep 4, 2023
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
2 changes: 1 addition & 1 deletion .github/workflows/cache_cleaner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Cleanup PR caches
if: github.event_name != 'workflow_dispatch'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
ON_DOCUMENTATION: TRUE
steps:
- name: "Install Git and checkout project"
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: "Setup Python"
uses: actions/setup-python@v4
Expand Down Expand Up @@ -275,7 +275,7 @@ jobs:

steps:
- name: "Install Git and checkout project"
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: "Setup Python"
uses: actions/setup-python@v4
Expand Down Expand Up @@ -436,7 +436,7 @@ jobs:

steps:
- name: "Install Git and checkout project"
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: "Setup Python"
uses: actions/setup-python@v4
Expand Down Expand Up @@ -508,7 +508,7 @@ jobs:
ON_LOCAL: TRUE

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

# Skipping because it is installed locally.
# - name: Setup Python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Syncer
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: micnncim/action-label-syncer@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linkchecker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
SHELLOPTS: "errexit:pipefail"
steps:
- name: "Install Git and checkout project"
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: "Setup Python"
uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-doc-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
DPF_PORT: 21002

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

- name: Setup Python
uses: actions/[email protected]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ using this approach (non-tested):

steps:
- name: "Install Git and check out project"
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: "Set up Python"
uses: actions/setup-python@v4
Expand Down