Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #229 from 1inch/feat/ci
Browse files Browse the repository at this point in the history
feat: update actions versions
  • Loading branch information
raverianov authored Jun 7, 2024
2 parents a3d2e9d + cc896d3 commit c77b90c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:
changelog: ${{ steps.github_tag_action.outputs.changelog }}
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4.1.6

- name: Bump version and push tag
id: github_tag_action
uses: mathieudutour/github-tag-action@v4.5
uses: mathieudutour/github-tag-action@v6.2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
release_branches: main
Expand All @@ -47,20 +47,20 @@ jobs:
if: ${{ needs.bump_version.outputs.new_tag != null }}
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
uses: actions/checkout@v4.1.6
with:
submodules: recursive

- name: Setup Node
uses: actions/setup-node@v1
uses: actions/setup-node@v4.0.2
with:
node-version: '16.17.1'

- name: Install yarn
run: npm install --global yarn

- name: Cache dependencies
uses: actions/cache@v1
uses: actions/cache@v4.0.2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
Expand All @@ -77,7 +77,7 @@ jobs:
yarn run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.1.0
uses: JamesIves/github-pages-deploy-action@v4.6.1
with:
branch: gh-pages # The branch the action should deploy to.
folder: build # The folder the action should deploy.
Expand Down

0 comments on commit c77b90c

Please sign in to comment.