Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
# The first step is to check out the repository code
- name: Checking out repository code
uses: actions/checkout@v6.0.2 # Action for checking out a repo.
uses: actions/checkout@v7.0.1 # Action for checking out a repo.
with:
fetch-depth: 0 # Fetches all history for all branches and tags

Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:

steps: # The sequence of tasks that make up a job.
- name: Checking out repository code
uses: actions/checkout@v6.0.2 # Action for checking out a repo.
uses: actions/checkout@v7.0.1 # Action for checking out a repo.

- name: Install pnpm package manager
uses: pnpm/action-setup@v4.2.0 # Action for setting up pnpm.
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
steps:
# Checkout the repository code
- name: Checkout code
uses: actions/checkout@v6.0.2
uses: actions/checkout@v7.0.1
with:
fetch-depth: 0 # Fetches all history for all branches and tags

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/git-flow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
# Checks out the repository code under $GITHUB_WORKSPACE, so the job can access it
- name: Checkout Repository Code
uses: actions/checkout@v6.0.2
uses: actions/checkout@v7.0.1

# This step uses the Git Flow Action to create PRs based on branch types
- name: Execute Git Flow Action
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
steps:
# Checkout the code.
- name: Checkout code
uses: actions/checkout@v6.0.2
uses: actions/checkout@v7.0.1

# Set up Node.js environment.
- name: Set up Node.js environment
Expand Down
Loading