Skip to content

Commit

Permalink
chore(deps): Bump actions/checkout from 3 to 4 (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] committed Jul 4, 2024
1 parent 3afb69e commit 3593729
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
check-dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: remove js files in dist/
run: find dist/ -type f \( -name "*.json" -o -name "*.js" -o -name "*.js.map" \) -delete
- name: Setup Node 16.x
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/license-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Check license header
uses: apache/skywalking-eyes/header@v0.6.0
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
fail-fast: true
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup ORAS v${{ matrix.version }}
uses: ./
Expand All @@ -64,7 +64,7 @@ jobs:
checksum: ${{ steps.get-checksum-url.outputs.CHECKSUM }}
steps:
- id: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- id: get-checksum-url
run: |
RELEASE=$(jq -r 'keys_unsorted[0] as $k | .[$k].linux.amd64' src/lib/data/releases.json)
Expand All @@ -77,7 +77,7 @@ jobs:
needs: create-test-variables
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup ORAS using URL
uses: ./
Expand Down

0 comments on commit 3593729

Please sign in to comment.