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 #794

Merged
merged 2 commits into from Apr 18, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/EVENT_release.yml
Expand Up @@ -32,7 +32,7 @@ jobs:
validate_tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}

Expand All @@ -52,7 +52,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}

Expand All @@ -78,7 +78,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/test-')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/EVENT_tag.yml
Expand Up @@ -19,7 +19,7 @@ jobs:
name: Create Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
name: Checkout
with:
ref: ${{ github.head_ref || github.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/EVENT_update-linear-labels.yml
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Update Linear
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: v7labs/update-linear-labels-action@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/JOB_e2e.yml
Expand Up @@ -18,7 +18,7 @@ jobs:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/JOB_format.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out source repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python environment
uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/JOB_generate_documentation.yml
Expand Up @@ -22,7 +22,7 @@ jobs:
matrix:
python-version: [3.8, 3.9, "3.10"]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref || github.ref }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/JOB_get_changed_files.yml
Expand Up @@ -30,7 +30,7 @@ jobs:
yaml_changed_files: ${{ steps.changed_yaml_files.outputs.yaml_changed_files }}
json_changed_files: ${{ steps.changed_json_files.outputs.json_changed_files }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref || github.ref }}
- name: Get changed files
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/JOB_lint.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out source repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python environment
uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/JOB_tests.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
python-version: ["3.8", "3.9", "3.10", "3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref || github.ref }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/JOB_typecheck.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out source repository
uses: actions/checkout@v3
uses: actions/checkout@v4

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