From 9c99f110322281801627b443c267dc886a7bb845 Mon Sep 17 00:00:00 2001 From: Aparna Jyothi Date: Thu, 17 Apr 2025 20:53:27 +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 27dbb7f4075eee6714cdb318b7b839cfc52ad023 Mon Sep 17 00:00:00 2001 From: Aparna Jyothi Date: Thu, 17 Apr 2025 21:03:21 +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 ee5618f..fd634d7 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -163,9 +163,9 @@ jobs: run: __tests__/verify-dotnet.ps1 3.1 2.2 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: