Skip to content

Commit

Permalink
fix: upgrade checkout and setup-node deps
Browse files Browse the repository at this point in the history
  • Loading branch information
biodrone committed Sep 9, 2023
1 parent 8277cda commit 5aedd65
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
runs-on: "ubuntu-latest"
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: '16'
check-latest: true
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
component: ["client", "server"]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
component: ["client", "server"]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
python-version: ["3.10"]
os: ["ubuntu-20.04", "ubuntu-latest"]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
Expand All @@ -32,7 +32,7 @@ jobs:
os: ["ubuntu-20.04", "ubuntu-latest"]
component: ["client", "server"]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Docker Build
id: docker_build
uses: docker/build-push-action@v2
Expand Down

0 comments on commit 5aedd65

Please sign in to comment.