diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 28766ba..259e792 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,4 +1,4 @@ -name: Continous integration +name: Continuous integration on: pull_request: push: @@ -34,10 +34,10 @@ jobs: needs: [test, cs] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-node@v3 with: - node-version: 18 + node-version: lts - run: > npx -p "@semantic-release/commit-analyzer" diff --git a/src/Module.php b/src/Module.php index 1497d21..36304fb 100644 --- a/src/Module.php +++ b/src/Module.php @@ -159,8 +159,6 @@ public function createBuildContext( $context->from($this->baseImage); $context->run('apk add --update --no-cache jq'); - $context->run('mkdir -p /runtime && chown nobody:nobody /runtime'); - $context->volume('/runtime'); $context->copyFromLayer("/project", "0", "/build"); $context->add('/entrypoint.sh', $this->createEntrypoint($entryScript));