Skip to content

Commit dce2d1f

Browse files
committed
Merge branch 'develop' of github.com:bbdoc/PoracleWeb into develop
2 parents 7e91768 + 8d90f7c commit dce2d1f

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/php.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,12 @@ jobs:
1616
- "7.3"
1717
- "7.4"
1818
- "8.0"
19+
- "8.1"
1920

2021
name: PHP ${{ matrix.php-versions }} test
2122
steps:
2223
- name: Checkout
23-
uses: actions/checkout@v2
24+
uses: actions/checkout@v4
2425

2526
- name: Setup PHP
2627
uses: shivammathur/setup-php@v2

.github/workflows/publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,22 @@ jobs:
1414
packages: write
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
1818
- name: Log in to the Container registry
19-
uses: docker/login-action@v2
19+
uses: docker/login-action@v3
2020
with:
2121
registry: ${{ env.REGISTRY }}
2222
username: ${{ github.actor }}
2323
password: ${{ secrets.GITHUB_TOKEN }}
2424
- name: Extract metadata (tags, labels) for Docker
2525
id: meta
26-
uses: docker/metadata-action@v4
26+
uses: docker/metadata-action@v5
2727
with:
2828
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
2929
- name: Build and push Docker image
30-
uses: docker/build-push-action@v3
30+
uses: docker/build-push-action@v6
3131
with:
3232
context: .
3333
push: true
3434
tags: ${{ steps.meta.outputs.tags }}
35-
labels: ${{ steps.meta.outputs.labels }}
35+
labels: ${{ steps.meta.outputs.labels }}

0 commit comments

Comments
 (0)