Skip to content

Commit

Permalink
Update all to actions/checkout@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
lithorus committed Dec 11, 2024
1 parent 189f17d commit b1eaa1d
Showing 1 changed file with 10 additions and 10 deletions.
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 b1eaa1d

Please sign in to comment.