From c2d88d3ecc89a9ef08eebf45d9637801dcee7eb5 Mon Sep 17 00:00:00 2001 From: eric sciple Date: Sun, 23 Nov 2025 19:32:55 -0600 Subject: [PATCH] Update all references from v5 and v4 to v6 (#2314) - Updated README.md examples to reference @v6 - Updated all workflow files to use actions/checkout@v6 --- .github/workflows/check-dist.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/licensed.yml | 2 +- .../workflows/publish-immutable-actions.yml | 2 +- .github/workflows/test.yml | 16 ++++----- .github/workflows/update-main-version.yml | 2 +- .github/workflows/update-test-ubuntu-git.yml | 2 +- README.md | 34 +++++++++---------- src/misc/generate-docs.ts | 2 +- 9 files changed, 32 insertions(+), 32 deletions(-) diff --git a/.github/workflows/check-dist.yml b/.github/workflows/check-dist.yml index db3e37f..c7d4962 100644 --- a/.github/workflows/check-dist.yml +++ b/.github/workflows/check-dist.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.1.6 + - uses: actions/checkout@v6 - name: Set Node.js 24.x uses: actions/setup-node@v4 diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 778d474..377fae9 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -39,7 +39,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4.1.6 + uses: actions/checkout@v6 - name: Initialize CodeQL uses: github/codeql-action/init@v3 diff --git a/.github/workflows/licensed.yml b/.github/workflows/licensed.yml index 1f71aa7..36e70e2 100644 --- a/.github/workflows/licensed.yml +++ b/.github/workflows/licensed.yml @@ -9,6 +9,6 @@ jobs: runs-on: ubuntu-latest name: Check licenses steps: - - uses: actions/checkout@v4.1.6 + - uses: actions/checkout@v6 - run: npm ci - run: npm run licensed-check \ No newline at end of file diff --git a/.github/workflows/publish-immutable-actions.yml b/.github/workflows/publish-immutable-actions.yml index 87c0207..44d571b 100644 --- a/.github/workflows/publish-immutable-actions.yml +++ b/.github/workflows/publish-immutable-actions.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checking out - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Publish id: publish uses: actions/publish-immutable-action@0.0.3 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7c47d7b..3aa5fc9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 24.x - - uses: actions/checkout@v4.1.6 + - uses: actions/checkout@v6 - run: npm ci - run: npm run build - run: npm run format-check @@ -37,7 +37,7 @@ jobs: steps: # Clone this repo - name: Checkout - uses: actions/checkout@v4.1.6 + uses: actions/checkout@v6 # Basic checkout - name: Checkout basic @@ -202,7 +202,7 @@ jobs: steps: # Clone this repo - name: Checkout - uses: actions/checkout@v4.1.6 + uses: actions/checkout@v6 # Basic checkout using git - name: Checkout basic @@ -234,7 +234,7 @@ jobs: steps: # Clone this repo - name: Checkout - uses: actions/checkout@v4.1.6 + uses: actions/checkout@v6 # Basic checkout using git - name: Checkout basic @@ -264,7 +264,7 @@ jobs: steps: # Clone this repo - name: Checkout - uses: actions/checkout@v4.1.6 + uses: actions/checkout@v6 with: path: localClone @@ -291,8 +291,8 @@ jobs: git fetch --no-tags --depth=1 origin +refs/heads/main:refs/remotes/origin/main # needed to make checkout post cleanup succeed - - name: Fix Checkout v4 - uses: actions/checkout@v4.1.6 + - name: Fix Checkout v6 + uses: actions/checkout@v6 with: path: localClone @@ -301,7 +301,7 @@ jobs: steps: # Clone this repo - name: Checkout - uses: actions/checkout@v4.1.6 + uses: actions/checkout@v6 with: path: actions-checkout diff --git a/.github/workflows/update-main-version.yml b/.github/workflows/update-main-version.yml index 643b954..b3b23fe 100644 --- a/.github/workflows/update-main-version.yml +++ b/.github/workflows/update-main-version.yml @@ -23,7 +23,7 @@ jobs: # Note this update workflow can also be used as a rollback tool. # For that reason, it's best to pin `actions/checkout` to a known, stable version # (typically, about two releases back). - - uses: actions/checkout@v4.1.6 + - uses: actions/checkout@v6 with: fetch-depth: 0 - name: Git config diff --git a/.github/workflows/update-test-ubuntu-git.yml b/.github/workflows/update-test-ubuntu-git.yml index 5c252b9..10e4dac 100644 --- a/.github/workflows/update-test-ubuntu-git.yml +++ b/.github/workflows/update-test-ubuntu-git.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 # Use `docker/login-action` to log in to GHCR.io. # Once published, the packages are scoped to the account defined here. diff --git a/README.md b/README.md index 5ad476f..a8549c3 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ Please refer to the [release page](https://github.com/actions/checkout/releases/ ```yaml -- uses: actions/checkout@v5 +- uses: actions/checkout@v6 with: # Repository name with owner. For example, actions/checkout # Default: ${{ github.repository }} @@ -190,7 +190,7 @@ Please refer to the [release page](https://github.com/actions/checkout/releases/ ## Fetch only the root files ```yaml -- uses: actions/checkout@v5 +- uses: actions/checkout@v6 with: sparse-checkout: . ``` @@ -198,7 +198,7 @@ Please refer to the [release page](https://github.com/actions/checkout/releases/ ## Fetch only the root files and `.github` and `src` folder ```yaml -- uses: actions/checkout@v5 +- uses: actions/checkout@v6 with: sparse-checkout: | .github @@ -208,7 +208,7 @@ Please refer to the [release page](https://github.com/actions/checkout/releases/ ## Fetch only a single file ```yaml -- uses: actions/checkout@v5 +- uses: actions/checkout@v6 with: sparse-checkout: | README.md @@ -218,7 +218,7 @@ Please refer to the [release page](https://github.com/actions/checkout/releases/ ## Fetch all history for all tags and branches ```yaml -- uses: actions/checkout@v5 +- uses: actions/checkout@v6 with: fetch-depth: 0 ``` @@ -226,7 +226,7 @@ Please refer to the [release page](https://github.com/actions/checkout/releases/ ## Checkout a different branch ```yaml -- uses: actions/checkout@v5 +- uses: actions/checkout@v6 with: ref: my-branch ``` @@ -234,7 +234,7 @@ Please refer to the [release page](https://github.com/actions/checkout/releases/ ## Checkout HEAD^ ```yaml -- uses: actions/checkout@v5 +- uses: actions/checkout@v6 with: fetch-depth: 2 - run: git checkout HEAD^ @@ -244,12 +244,12 @@ Please refer to the [release page](https://github.com/actions/checkout/releases/ ```yaml - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: main - name: Checkout tools repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: my-org/my-tools path: my-tools @@ -260,10 +260,10 @@ Please refer to the [release page](https://github.com/actions/checkout/releases/ ```yaml - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Checkout tools repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: my-org/my-tools path: my-tools @@ -274,12 +274,12 @@ Please refer to the [release page](https://github.com/actions/checkout/releases/ ```yaml - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: path: main - name: Checkout private tools - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: my-org/my-private-tools token: ${{ secrets.GH_PAT }} # `GH_PAT` is a secret that contains your PAT @@ -292,7 +292,7 @@ Please refer to the [release page](https://github.com/actions/checkout/releases/ ## Checkout pull request HEAD commit instead of merge commit ```yaml -- uses: actions/checkout@v5 +- uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} ``` @@ -308,7 +308,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 ``` ## Push a commit using the built-in token @@ -319,7 +319,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - run: | date > generated.txt # Note: the following account information will not work on GHES @@ -341,7 +341,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: ref: ${{ github.head_ref }} - run: | diff --git a/src/misc/generate-docs.ts b/src/misc/generate-docs.ts index 6d4816f..b78f035 100644 --- a/src/misc/generate-docs.ts +++ b/src/misc/generate-docs.ts @@ -120,7 +120,7 @@ function updateUsage( } updateUsage( - 'actions/checkout@v5', + 'actions/checkout@v6', path.join(__dirname, '..', '..', 'action.yml'), path.join(__dirname, '..', '..', 'README.md') )