Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- pinned # reads .node-version
- 24
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Resolve Node version
id: node
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
matrix:
language: [javascript-typescript, actions]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
archive: zip
ext: zip
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Run pkg-action
id: build
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
name: Verify action.yml codegen drift
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version-file: .node-version
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
outputs:
matrix: ${{ steps.plan.outputs.matrix }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Expand targets into a matrix
id: plan
uses: ./matrix
Expand All @@ -149,7 +149,7 @@ jobs:
matrix:
entry: ${{ fromJson(needs.matrix-plan.outputs.matrix) }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Build fixture for ${{ matrix.entry.target }}
id: build
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
name: multi-target / ubuntu-latest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Build two linux targets in one invocation
id: build
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
name: windows-metadata / windows-latest
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version-file: .node-version
Expand Down Expand Up @@ -282,7 +282,7 @@ jobs:
- os: windows-latest
target: node22-win-x64
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-node@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ runs:

- name: Cache pkg-fetch Node downloads
if: ${{ inputs.cache != 'false' }}
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{ runner.temp }}/pkg-cache
key: ${{ inputs.cache-key || format('pkg-fetch-{0}-{1}-{2}', runner.os, runner.arch, hashFiles('**/package.json', '.pkgrc*', '**/pkg.config.{js,ts,json}')) }}
Expand Down
Loading