Skip to content

Commit c0e4bb1

Browse files
committed
Bump actions
1 parent c611307 commit c0e4bb1

4 files changed

Lines changed: 20 additions & 20 deletions

File tree

.github/workflows/build-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Setup problem matchers for PHP
3232
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
3333

34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v6
3535

3636
# Store the version, stripping any v-prefix
3737
- name: Write release version
@@ -88,7 +88,7 @@ jobs:
8888
rm -rf "simplesamlphp-$VERSION"
8989
9090
- name: Save tarball
91-
uses: actions/upload-artifact@v4
91+
uses: actions/upload-artifact@v7
9292
with:
9393
name: release-${{ matrix.version }}
9494
path: "/tmp/simplesamlphp-${{ env.VERSION }}-${{ matrix.version }}.tar.gz"

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
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@v4
22+
- uses: actions/checkout@v6
2323

2424
- name: Lint markdown files
2525
uses: nosborn/github-action-markdown-cli@v3

.github/workflows/php.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
git config --global core.autocrlf false
6969
git config --global core.eol lf
7070
71-
- uses: actions/checkout@v4
71+
- uses: actions/checkout@v6
7272

7373
- name: Copy config.php.dist to config.php
7474
run: cp config/config.php.dist config/config.php
@@ -80,7 +80,7 @@ jobs:
8080
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
8181

8282
- name: Cache composer dependencies
83-
uses: actions/cache@v4
83+
uses: actions/cache@v5
8484
with:
8585
path: ${{ env.COMPOSER_CACHE }}
8686
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -99,7 +99,7 @@ jobs:
9999

100100
- name: Save coverage data
101101
if: ${{ matrix.php-versions == '8.5' }}
102-
uses: actions/upload-artifact@v4
102+
uses: actions/upload-artifact@v7
103103
with:
104104
name: coverage-data
105105
path: ${{ github.workspace }}/build
@@ -136,13 +136,13 @@ jobs:
136136
git config --global core.autocrlf false
137137
git config --global core.eol lf
138138
139-
- uses: actions/checkout@v4
139+
- uses: actions/checkout@v6
140140

141141
- name: Get composer cache directory
142142
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$env:GITHUB_ENV"
143143

144144
- name: Cache composer dependencies
145-
uses: actions/cache@v4
145+
uses: actions/cache@v5
146146
with:
147147
path: ${{ env.COMPOSER_CACHE }}
148148
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -173,7 +173,7 @@ jobs:
173173
- name: Setup problem matchers for PHP
174174
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
175175

176-
- uses: actions/checkout@v4
176+
- uses: actions/checkout@v6
177177

178178
- name: Copy config.php.dist to config.php
179179
run: cp config/config.php.dist config/config.php
@@ -185,7 +185,7 @@ jobs:
185185
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
186186

187187
- name: Cache composer dependencies
188-
uses: actions/cache@v4
188+
uses: actions/cache@v5
189189
with:
190190
path: ${{ env.COMPOSER_CACHE }}
191191
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -233,7 +233,7 @@ jobs:
233233
- name: Setup problem matchers for PHP
234234
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
235235

236-
- uses: actions/checkout@v4
236+
- uses: actions/checkout@v6
237237

238238
- name: Copy config.php.dist to config.php
239239
run: cp config/config.php.dist config/config.php
@@ -245,7 +245,7 @@ jobs:
245245
run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV"
246246

247247
- name: Cache composer dependencies
248-
uses: actions/cache@v4
248+
uses: actions/cache@v5
249249
with:
250250
path: ${{ env.COMPOSER_CACHE }}
251251
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -268,13 +268,13 @@ jobs:
268268
runs-on: [ubuntu-latest]
269269
needs: [unit-tests-linux]
270270
steps:
271-
- uses: actions/download-artifact@v4
271+
- uses: actions/download-artifact@v8
272272
with:
273273
name: coverage-data
274274
path: ${{ github.workspace }}/build
275275

276276
- name: Codecov
277-
uses: codecov/codecov-action@v4
277+
uses: codecov/codecov-action@v5
278278
with:
279279
token: ${{ secrets.CODECOV_TOKEN }}
280280
fail_ci_if_error: true
@@ -290,6 +290,6 @@ jobs:
290290
(needs.unit-tests-linux.result == 'success' && needs.coverage.result == 'skipped')
291291
292292
steps:
293-
- uses: geekyeggo/delete-artifact@v5
293+
- uses: geekyeggo/delete-artifact@v6
294294
with:
295295
name: coverage-data

.github/workflows/translations.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
uses: shivammathur/setup-php@v2
2929
with:
3030
# Should be the higest supported version, so we can use the newest tools
31-
php-version: '8.2'
31+
php-version: '8.5'
3232
coverage: none
3333

34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v6
3535
with:
3636
# token: ${{ secrets.PAT_TOKEN }}
3737
repository: ${{ github.event.pull_request.head.repo.full_name }}
@@ -68,7 +68,7 @@ jobs:
6868
if: steps.changes.outputs.files_changed == 'true' || steps.changes.outputs.packages_changed
6969
run: zip build.zip -r .
7070

71-
- uses: actions/upload-artifact@v4
71+
- uses: actions/upload-artifact@v7
7272
if: steps.changes.outputs.files_changed == 'true' || steps.changes.outputs.packages_changed
7373
with:
7474
name: build
@@ -82,7 +82,7 @@ jobs:
8282
runs-on: [ubuntu-latest]
8383

8484
steps:
85-
- uses: actions/download-artifact@v4
85+
- uses: actions/download-artifact@v8
8686
with:
8787
name: build
8888

@@ -135,7 +135,7 @@ jobs:
135135
(needs.build.result == 'success' && needs.commit.result == 'skipped')
136136
137137
steps:
138-
- uses: geekyeggo/delete-artifact@v4
138+
- uses: geekyeggo/delete-artifact@v6
139139
with:
140140
name: |
141141
build

0 commit comments

Comments
 (0)