Skip to content

Commit 346a699

Browse files
committed
Update GitHub workflows: bump action versions to latest releases
1 parent 6e4583a commit 346a699

File tree

9 files changed

+20
-20
lines changed

9 files changed

+20
-20
lines changed

.github/workflows/check.yaml

Lines changed: 4 additions & 4 deletions
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@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
16+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1717
with:
1818
persist-credentials: false
1919

@@ -30,7 +30,7 @@ jobs:
3030
run: |
3131
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
3232
33-
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
33+
- uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5
3434
with:
3535
path: ${{ steps.composer-cache.outputs.dir }}
3636
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -47,7 +47,7 @@ jobs:
4747
code-style:
4848
runs-on: ubuntu-latest
4949
steps:
50-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
50+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
5151
with:
5252
persist-credentials: false
5353

@@ -64,7 +64,7 @@ jobs:
6464
run: |
6565
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
6666
67-
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
67+
- uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5
6868
with:
6969
path: ${{ steps.composer-cache.outputs.dir }}
7070
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/docker.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
id-token: write
1919
attestations: write
2020
steps:
21-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
21+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2222
with:
2323
persist-credentials: false
2424

@@ -40,11 +40,11 @@ jobs:
4040
run: php -d phar.readonly=0 bin/build -v"$RELEASE_VERSION"
4141

4242
- name: Set up Docker Buildx
43-
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3
43+
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4
4444

4545
- name: Docker meta
4646
id: meta
47-
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5
47+
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6
4848
with:
4949
images: deployphp/deployer
5050
tags: |
@@ -57,13 +57,13 @@ jobs:
5757
type=ref,event=tag
5858
5959
- name: Login to Docker Hub
60-
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3
60+
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4
6161
with:
6262
username: deployphp
6363
password: ${{ secrets.DOCKERHUB_TOKEN }}
6464

6565
- name: Build and push
66-
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6
66+
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7
6767
with:
6868
context: .
6969
platforms: linux/amd64,linux/arm64

.github/workflows/docs-sync.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
permissions:
1313
contents: write
1414
steps:
15-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
15+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1616

1717
- name: Setup PHP
1818
uses: shivammathur/setup-php@accd6127cb78bee3e8082180cb391013d204ef9f # v2
@@ -24,7 +24,7 @@ jobs:
2424
run: |
2525
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
2626
27-
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
27+
- uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5
2828
with:
2929
path: ${{ steps.composer-cache.outputs.dir }}
3030
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
@@ -39,7 +39,7 @@ jobs:
3939
run: php bin/docgen
4040

4141
- name: Add & Commit
42-
uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9
42+
uses: EndBug/add-and-commit@290ea2c423ad77ca9c62ae0f5b224379612c0321 # v10
4343
with:
4444
default_author: github_actions
4545
add: 'docs'

.github/workflows/docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
docgen:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
16+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1717
with:
1818
persist-credentials: false
1919

@@ -27,7 +27,7 @@ jobs:
2727
run: |
2828
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
2929
30-
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
30+
- uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5
3131
with:
3232
path: ${{ steps.composer-cache.outputs.dir }}
3333
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
matrix:
1717
php-versions: [ '8.3' ]
1818
steps:
19-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
19+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2020
with:
2121
persist-credentials: false
2222

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
permissions:
1818
contents: write
1919
steps:
20-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
20+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2121
with:
2222
persist-credentials: false
2323

.github/workflows/stale.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
permissions:
1313
issues: write
1414
steps:
15-
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9
15+
- uses: actions/stale@b5d41d4e1d5dceea10e7104786b73624c18a190f # v10
1616
with:
1717
days-before-issue-stale: 0
1818
days-before-issue-close: 0

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- '8.4'
2020
- '8.5'
2121
steps:
22-
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
22+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2323
with:
2424
persist-credentials: false
2525

@@ -38,7 +38,7 @@ jobs:
3838
run: |
3939
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
4040
41-
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
41+
- uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5
4242
with:
4343
path: ${{ steps.composer-cache.outputs.dir }}
4444
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/zizmor.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
actions: read
1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
20+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2121
with:
2222
persist-credentials: false
2323

0 commit comments

Comments
 (0)