Skip to content

Commit

Permalink
update deprecated github actions (#499)
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-place-lob authored Jul 9, 2024
1 parent c02f78f commit b8dadf6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
token: ${{ secrets.LOBOT_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

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

- name: am I pretty?
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
token: ${{ secrets.LOBOT_TOKEN }}
ref: "main"
- name: Use Node.js 14.x
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 14.x
- name: create necessary files to push to deployment
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/monitor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

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

- name: run contract tests
uses: ./actions/contract_tests
Expand All @@ -27,7 +27,7 @@ jobs:

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

- name: run contract tests
uses: ./actions/contract_tests
Expand All @@ -42,7 +42,7 @@ jobs:

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

- name: run contract tests
uses: ./actions/contract_tests
Expand Down

0 comments on commit b8dadf6

Please sign in to comment.