Skip to content
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/be-installation-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v5
uses: actions/checkout@v6
Comment on lines 24 to +25
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good update! Upgrading from actions/checkout@v5 to actions/checkout@v6 is recommended as it includes security improvements and bug fixes. The v6 version uses Node.js 20 runtime which is more secure and performant than the Node.js 16 runtime used in v5.

- name: Check out Git repository
  uses: actions/checkout@v6


- name: Set up Python environment
uses: actions/setup-python@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/changelog-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: Build changelog
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Excellent upgrade to actions/checkout@v6. This change ensures consistency across all workflows and leverages the latest security and performance improvements. Consider also updating the saadmk11/changelog-ci action to its latest version for better compatibility.

- uses: actions/checkout@v6


- name: Run Changelog CI
uses: saadmk11/changelog-ci@v1.2.0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
frontend_version: ${{ steps.version_check.outputs.frontend_version }}
steps:
- name: Check out the repo
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 2 # Need at least 2 commits to compare
Comment on lines 21 to 24
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great job updating all instances of actions/checkout to v6 in this workflow. This ensures consistency and takes advantage of the latest improvements. The configuration with fetch-depth: 2 is preserved correctly, which is important for the version comparison logic.

- name: Check out the repo
  uses: actions/checkout@v6
  with:
    fetch-depth: 2  # Need at least 2 commits to compare


Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Node.js for Frontend build
uses: actions/setup-node@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fe-installation-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Node.js environment
uses: actions/setup-node@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: Check out Git repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Python environment
uses: actions/setup-python@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

steps:
- name: Check out Git repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Node.js
uses: actions/setup-node@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
run:
shell: bash
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Get version number
id: get-pr-number
Expand Down