Skip to content

Commit 13ccfbc

Browse files
authored
Update actions used in GHA workflows (#122)
This is to address deprecation notices regarding Node v20 being issued during workflow runs.
1 parent ac3500a commit 13ccfbc

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/dependencies.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
php-version: ${{ env.PHP_VERSION }}
2121
coverage: none
2222
tools: composer:v2
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v6
2424
- name: Cache Composer Dependencies
25-
uses: actions/cache@v4
25+
uses: actions/cache@v5
2626
with:
2727
path: vendor/
2828
key: composer-${{ env.PHP_VERSION }}-${{ hashFiles('composer.*') }}

.github/workflows/fix-cs-php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: github.actor != 'dependabot[bot]'
1717
steps:
1818
- name: Checkout code
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v6
2020
with:
2121
ref: ${{ github.head_ref }}
2222

.github/workflows/php-version-compatibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ jobs:
2121
php-version: ${{ matrix.php }}
2222
coverage: none
2323
tools: composer:v2
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v6
2525
- run: composer install --dry-run

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
php-version: 8.3
1616
coverage: none
1717
tools: composer:v2
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v6
1919
- name: Install PHIVE
2020
run: |
2121
wget --quiet -O phive.phar https://phar.io/releases/phive.phar
@@ -33,7 +33,7 @@ jobs:
3333
id: get_version
3434
run: echo "VERSION=$(echo $GITHUB_REF | cut -d / -f 3)" >> $GITHUB_OUTPUT
3535
- name: Attach .phar to release
36-
uses: svenstaro/upload-release-action@v2
36+
uses: svenstaro/upload-release-action@2.11.4
3737
with:
3838
repo_token: ${{ secrets.GITHUB_TOKEN }}
3939
file: slimdump.phar

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
php-version: ${{ matrix.php }}
2121
coverage: none
2222
tools: composer:v2
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v6
2424
- name: Cache Composer Dependencies
25-
uses: actions/cache@v4
25+
uses: actions/cache@v5
2626
with:
2727
path: vendor/
2828
key: composer-${{ matrix.php }}-${{ hashFiles('composer.*') }}

0 commit comments

Comments
 (0)