Skip to content

Commit 48578e5

Browse files
committed
Use latest checkout action
The nodeversion in the old checkout action was not supported anymore. This should remove the warning.
1 parent 63a8779 commit 48578e5

11 files changed

+14
-14
lines changed

.github/workflows/autoconf-check-different-distro.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ jobs:
2121
steps:
2222
- name: Install git so we get the .github directory
2323
run: dnf install -y git
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
- name: Setup image and run bats tests
2626
run: .github/jobs/configure-checks/setup_configure_image.sh

.github/workflows/autoconf-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ jobs:
3333
steps:
3434
- name: Install git so we get the .github directory
3535
run: apt-get update; apt-get install -y git
36-
- uses: actions/checkout@v3
36+
- uses: actions/checkout@v4
3737
- name: Setup image and run bats tests
3838
run: .github/jobs/configure-checks/setup_configure_image.sh

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
steps:
3232
- name: Checkout repository
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434

3535
- name: Initialize CodeQL
3636
uses: github/codeql-action/init@v2

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
codespell:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
- name: Rewrite Changelog to find new mistakes
1919
run: awk '1;/Version 7.2.1 - 6 May 2020/{exit}' ChangeLog > latest_Changelog
2020
- name: Get dirs to skip

.github/workflows/codestyle.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515
container:
1616
image: domjudge/gitlabci:2.1
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- name: Run the syntax checks
2020
run: .github/jobs/syntax.sh
2121

2222
detect-dump:
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2626
- name: "Search for leftover dump( statements"
2727
run: .github/jobs/detect_dump.sh
2828

@@ -31,7 +31,7 @@ jobs:
3131
container:
3232
image: pipelinecomponents/php-linter:latest
3333
steps:
34-
- uses: actions/checkout@v3
34+
- uses: actions/checkout@v4
3535
- name: Detect PHP linting issues
3636
run: >
3737
parallel-lint --colors
@@ -52,7 +52,7 @@ jobs:
5252
PHPVERSION: ["8.1", "8.2"]
5353
steps:
5454
- run: apk add git
55-
- uses: actions/checkout@v3
55+
- uses: actions/checkout@v4
5656
- name: Various fixes to this image
5757
run: .github/jobs/fix_pipelinecomponents_image.sh
5858
- name: Detect compatibility with supported PHP version

.github/workflows/mayhem-api-template.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
DB_USER: user
2727
DB_PASSWORD: password
2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v4
3030

3131
- name: Install DOMjudge
3232
run: .github/jobs/baseinstall.sh ${{ inputs.version }}

.github/workflows/phpcodesniffer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
phpcs:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0 # important!
2020
- name: Install PHP_CodeSniffer

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
phpstan:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Install DOMjudge
1818
run: .github/jobs/baseinstall.sh admin
1919
- uses: php-actions/phpstan@v3

.github/workflows/runpipe.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
container:
1818
image: domjudge/gitlabci:2.1
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
- name: Create the configure file
2222
run: make configure
2323
- name: Do the default configure

.github/workflows/shiftleft.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
Scan-Build:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616

1717
- name: Perform Scan
1818
uses: ShiftLeftSecurity/scan-action@master

0 commit comments

Comments
 (0)