Skip to content

Commit

Permalink
fix: deprecated workflows tools
Browse files Browse the repository at this point in the history
  • Loading branch information
andreeaneata committed Jul 8, 2024
1 parent 3339095 commit 81b02d8
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
iac-scan: disabled
lint_commit_message:
docker:
- image: cimg/node:14.19
- image: cimg/node:18
steps:
- checkout
- attach_workspace:
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
command: echo $DOCKER_PASSWORD | docker login -u $DOCKER_USERNAME --password-stdin
- node/install:
install-yarn: false
node-version: '12'
node-version: '18'
- run:
name: Release binaries to GitHub
command: ./scripts/release-github.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/setup_shellspec/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ runs:
steps:
- uses: actions/setup-node@v1
with:
node-version: 15
node-version: 18

- name: Install Snyk with npm
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/contract.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- uses: actions/setup-node@v1
with:
node-version: 15
node-version: 18

- name: Install Snyk with npm
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
- name: Build binaries
uses: goreleaser/goreleaser-action@v2
with:
args: --snapshot --rm-dist
args: --snapshot --clean

- name: Test Dockerfile
run: |
Expand Down
1 change: 1 addition & 0 deletions packaging/npm/passthrough.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ switch (process.platform) {
var arch = ''
switch (process.arch) {
case 'arm' :
case 'arm64':
arch = 'arm64';
break;
case 'x64':
Expand Down
2 changes: 1 addition & 1 deletion scripts/release-github.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fi
goreleaser check

FLAGS=""
FLAGS+="--rm-dist "
FLAGS+="--clean "

# Only CI system should publish artifacts
if [ "$CI" != true ]; then
Expand Down

0 comments on commit 81b02d8

Please sign in to comment.