diff --git a/.github/workflows/cache.yml b/.github/workflows/cache.yml index f61da8f..5a8161b 100644 --- a/.github/workflows/cache.yml +++ b/.github/workflows/cache.yml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Cache dependencies uses: actions/cache@v4 @@ -31,7 +31,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Get yarn cache directory path id: yarn-cache-dir-path diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 7329b30..825593d 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml index 6a29eae..7bf1a03 100644 --- a/.github/workflows/commitlint.yml +++ b/.github/workflows/commitlint.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/.github/workflows/custom-actions.yml b/.github/workflows/custom-actions.yml index 5099167..eaf0c2c 100644 --- a/.github/workflows/custom-actions.yml +++ b/.github/workflows/custom-actions.yml @@ -20,7 +20,7 @@ jobs: hello-world-composite-action: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - id: foo uses: remarkablemark/hello-world-composite-action@v1 with: diff --git a/.github/workflows/dependency-review.yml b/.github/workflows/dependency-review.yml index 046e9c8..3ea91b4 100644 --- a/.github/workflows/dependency-review.yml +++ b/.github/workflows/dependency-review.yml @@ -15,6 +15,6 @@ jobs: runs-on: ubuntu-latest steps: - name: 'Checkout Repository' - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: 'Dependency Review' uses: actions/dependency-review-action@v4 diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index eee9224..f5565c6 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -9,7 +9,7 @@ jobs: - run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!" - run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - name: Check out repository code - uses: actions/checkout@v5 + uses: actions/checkout@v6 - run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner." - run: echo "🖥️ The workflow is now ready to test your code on the runner." - name: List files in the repository diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index 1b13d64..3e68a9e 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Setup Pages uses: actions/configure-pages@v5 diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 6b87a5f..86bf53c 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -35,7 +35,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Output .nvmrc run: echo "NODE_VERSION=$(cat .nvmrc)" >> $GITHUB_OUTPUT id: nvm diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index ec7c24f..3f77f07 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -7,7 +7,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 # Setup .npmrc file to publish to npm - uses: actions/setup-node@v6 with: diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index cbad9ee..53a16f6 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -75,7 +75,7 @@ jobs: # https://cli.github.com/manual/gh_pr_comment - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Add comment to PR run: gh pr comment ${{ github.event.number }} --body '[Hi from GitHub CLI](https://cli.github.com/manual/gh_pr_comment)' env: diff --git a/.github/workflows/upload-artifact.yml b/.github/workflows/upload-artifact.yml index 56b2fa3..f583eed 100644 --- a/.github/workflows/upload-artifact.yml +++ b/.github/workflows/upload-artifact.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest # https://github.com/actions/upload-artifact#usage steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - run: mkdir -p path/to/artifact