Skip to content

Commit

Permalink
ci(github): upgrade setup-node@v4.0.3 checkout@v4.1.7 cache@v4.0.2
Browse files Browse the repository at this point in the history
1. Fixes the GitHub action linter warnings (the ones that show up on the
summary page of the action execution)
2. Adds another ignore line to the eslint ignore file that randomly popped up:
`weaver/core/identity-management/iin-agent/out/`

Fixes hyperledger-cacti#3477

Signed-off-by: Peter Somogyvari <peter.somogyvari@accenture.com>
  • Loading branch information
petermetz committed Aug 13, 2024
1 parent 141ee24 commit 9ce9057
Show file tree
Hide file tree
Showing 42 changed files with 329 additions and 328 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

examples/cactus-example-carbon-accounting-frontend/www/
examples/cactus-example-supply-chain-frontend/www/
weaver/core/identity-management/iin-agent/out/

**/src/main/typescript/generated/proto/**
**/src/main/typescript/generated/wasm-pack/**
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/.dast-nuclei-cmd-api-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
&& sudo rm -f /etc/apt/sources.list.d/sovrin.list*
- name: Set up NodeJS ${{ env.NODEJS_VERSION }}
uses: actions/setup-node@v4.0.2
uses: actions/setup-node@v4.0.3
with:
node-version: ${{ env.NODEJS_VERSION }}

Expand All @@ -37,7 +37,7 @@ jobs:
- name: Verify jq
run: jq --version

- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.7

- uses: actions/setup-go@v4.0.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/actionlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: git_clone
uses: actions/checkout@v4.1.1
uses: actions/checkout@v4.1.7

# We need to wipe the root package.json file because the installation of actionlint fails otherwise like this:
#
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/all-nodejs-packages-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
build-and-publish-packages:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.7
- run: git fetch --unshallow --prune
- uses: actions/setup-node@v4.0.2
- uses: actions/setup-node@v4.0.3
with:
always-auth: true
node-version: ${{ env.NODEJS_VERSION }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/besu-all-in-one-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
contents: read

steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.7

- name: Build image
run: docker build "$DOCKER_BUILD_DIR" --file "$DOCKERFILE_PATH" --tag "$IMAGE_NAME" --label "runnumber=${GITHUB_RUN_ID}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cacti-dev-container-vscode-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:

steps:
- name: Use Node.js ${{ env.NODEJS_VERSION }}
uses: actions/setup-node@v4.0.2
uses: actions/setup-node@v4.0.3
with:
node-version: ${{ env.NODEJS_VERSION }}

- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.7

- name: npm_install_@devcontainers/cli@0.44.0
run: npm install -g @devcontainers/cli@0.44.0
Expand Down
Loading

0 comments on commit 9ce9057

Please sign in to comment.