From 85a337b447e1af87532dbe6689a4b594da1b01e3 Mon Sep 17 00:00:00 2001 From: Bervianto Leo Pratama Date: Thu, 26 Sep 2024 12:22:34 +0700 Subject: [PATCH 1/2] Update docker.yml --- .github/workflows/docker.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index fe84e267..6a209c61 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -10,14 +10,14 @@ env: IMAGE_NAME: my-personal-web jobs: docker-build: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 if: ${{ github.event_name == 'pull_request' }} steps: - uses: actions/checkout@v4 - name: Run tests run: docker build . --file Dockerfile push: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 if: github.event_name == 'push' steps: - uses: actions/checkout@v4 From aff7d288374ff6ab6901aa34e22f20ce907c8eda Mon Sep 17 00:00:00 2001 From: Bervianto Leo Pratama Date: Thu, 26 Sep 2024 12:23:13 +0700 Subject: [PATCH 2/2] Update nodejs.yml --- .github/workflows/nodejs.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index ec68f9bd..d286db63 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: node-version: ['20.x', '22.x'] - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} @@ -28,7 +28,7 @@ jobs: name: deployment path: dist/* test: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 if: ${{ github.event_name == 'pull_request' }} strategy: matrix: @@ -55,7 +55,7 @@ jobs: - uses: codecov/codecov-action@v4 if: ${{ matrix.node-version == '20.x' }} publish: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 needs: build if: ${{ github.event_name == 'push' }} steps: