Skip to content

Commit d84ac66

Browse files
authored
Merge pull request #54 from Chisanan232/dependabot/github_actions/actions/checkout-4
⬆ Bump actions/checkout from 3 to 4
2 parents 3b540d3 + 7293f7d commit d84ac66

13 files changed

+14
-14
lines changed

.github/workflows/ci-cd.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
RELEASE_TYPE: ${{ needs.build_git-tag_and_create_github-release.outputs.github-action_reusable_workflow_release_version }}
3434
DEBUG_MODE: false
3535
steps:
36-
- uses: actions/checkout@v3
36+
- uses: actions/checkout@v4
3737

3838
- name: Check it whether get the output of previous one job which has version info or not
3939
run: bash scripts/ci/check_getting_output.sh

.github/workflows/rw_build_git-tag_and_create_github-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
matrix_github_action_reusable_workflow: ${{ steps.github_action_reusable_workflow_release.outputs.release_version }}
7373
steps:
7474
- name: Checkout
75-
uses: actions/checkout@v3
75+
uses: actions/checkout@v4
7676

7777
- name: Download shell script for checking input parameters
7878
run: curl https://raw.githubusercontent.com/Chisanan232/GitHub-Action_Reusable_Workflows-Python/develop/scripts/ci/build_git-tag_or_create_github-release.sh --output ./scripts/ci/build_git-tag_or_create_github-release.sh

.github/workflows/rw_get_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
outputs:
4747
matrix: ${{ steps.set-matrix.outputs.all_test_items }}
4848
steps:
49-
- uses: actions/checkout@v3
49+
- uses: actions/checkout@v4
5050

5151
- name: Download shell script for getting path of all test modules
5252
if: ${{ inputs.use_customized_shell != true }}

.github/workflows/rw_organize_test_cov_reports.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@v3
34+
uses: actions/checkout@v4
3535

3636
- name: Download code coverage result file
3737
uses: actions/download-artifact@v3

.github/workflows/rw_poetry_run_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979

8080

8181
steps:
82-
- uses: actions/checkout@v3
82+
- uses: actions/checkout@v4
8383

8484
- name: Install Python ${{ matrix.python-version }}
8585
uses: actions/setup-python@v5

.github/workflows/rw_pre-building_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
runs-on: ubuntu-latest
5151
steps:
5252
- name: Checkout
53-
uses: actions/checkout@v3
53+
uses: actions/checkout@v4
5454

5555
- name: Setup Python 3.10 in Ubuntu OS
5656
uses: actions/setup-python@v5

.github/workflows/rw_push_pypi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
runs-on: ubuntu-latest
5656
steps:
5757
- name: Checkout
58-
uses: actions/checkout@v3
58+
uses: actions/checkout@v4
5959

6060
- name: Setup Python 3.10 in Ubuntu OS
6161
uses: actions/setup-python@v5

.github/workflows/rw_run_test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494

9595

9696
steps:
97-
- uses: actions/checkout@v3
97+
- uses: actions/checkout@v4
9898

9999
- name: Install Python ${{ matrix.python-version }}
100100
uses: actions/setup-python@v5
@@ -142,7 +142,7 @@ jobs:
142142
test-path: ${{fromJson(inputs.all_test_items_paths)}}
143143

144144
steps:
145-
- uses: actions/checkout@v3
145+
- uses: actions/checkout@v4
146146

147147
- name: Install Python ${{ matrix.python-version }}
148148
uses: actions/setup-python@v5

.github/workflows/rw_sonarqube_scan.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
upload_test_cov_report:
3737
runs-on: ubuntu-latest
3838
steps:
39-
- uses: actions/checkout@v3
39+
- uses: actions/checkout@v4
4040
with:
4141
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
4242

.github/workflows/rw_upload_test_cov_report.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
runs-on: ubuntu-latest
8181
steps:
8282
- name: Checkout
83-
uses: actions/checkout@v3
83+
uses: actions/checkout@v4
8484

8585
- name: Download shell script for checking input parameters
8686
run: curl https://raw.githubusercontent.com/Chisanan232/GitHub-Action_Reusable_Workflows-Python/develop/scripts/ci/check-input-params.sh --output ./scripts/ci/check-input-params.sh

0 commit comments

Comments
 (0)