Skip to content

Commit

Permalink
Update all to actions/checkout@v4 (#1615)
Browse files Browse the repository at this point in the history
**Link the Issue(s) this Pull Request is related to.**
#1613 

**Summarize your change.**
Update checkout action to actions/checkout@v4
  • Loading branch information
lithorus authored Dec 13, 2024
1 parent 189f17d commit 0fa5d6d
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Preflight
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
name: Release ${{ matrix.component }} Docker image
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/testing-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-22.04
container: aswf/ci-opencue:2023
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run Python Tests
run: ci/run_python_tests.sh

Expand All @@ -22,7 +22,7 @@ jobs:
container:
image: aswf/ci-opencue:2023
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build with Gradle
run: |
chown -R aswfuser:aswfgroup .
Expand All @@ -33,7 +33,7 @@ jobs:
runs-on: ubuntu-22.04
container: aswf/ci-opencue:2024
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run Python Tests
run: ci/run_python_tests.sh

Expand All @@ -43,7 +43,7 @@ jobs:
container:
image: aswf/ci-opencue:2024
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build with Gradle
run: |
chown -R aswfuser:aswfgroup .
Expand All @@ -54,7 +54,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Run test
run: ci/run_integration_test.sh
Expand All @@ -73,7 +73,7 @@ jobs:
env:
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Lint Python Code
run: ci/run_python_lint.sh

Expand All @@ -83,15 +83,15 @@ jobs:
container:
image: aswf/ci-opencue:2023
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run Sphinx build
run: ci/build_sphinx_docs.sh

check_changed_files:
name: Check Changed Files
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Get Changed Files
id: get_changed_files
uses: tj-actions/changed-files@v41
Expand All @@ -102,15 +102,15 @@ jobs:
name: Check Database Migration Files
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check Migration Files
run: ci/check_database_migrations.py

check_for_version_bump:
name: Check for Version Bump
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Get Changed Files
id: get_changed_files
uses: tj-actions/changed-files@v41
Expand Down

0 comments on commit 0fa5d6d

Please sign in to comment.