Skip to content

Commit

Permalink
chore: update CI dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianjost committed Jul 27, 2023
1 parent 25c04fe commit 6bb0f02
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: |
npm ci
npm run lint:all
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: File Sync
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: ./
name: "Simple"
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
token: ${{ secrets.SYNCED_GITHUB_TOKEN }}
token: ${{ secrets.SYNCED_GITHUB_TOKEN }}
ref: "master"
- name: Keep dist up-to-date
run: |
Expand All @@ -20,7 +20,7 @@ jobs:
git add dist/index.js
git commit -m "chore: publish dist" || echo "nothing to commit"
git push origin master
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
ref: master
- name: Test Action
Expand All @@ -34,11 +34,11 @@ jobs:
adrianjost/files-sync-target
GITHUB_TOKEN: ${{ secrets.SYNCED_GITHUB_TOKEN }}
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: master
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v2
uses: cycjimmy/semantic-release-action@v3
with:
extra_plugins: |
"@semantic-release/commit-analyzer"
Expand Down

0 comments on commit 6bb0f02

Please sign in to comment.