diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8186e29..39be1b1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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. @@ -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 diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 74fe055..d6a317b 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -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 diff --git a/.github/workflows/git-flow.yml b/.github/workflows/git-flow.yml index 81b412b..61f63ac 100644 --- a/.github/workflows/git-flow.yml +++ b/.github/workflows/git-flow.yml @@ -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