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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

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

- name: Setup Node.js Environment
uses: actions/setup-node@v4.4.0 # Action for setting up Node environment.
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:

steps: # Checkout the repository code
- name: Checkout code
uses: actions/checkout@v4.2.2
uses: actions/checkout@v6.0.3
with:
fetch-depth: 0 # Fetches all history for all branches and tags

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
# Check out current repository
- name: Fetch Sources
uses: actions/checkout@v4.2.2
uses: actions/checkout@v6.0.3

# Extract version from package
- name: Read Package Version
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@v4.2.2
uses: actions/checkout@v6.0.3

# This step uses the Git Flow Action to create PRs based on branch types
- name: Execute Git Flow Action
Expand Down
Loading