diff --git a/.github/workflows/artifact-tests.yml b/.github/workflows/artifact-tests.yml index 53c1b18b..94053d08 100644 --- a/.github/workflows/artifact-tests.yml +++ b/.github/workflows/artifact-tests.yml @@ -22,10 +22,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set Node.js 24.x - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: 24.x @@ -47,7 +47,7 @@ jobs: echo -n 'hello from file 2' > artifact-path/second.txt - name: Upload Artifacts - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const {default: artifact} = require('./packages/artifact/lib/artifact') @@ -77,10 +77,10 @@ jobs: needs: [upload] steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set Node.js 24.x - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: 24.x @@ -96,7 +96,7 @@ jobs: working-directory: packages/artifact - name: List and Download Artifacts - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const {default: artifactClient} = require('./packages/artifact/lib/artifact') @@ -165,7 +165,7 @@ jobs: } } - name: Delete Artifacts - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: script: | const {default: artifactClient} = require('./packages/artifact/lib/artifact') diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml index 2239a346..09baa131 100644 --- a/.github/workflows/audit.yml +++ b/.github/workflows/audit.yml @@ -18,10 +18,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set Node.js 24.x - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: 24.x diff --git a/.github/workflows/cache-tests.yml b/.github/workflows/cache-tests.yml index 9fd0b407..f124c306 100644 --- a/.github/workflows/cache-tests.yml +++ b/.github/workflows/cache-tests.yml @@ -22,10 +22,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set Node.js 24.x - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: 24.x diff --git a/.github/workflows/cache-windows-test.yml b/.github/workflows/cache-windows-test.yml index 4591ac1c..3d94b9bc 100644 --- a/.github/workflows/cache-windows-test.yml +++ b/.github/workflows/cache-windows-test.yml @@ -17,14 +17,14 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v5 - shell: bash run: | rm "C:\Program Files\Git\usr\bin\tar.exe" - name: Set Node.js 24.x - uses: actions/setup-node@v1 + uses: actions/setup-node@v5 with: node-version: 24.x diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 4ebb4ef3..39fd9c34 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 13635af7..97114540 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -28,13 +28,13 @@ jobs: steps: - name: setup repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: verify package exists run: ls packages/${{ github.event.inputs.package }} - name: Set Node.js 24.x - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: 24.x diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index f11f9afd..55e78508 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -28,10 +28,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up Node ${{ matrix.node-version }} - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: ${{ matrix.node-version }} diff --git a/.github/workflows/update-github.yaml b/.github/workflows/update-github.yaml index 5be06447..d0df778e 100644 --- a/.github/workflows/update-github.yaml +++ b/.github/workflows/update-github.yaml @@ -9,7 +9,7 @@ jobs: if: ${{ github.repository_owner == 'actions' }} steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Update Octokit working-directory: packages/github run: | diff --git a/docs/action-types.md b/docs/action-types.md index a8cdb83d..1307b8de 100644 --- a/docs/action-types.md +++ b/docs/action-types.md @@ -32,7 +32,7 @@ jobs: os: [ubuntu-16.04, windows-2019] runs-on: ${{matrix.os}} actions: - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v5 with: version: ${{matrix.node}} - run: | diff --git a/docs/container-action.md b/docs/container-action.md index 83742ee1..efdad142 100644 --- a/docs/container-action.md +++ b/docs/container-action.md @@ -18,7 +18,7 @@ e.g. To use https://github.com/actions/setup-node, users will author: ```yaml steps: - using: actions/setup-node@v4 + using: actions/setup-node@v5 ``` # Define Metadata