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

Bump actions/checkout from 2 to 3.1.0 #1031

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/check_for_new_bricks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
name: Check for new Catroid Bricks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0

- name: Install PHP
run: sudo apt-get install php
Expand Down
22 changes: 11 additions & 11 deletions .github/workflows/code_quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
name: JavaScript [ESLint]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0

# Download and set up node (caching is enabled)
- uses: actions/setup-node@v2.1.2
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
name: Sass,CSS [StyleLint]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0

# Download and set up node (caching is enabled)
- uses: actions/setup-node@v2.1.2
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
name: PHP Code Style [Php-CS-Fixer]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0

- name: Install dependencies (php-imagick)
run: |
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
name: PHP Static Analysis [Php-Stan]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0

- name: Install dependencies (php-imagick)
run: |
Expand Down Expand Up @@ -223,7 +223,7 @@ jobs:
name: PHP Static Analysis [Psalm]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0

- name: Install dependencies (php-imagick)
run: |
Expand Down Expand Up @@ -264,7 +264,7 @@ jobs:
name: PHP Static Analysis [PhpCPD]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
- name: PHP Copy Paste Detector
uses: StephaneBour/actions-php-cpd@7.4
with:
Expand All @@ -279,7 +279,7 @@ jobs:
name: PHP Static Analysis [PhpCF]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0

- name: Install dependencies (php-imagick)
run: |
Expand Down Expand Up @@ -319,7 +319,7 @@ jobs:
name: PHP Info [PhpLoc]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
- run: wget https://phar.phpunit.de/phploc.phar
- run: php phploc.phar src tests

Expand All @@ -332,7 +332,7 @@ jobs:
name: Twig [Lint]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0

- name: Install dependencies (php-imagick)
run: |
Expand Down Expand Up @@ -373,7 +373,7 @@ jobs:
name: Yaml [Lint]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0

- name: Install dependencies (php-imagick)
run: |
Expand Down Expand Up @@ -414,7 +414,7 @@ jobs:
name: Symfony Container [Lint]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0

- name: Install dependencies (php-imagick)
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/container_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3.1.0

- name: Build and start all containers (Docker Compose)
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3.1.0

- name: Connect to TUG via VPN
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync_crowdin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
name: Synchronize Crowdin Translations
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0

- uses: crowdin/github-action@1.0.10
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3.1.0

- name: Build catroweb app image
run: |
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3.1.0

- name: Pull the latest images to build (Faster than caching)
run: |
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3.1.0

- name: Pull the latest images to build (Faster than caching)
run: |
Expand Down