diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 56b43b6..4e01ddc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout source code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Cache node modules id: cache diff --git a/.github/workflows/release-tag.yml b/.github/workflows/release-tag.yml index 1f15490..4bcfe19 100644 --- a/.github/workflows/release-tag.yml +++ b/.github/workflows/release-tag.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: fetch-depth: 0 # Fetch all tags diff --git a/.github/workflows/version_bump.yml b/.github/workflows/version_bump.yml index 6956b7f..5c22baf 100644 --- a/.github/workflows/version_bump.yml +++ b/.github/workflows/version_bump.yml @@ -22,7 +22,7 @@ jobs: echo "newversion=minor" >> $GITHUB_ENV if: "startsWith(github.event.head_commit.message, 'feat:')" - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: token: ${{ secrets.PACKAGES_AUTH_TOKEN }} - run: git config --global user.name "${GITHUB_ACTOR}"