Skip to content
Merged
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
26 changes: 13 additions & 13 deletions .github/workflows/build-lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- test-low-risk-without-prepare
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Checkout and setup environment
id: checkout-and-setup
uses: ./
Expand All @@ -32,7 +32,7 @@ jobs:
node-version: [22.x]
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Checkout and setup environment
id: checkout-and-setup
uses: ./
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
runs-on: ubuntu-latest
needs: prepare
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Checkout and setup environment
id: checkout-and-setup
Expand All @@ -81,7 +81,7 @@ jobs:
runs-on: ubuntu-latest
needs: prepare
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Checkout and setup environment
id: checkout-and-setup
Expand All @@ -101,7 +101,7 @@ jobs:
name: Test high-risk without prepare
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Checkout and setup environment
id: checkout-and-setup
Expand All @@ -121,7 +121,7 @@ jobs:
name: Test low-risk without prepare
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Checkout and setup environment
id: checkout-and-setup
Expand All @@ -138,7 +138,7 @@ jobs:
runs-on: ubuntu-latest
needs: prepare
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Checkout and setup environment
id: checkout-and-setup
Expand All @@ -151,7 +151,7 @@ jobs:
runs-on: ubuntu-latest
needs: prepare
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Checkout and setup environment
id: checkout-and-setup
Expand All @@ -163,7 +163,7 @@ jobs:
name: Test no input
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Checkout and setup environment
id: checkout-and-setup
Expand All @@ -178,7 +178,7 @@ jobs:
name: Test bad input string
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Checkout and setup environment
id: checkout-and-setup
Expand All @@ -195,7 +195,7 @@ jobs:
name: Test bad input number
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Checkout and setup environment
id: checkout-and-setup
Expand All @@ -212,7 +212,7 @@ jobs:
name: Test custom Node.js version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Checkout and setup environment
id: checkout-and-setup
Expand All @@ -229,7 +229,7 @@ jobs:
name: Test do not checkout twice
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: fe105dad148ae6383a5c7ec77cbe13d67ec98190 # The commit hash when the action was first created

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/create-release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
# This is to guarantee that the most recent tag is fetched.
# This can be configured to a more reasonable value by consumers.
Expand All @@ -30,7 +30,7 @@ jobs:
# branch for all git operations and the release PR.
ref: ${{ github.event.inputs.base-branch }}
- name: Install Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
- uses: MetaMask/action-create-release-pr@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Check workflows
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Download actionlint
id: download-actionlint
run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/7fdc9630cc360ea1a469eed64ac6d78caeda1234/scripts/download-actionlint.bash) 1.7.7
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
name: Announce release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- id: name-hash
name: Get Slack name and hash
shell: bash
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# This is to guarantee that the most recent tag is fetched, which we
# need for updating the shorthand major version tag.
Expand Down
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ runs:

# Checkout repository only if not already checked out.
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
if: ${{ hashFiles('.git') == '' }}
with:
fetch-depth: ${{ inputs.fetch-depth }}
Expand All @@ -84,7 +84,7 @@ runs:
shell: bash

- name: Set up Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
id: setup-node
with:
node-version: ${{ inputs.node-version }}
Expand Down Expand Up @@ -127,7 +127,7 @@ runs:

- name: Conditionally restore action/setup-node cache
if: ${{ ( inputs.is-high-risk-environment != 'true' && steps.download-node-modules.outputs.cache-hit != 'true' ) }}
uses: actions/setup-node@v4
uses: actions/setup-node@v6
id: restore-setup-node-cache
with:
node-version: ${{ steps.setup-node.outputs.node-version }}
Expand Down
Loading