Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump actions/checkout from 3.5.3 to 4.2.1 #899

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/browser-tests.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-24.04
timeout-minutes: 30
steps:
- uses: actions/checkout@v4.1.6
- uses: actions/checkout@v4.2.1
with:
repository: wbstack/api
path: api
Expand All @@ -29,7 +29,7 @@ jobs:
- run: docker compose exec api bash -c 'php artisan migrate:fresh && php artisan passport:install && php artisan db:seed && php artisan key:generate && php artisan storage:link'
working-directory: api

- uses: actions/checkout@v4.1.6
- uses: actions/checkout@v4.2.1
with:
path: ui

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker.build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.2.1
- name: Docker meta
id: docker_meta
uses: crazy-max/ghaction-docker-meta@v4.6.0
Expand Down Expand Up @@ -51,13 +51,13 @@ jobs:
labels: ${{ steps.docker_meta.outputs.labels }}
- name: Check out `wmde/wbaas-deploy` repository in staging child directory
if: github.event_name != 'pull_request'
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.2.1
with:
repository: wmde/wbaas-deploy
path: ./repos/wbaas-deploy-staging
- name: Check out `wmde/wbaas-deploy` repository in production child directory
if: github.event_name != 'pull_request'
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.2.1
with:
repository: wmde/wbaas-deploy
path: ./repos/wbaas-deploy-production
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.2.1
- name: lint
uses: hadolint/hadolint-action@v3.1.0
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/github.prs.combine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
console.log('Combined: ' + combined);
return combined
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v4.2.1
with:
fetch-depth: 0
token: ${{ secrets.GH_TOKEN_PLUSW }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/netlify-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v4.2.1

- uses: c-py/action-dotenv-to-setenv@v4
with:
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v4.2.1

- uses: c-py/action-dotenv-to-setenv@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
node-version: [22]

steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v4.2.1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4.0.3
with:
Expand Down
Loading