Skip to content

Commit

Permalink
deps: update actions/checkout action to v3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Nov 16, 2023
1 parent ba752bc commit ca0ed45
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.0.2
- uses: actions/checkout@v3.6.0
- uses: ./.github/actions/setup-env
- name: ESLint
run: yarn eslint --format junit --output-file artifacts/eslint.junit.xml .
Expand All @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
needs: [linting]
steps:
- uses: actions/checkout@v3.0.2
- uses: actions/checkout@v3.6.0
- uses: ./.github/actions/setup-env
- name: Build Packages
run: yarn workspaces foreach -vpt --no-private --topological-dev run prepack
Expand All @@ -50,7 +50,7 @@ jobs:
runs-on: ubuntu-latest
needs: [build]
steps:
- uses: actions/checkout@v3.0.2
- uses: actions/checkout@v3.6.0
with:
token: ${{ secrets.TOPHAT_BOT_GH_TOKEN }}
fetch-depth: 0
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
needs: [linting, build]
steps:
- uses: actions/checkout@v3.0.2
- uses: actions/checkout@v3.6.0
with:
token: ${{ secrets.TOPHAT_BOT_GH_TOKEN }}
fetch-depth: 0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
if: github.ref == 'refs/heads/next'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.0.2
- uses: actions/checkout@v3.6.0
with:
token: ${{ secrets.TOPHAT_BOT_GH_TOKEN }}
fetch-depth: 0
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.0.2
- uses: actions/checkout@v3.6.0
with:
token: ${{ secrets.TOPHAT_BOT_GH_TOKEN }}
fetch-depth: 0
Expand Down

0 comments on commit ca0ed45

Please sign in to comment.