Skip to content

Commit ca2e4eb

Browse files
committed
Update actions
1 parent 55c85f3 commit ca2e4eb

File tree

4 files changed

+17
-16
lines changed

4 files changed

+17
-16
lines changed

.github/workflows/autolock-conversations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
action:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: dessant/lock-threads@v4
21+
- uses: dessant/lock-threads@v5
2222
with:
2323
issue-inactive-days: '90'
2424
pr-inactive-days: '90'

.github/workflows/documentation.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: [ubuntu-latest]
2020

2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323

2424
- name: Lint markdown files
2525
uses: nosborn/github-action-markdown-cli@v3
@@ -28,7 +28,7 @@ jobs:
2828
ignore_path: .markdownlintignore
2929

3030
- name: Perform spell check
31-
uses: codespell-project/actions-codespell@master
31+
uses: codespell-project/actions-codespell@v2
3232
with:
3333
path: '**/*.md'
3434
check_filenames: true
@@ -42,7 +42,7 @@ jobs:
4242
steps:
4343
- name: Run docs build
4444
if: github.event_name != 'pull_request'
45-
uses: actions/github-script@v6
45+
uses: actions/github-script@v7
4646
with:
4747
# Token has to be generated on a user account that controls the docs-repository.
4848
# The _only_ scope to select is "Access public repositories", nothing more.

.github/workflows/php.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,13 @@ jobs:
5757
- name: Setup problem matchers for PHP
5858
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
5959

60-
- uses: actions/checkout@v3
60+
- uses: actions/checkout@v4
6161

6262
- name: Get composer cache directory
6363
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
6464

6565
- name: Cache composer dependencies
66-
uses: actions/cache@v3
66+
uses: actions/cache@v4
6767
with:
6868
path: $COMPOSER_CACHE
6969
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -125,13 +125,13 @@ jobs:
125125
- name: Setup problem matchers for PHP
126126
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
127127

128-
- uses: actions/checkout@v3
128+
- uses: actions/checkout@v4
129129

130130
- name: Get composer cache directory
131131
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
132132

133133
- name: Cache composer dependencies
134-
uses: actions/cache@v3
134+
uses: actions/cache@v4
135135
with:
136136
path: $COMPOSER_CACHE
137137
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -184,13 +184,13 @@ jobs:
184184
git config --global core.autocrlf false
185185
git config --global core.eol lf
186186
187-
- uses: actions/checkout@v3
187+
- uses: actions/checkout@v4
188188

189189
- name: Get composer cache directory
190190
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
191191

192192
- name: Cache composer dependencies
193-
uses: actions/cache@v3
193+
uses: actions/cache@v4
194194
with:
195195
path: $COMPOSER_CACHE
196196
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -209,7 +209,7 @@ jobs:
209209

210210
- name: Save coverage data
211211
if: ${{ matrix.php-versions == '8.4' }}
212-
uses: actions/upload-artifact@v3
212+
uses: actions/upload-artifact@v4
213213
with:
214214
name: coverage-data
215215
path: ${{ github.workspace }}/build
@@ -246,13 +246,13 @@ jobs:
246246
git config --global core.autocrlf false
247247
git config --global core.eol lf
248248
249-
- uses: actions/checkout@v3
249+
- uses: actions/checkout@v4
250250

251251
- name: Get composer cache directory
252252
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$env:GITHUB_ENV"
253253

254254
- name: Cache composer dependencies
255-
uses: actions/cache@v3
255+
uses: actions/cache@v4
256256
with:
257257
path: $COMPOSER_CACHE
258258
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -269,15 +269,15 @@ jobs:
269269
runs-on: [ubuntu-latest]
270270
needs: [unit-tests-linux]
271271
steps:
272-
- uses: actions/checkout@v3
272+
- uses: actions/checkout@v4
273273

274-
- uses: actions/download-artifact@v3
274+
- uses: actions/download-artifact@v4
275275
with:
276276
name: coverage-data
277277
path: ${{ github.workspace }}/build
278278

279279
- name: Codecov
280-
uses: codecov/codecov-action@v3
280+
uses: codecov/codecov-action@v5
281281
with:
282282
token: ${{ secrets.CODECOV_TOKEN }}
283283
fail_ci_if_error: true

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
},
1818
"allow-plugins": {
1919
"composer/package-versions-deprecated": true,
20+
"dealerdirect/phpcodesniffer-composer-installer": true,
2021
"simplesamlphp/composer-module-installer": true
2122
}
2223
},

0 commit comments

Comments
 (0)