Skip to content

Commit

Permalink
Update GitHub Action Versions
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 15, 2024
1 parent f822bc2 commit e329a8c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/assign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
auto-assign:
runs-on: ubuntu-latest
steps:
- uses: pozil/auto-assign-issue@v1.13.0
- uses: pozil/auto-assign-issue@v2.0.0
if: github.actor != 'dependabot[bot]'
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
GH_TOKEN: ${{ secrets.RELEASE_TOKEN }}
SKIP_PREFLIGHT_CHECK: true
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.7
with:
ref: ${{ inputs.sha }}
token: ${{ secrets.RELEASE_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/github_actions_version_updater.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.1.7
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.RELEASE_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/push_code_linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,19 @@ jobs:
NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.7

- name: Install compatible Nodejs version
id: setup-node
uses: ./.github/actions/setup-node

- name: Install Deps
run: npm install
- uses: xt0rted/markdownlint-problem-matcher@v2
- uses: xt0rted/markdownlint-problem-matcher@v3.0.0
- run: npm run lint:markdown
continue-on-error: true
- name: eslint
uses: reviewdog/action-eslint@v1.20.0
uses: reviewdog/action-eslint@v1.31.0
with:
reporter: github-pr-review # Change reporter.
eslint_flags: src/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
env:
SKIP_PREFLIGHT_CHECK: true
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v4.1.7
with:
ref: ${{ github.head_ref || github.ref }}

Expand All @@ -51,7 +51,7 @@ jobs:
- name: 'Report Coverage'
if: always()
continue-on-error: true
uses: davelosert/vitest-coverage-report-action@v2
uses: davelosert/vitest-coverage-report-action@v2.5.1
with:
json-summary-path: './out/coverage-summary.json'
json-final-path: ./out/coverage-final.json
Expand Down

0 comments on commit e329a8c

Please sign in to comment.