Skip to content

Commit

Permalink
Merge pull request #334 from GateNLP/checkout_action_version
Browse files Browse the repository at this point in the history
update node 12 actions to newer node 16 versions
  • Loading branch information
twinkarma authored Apr 13, 2023
2 parents e4bbf8f + bb17545 commit 63a30eb
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/backendfrontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
--health-retries 5
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: conda-incubator/setup-miniconda@v2
with:
Expand All @@ -54,7 +54,7 @@ jobs:
run: conda install -y -c conda-forge postgresql=14.*

- name: Use Node.js v14
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '14'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
-
name: Buildx cache
uses: actions/cache@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
uses: actions/checkout@v3
- name: Install conda
uses: conda-incubator/setup-miniconda@v2
with:
Expand All @@ -18,7 +18,7 @@ jobs:
- name: Install python dependencies 🐍
run: pip install -r requirements.txt -r requirements-dev.txt
- name: Use Node.js v14
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '14'
- name: Install and Build 🔧
Expand All @@ -27,7 +27,7 @@ jobs:
npm run install:docs
npm run build:docs
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.0.0
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: docs-gh-pages # The branch the action should deploy to.
folder: docs/site/gate-teamware # The folder the action should deploy.
4 changes: 2 additions & 2 deletions .github/workflows/image-build-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
rm -rf buildx-cache && mv buildx-cache-out buildx-cache
- uses: actions/setup-node@v1
- uses: actions/setup-node@v3
with:
node-version: 14

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/image-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration-tests-cypress-record.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Generate env
shell: bash
Expand All @@ -38,7 +38,7 @@ jobs:
- run: |
./build-images.sh
- uses: actions/setup-node@v1
- uses: actions/setup-node@v3
with:
node-version: 14

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-cff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out a copy of the repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Check whether the citation metadata from CITATION.cff is valid
uses: citation-file-format/[email protected]
Expand Down

0 comments on commit 63a30eb

Please sign in to comment.