Skip to content

Commit

Permalink
Bump actions/checkout from 3 to 4 (#1001)
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: ThewBear <[email protected]>
  • Loading branch information
dependabot[bot] and ThewBear authored Oct 13, 2023
1 parent 7e8f375 commit 0dc7eaa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/nextjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: npm ci
- run: npm run build

deploy:
if: github.actor != 'dependabot[bot]' && github.ref != 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
mkdir .vercel
echo $VERCEL_PROJECT > .vercel/project.json
Expand All @@ -31,7 +31,7 @@ jobs:
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
mkdir .vercel
echo $VERCEL_PROJECT > .vercel/project.json
Expand All @@ -44,7 +44,7 @@ jobs:
if: github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
mkdir .vercel
echo $VERCEL_PROJECT > .vercel/project.json
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/strapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: npm ci
- run: rm -r config/env
- run: npm run build
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
outputs:
meta: ${{ steps.meta.outputs.json }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
Expand Down

0 comments on commit 0dc7eaa

Please sign in to comment.