Skip to content

Commit 2a8f5d2

Browse files
authored
Merge pull request #38 from ByteInternet/update_configuration_templates
2 parents 3628d27 + 8fcb023 commit 2a8f5d2

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

Diff for: templates/.gitlab-ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# See https://quay.io/repository/hypernode/deploy?tab=tags for all possible tags.
2-
image: quay.io/hypernode/deploy:2.0-php8.1-node18
2+
image: quay.io/hypernode/deploy:3-php8.2-node18
33

44
stages:
55
- build

Diff for: templates/bitbucket-pipelines.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# See https://quay.io/repository/hypernode/deploy?tab=tags for all possible tags.
2-
image: quay.io/hypernode/deploy:2.0-php8.1-node18
2+
image: quay.io/hypernode/deploy:3-php8.2-node18
33

44
pipelines:
55
branches:

Diff for: templates/github-actions.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ env:
1515
jobs:
1616
build:
1717
runs-on: ubuntu-latest
18-
container: quay.io/hypernode/deploy:2.0-php8.1-node18
18+
container: quay.io/hypernode/deploy:3-php8.2-node18
1919
steps:
20-
- uses: actions/checkout@v2
21-
- uses: actions/cache@v2
20+
- uses: actions/checkout@v3
21+
- uses: actions/cache@v3
2222
with:
2323
path: /tmp/composer-cache
2424
key: ${{ runner.os }}-composer
25-
- uses: webfactory/ssh-agent@v0.5.4
25+
- uses: webfactory/ssh-agent@v0.7.0
2626
with:
2727
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
2828
- run: hypernode-deploy build -vvv
@@ -37,15 +37,15 @@ jobs:
3737
deploy:
3838
needs: build
3939
runs-on: ubuntu-latest
40-
container: quay.io/hypernode/deploy:2.0-php8.1-node18
40+
container: quay.io/hypernode/deploy:3-php8.2-node18
4141
steps:
42-
- uses: actions/checkout@v2
42+
- uses: actions/checkout@v3
4343
- name: download build artifact
4444
uses: actions/download-artifact@v3
4545
with:
4646
name: deployment-build
4747
path: build/
48-
- uses: webfactory/ssh-agent@v0.5.4
48+
- uses: webfactory/ssh-agent@v0.7.0
4949
with:
5050
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
5151
- run: mkdir -p $HOME/.ssh

0 commit comments

Comments
 (0)