Skip to content

Commit

Permalink
Fix actionlint failures
Browse files Browse the repository at this point in the history
  • Loading branch information
TAGraves committed Nov 18, 2024
1 parent 698a6c1 commit b149ce0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/bigtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
ABQ_CREATE_MANUAL_ACCESS_TOKEN: ${{ secrets.ABQ_CREATE_MANUAL_ACCESS_TOKEN }}
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: START dev queue
run: |
Expand Down Expand Up @@ -59,11 +59,11 @@ jobs:
jest_abq_time: ${{ steps.benchmark.outputs.jest_abq_worker_time }}
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: "16"
cache: "npm"
Expand Down Expand Up @@ -131,11 +131,11 @@ jobs:
shard: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: "16"
cache: "npm"
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:
overhead_stddev: ${{ steps.collect.outputs.overhead_stddev }}
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- uses: actions/download-artifact@v4
- id: collect
run: |
Expand All @@ -211,7 +211,7 @@ jobs:
ABQ_CREATE_MANUAL_ACCESS_TOKEN: ${{ secrets.ABQ_CREATE_MANUAL_ACCESS_TOKEN }}
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Get status emoji
id: status
if: always()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_and_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
AWS_DEFAULT_OUTPUT: json
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # get whole history for versioning
ref: ${{inputs.ref}}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_and_package_development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
ABQ_NO_REBUILD: true
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # get whole history for versioning

Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
shell: bash

# setup testdata
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: "14"
cache: "npm"
Expand Down

0 comments on commit b149ce0

Please sign in to comment.