Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update actions to versions running on Node20 #50

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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/load-env-variables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
load-env-variables-manual-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Load environment variables
uses: ./actions/load-env-variables
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
run-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Invoke downstream workflows
uses: keep-network/ci/actions/run-workflow@v2
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/reusable-solidity-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
run:
working-directory: .${{ inputs.projectDir }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# In this step we modify the format of the comments in the Solidity
# contracts files. We do that because our original formatting is not
Expand Down Expand Up @@ -181,7 +181,7 @@ jobs:
shell: bash
run: git config --global url."https://".insteadOf git:https://

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
# Using fixed version, because 18.16 was sometimes causing issues with
# artifacts generation during `hardhat compile` - see
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
inputs.exportAsGHArtifacts == true
&& inputs.commentPR == true
&& startsWith(github.ref, 'refs/pull')
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
github.rest.issues.createComment({
Expand All @@ -233,7 +233,7 @@ jobs:

- name: Import GPG key
if: inputs.publish == true && inputs.verifyCommits == true
uses: crazy-max/ghaction-import-gpg@111c56156bcc6918c056dbef52164cfa583dc549 # v5.2.0
uses: crazy-max/ghaction-import-gpg@01dd5d3ca463c7f10f7f4f7b4f177225ac661ee4 # v6.1.0
with:
gpg_private_key: ${{ secrets.gpgPrivateKey }}
passphrase: ${{ secrets.gpgPassphrase }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: yarn install
- run: yarn run test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: yarn install
- run: yarn run lint
10 changes: 5 additions & 5 deletions .github/workflows/upstream-builds-query.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
name: Verify committed dist directory
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
persist-credentials: false

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: "12"

Expand All @@ -50,11 +50,11 @@ jobs:
upstream-builds-query-unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
persist-credentials: false

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: "12"

Expand All @@ -65,7 +65,7 @@ jobs:
upstream-builds-query-e2e-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: ./actions/upstream-builds-query
id: upstream-builds-query
Expand Down
2 changes: 1 addition & 1 deletion actions/notify-workflow-completed/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ branding:
icon: "rotate-ccw"

runs:
using: node16
using: node20
main: "./dist/index.js"
2 changes: 1 addition & 1 deletion actions/run-workflow/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ branding:
icon: "wind"

runs:
using: "node16"
using: "node20"
main: "./dist/index.js"
2 changes: 1 addition & 1 deletion actions/upstream-builds-query/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ outputs:
description: ""

runs:
using: node16
using: node20
main: "./dist/index.js"

branding:
Expand Down
Loading