Skip to content

Commit da4431a

Browse files
Bump the all-actions group across 1 directory with 4 updates
Bumps the all-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/github-script](https://github.com/actions/github-script), [simplesamlphp/simplesamlphp-test-framework](https://github.com/simplesamlphp/simplesamlphp-test-framework) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v8) Updates `simplesamlphp/simplesamlphp-test-framework` from 1.9.2 to 1.10.0 - [Commits](simplesamlphp/simplesamlphp-test-framework@v1.9.2...v1.10.0) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: simplesamlphp/simplesamlphp-test-framework dependency-version: 1.10.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 55e015f commit da4431a

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/documentation.yml

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

2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222

2323
- name: Lint markdown files
2424
uses: nosborn/github-action-markdown-cli@v3
@@ -41,7 +41,7 @@ jobs:
4141
steps:
4242
- name: Run docs build
4343
if: github.event_name != 'pull_request'
44-
uses: actions/github-script@v7
44+
uses: actions/github-script@v8
4545
with:
4646
# Token has to be generated on a user account that controls the docs-repository.
4747
# The _only_ scope to select is "Access public repositories", nothing more.

.github/workflows/php.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
matrix:
2222
php-version: ['8.1', '8.2', '8.3', '8.4']
2323

24-
uses: simplesamlphp/simplesamlphp-test-framework/.github/workflows/reusable_phplinter.yml@v1.9.2
24+
uses: simplesamlphp/simplesamlphp-test-framework/.github/workflows/reusable_phplinter.yml@v1.10.0
2525
with:
2626
php-version: ${{ matrix.php-version }}
2727

@@ -30,7 +30,7 @@ jobs:
3030
strategy:
3131
fail-fast: false
3232

33-
uses: simplesamlphp/simplesamlphp-test-framework/.github/workflows/reusable_linter.yml@v1.9.2
33+
uses: simplesamlphp/simplesamlphp-test-framework/.github/workflows/reusable_linter.yml@v1.10.0
3434
with:
3535
enable_eslinter: false
3636
enable_jsonlinter: true
@@ -69,7 +69,7 @@ jobs:
6969
git config --global core.autocrlf false
7070
git config --global core.eol lf
7171
72-
- uses: actions/checkout@v4
72+
- uses: actions/checkout@v5
7373

7474
- name: Get composer cache directory
7575
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
@@ -131,7 +131,7 @@ jobs:
131131
git config --global core.autocrlf false
132132
git config --global core.eol lf
133133
134-
- uses: actions/checkout@v4
134+
- uses: actions/checkout@v5
135135

136136
- name: Get composer cache directory
137137
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$env:GITHUB_ENV"
@@ -169,7 +169,7 @@ jobs:
169169
- name: Setup problem matchers for PHP
170170
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
171171

172-
- uses: actions/checkout@v4
172+
- uses: actions/checkout@v5
173173

174174
- name: Get composer cache directory
175175
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
@@ -235,7 +235,7 @@ jobs:
235235
- name: Setup problem matchers for PHP
236236
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
237237

238-
- uses: actions/checkout@v4
238+
- uses: actions/checkout@v5
239239

240240
- name: Get composer cache directory
241241
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
@@ -264,9 +264,9 @@ jobs:
264264
runs-on: [ubuntu-latest]
265265
needs: [unit-tests-linux]
266266
steps:
267-
- uses: actions/checkout@v4
267+
- uses: actions/checkout@v5
268268

269-
- uses: actions/download-artifact@v4
269+
- uses: actions/download-artifact@v5
270270
with:
271271
name: coverage-data
272272
path: ${{ github.workspace }}/build

0 commit comments

Comments
 (0)