diff --git a/templates/.gitlab-ci.yml b/templates/.gitlab-ci.yml index 5cbd01e..f1a75ee 100644 --- a/templates/.gitlab-ci.yml +++ b/templates/.gitlab-ci.yml @@ -1,5 +1,5 @@ # See https://quay.io/repository/hypernode/deploy?tab=tags for all possible tags. -image: quay.io/hypernode/deploy:2.0-php8.1-node18 +image: quay.io/hypernode/deploy:3-php8.2-node18 stages: - build diff --git a/templates/bitbucket-pipelines.yml b/templates/bitbucket-pipelines.yml index b9aeb6d..b22e3ba 100644 --- a/templates/bitbucket-pipelines.yml +++ b/templates/bitbucket-pipelines.yml @@ -1,5 +1,5 @@ # See https://quay.io/repository/hypernode/deploy?tab=tags for all possible tags. -image: quay.io/hypernode/deploy:2.0-php8.1-node18 +image: quay.io/hypernode/deploy:3-php8.2-node18 pipelines: branches: diff --git a/templates/github-actions.yml b/templates/github-actions.yml index 482a6b4..a80d46f 100644 --- a/templates/github-actions.yml +++ b/templates/github-actions.yml @@ -15,14 +15,14 @@ env: jobs: build: runs-on: ubuntu-latest - container: quay.io/hypernode/deploy:2.0-php8.1-node18 + container: quay.io/hypernode/deploy:3-php8.2-node18 steps: - - uses: actions/checkout@v2 - - uses: actions/cache@v2 + - uses: actions/checkout@v3 + - uses: actions/cache@v3 with: path: /tmp/composer-cache key: ${{ runner.os }}-composer - - uses: webfactory/ssh-agent@v0.5.4 + - uses: webfactory/ssh-agent@v0.7.0 with: ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} - run: hypernode-deploy build -vvv @@ -37,15 +37,15 @@ jobs: deploy: needs: build runs-on: ubuntu-latest - container: quay.io/hypernode/deploy:2.0-php8.1-node18 + container: quay.io/hypernode/deploy:3-php8.2-node18 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: download build artifact uses: actions/download-artifact@v3 with: name: deployment-build path: build/ - - uses: webfactory/ssh-agent@v0.5.4 + - uses: webfactory/ssh-agent@v0.7.0 with: ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} - run: mkdir -p $HOME/.ssh