From a2ccd6ffd1127f2491ed80aaa8c2f4b7dc58599a Mon Sep 17 00:00:00 2001 From: Aparna Jyothi Date: Thu, 17 Apr 2025 20:51:39 +0530 Subject: [PATCH 1/2] Add Publish Immutable Action --- .../workflows/publish-immutable-action.yml | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/publish-immutable-action.yml diff --git a/.github/workflows/publish-immutable-action.yml b/.github/workflows/publish-immutable-action.yml new file mode 100644 index 0000000..12d49f2 --- /dev/null +++ b/.github/workflows/publish-immutable-action.yml @@ -0,0 +1,20 @@ +name: 'Publish Immutable Action Version' + +on: + release: + types: [published] + +jobs: + publish: + runs-on: ubuntu-latest + permissions: + contents: read + id-token: write + packages: write + + steps: + - name: Checking out + uses: actions/checkout@v4 + - name: Publish + id: publish + uses: actions/publish-immutable-action@v0.0.4 \ No newline at end of file From 0f85d2ddfa3aa30435557274232bc0470c3c2249 Mon Sep 17 00:00:00 2001 From: Aparna Jyothi Date: Thu, 17 Apr 2025 21:05:05 +0530 Subject: [PATCH 2/2] depricate ubuntu-20.04 --- .github/workflows/workflow.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 17c2627..29307c9 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -190,9 +190,9 @@ jobs: run: __tests__/verify-dotnet.ps1 2.2 3.1 test-proxy: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 container: - image: ubuntu:20.04 + image: ubuntu:22.04 options: --dns 127.0.0.1 services: squid-proxy: