From 470c8ce40ef6dc6b6a158ea3b24ad502498253c1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Mar 2022 17:13:46 +0000 Subject: [PATCH 1/7] Bump actions/checkout from 2 to 3 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/check-links.yml | 2 +- .github/workflows/deploy.yaml | 2 +- .github/workflows/lint.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check-links.yml b/.github/workflows/check-links.yml index b5b62e6..749e368 100644 --- a/.github/workflows/check-links.yml +++ b/.github/workflows/check-links.yml @@ -11,7 +11,7 @@ jobs: steps: # Checks out a copy of your repository on the ubuntu-latest machine - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Check links on new changes uses: gaurav-nelson/github-action-markdown-link-check@v1 diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 58a69c1..51731a7 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup python uses: actions/setup-python@v3 - name: Install environment diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 6db8f12..a82ffb1 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -11,7 +11,7 @@ jobs: steps: # Checks out a copy of your repository on the ubuntu-latest machine - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: # Full git history needed to get proper list of changed files fetch-depth: 0 From 25423e68effa63eebcf8b1028df638c5459f1d2a Mon Sep 17 00:00:00 2001 From: Sebastian Luna-Valero Date: Tue, 19 Apr 2022 07:36:57 +0200 Subject: [PATCH 2/7] default_provider: egi --- .github/workflows/deploy.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 51731a7..e5cf621 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -24,7 +24,9 @@ jobs: curl -L https://github.com/oidc-mytoken/client/releases/download/v0.3.0/mytoken_0.3.0_Linux_x86_64.tar.gz \ | tar -xzf - mkdir ~/.mytoken - curl https://raw.githubusercontent.com/oidc-mytoken/client/master/config/example-config.yaml > ~/.mytoken/config.yaml + curl https://raw.githubusercontent.com/oidc-mytoken/client/master/config/example-config.yaml \ + | sed 's/default_provider:/default_provider: "egi"/g' \ + > ~/.mytoken/config.yaml - name: Configure providers access env: MYTOKEN: ${{ secrets.MYTOKEN }} From 5869699818258eced76cc710316c60d6628ba206 Mon Sep 17 00:00:00 2001 From: Sebastian Luna-Valero Date: Tue, 19 Apr 2022 07:50:25 +0200 Subject: [PATCH 3/7] https://github.com/actions/checkout/pull/762 --- .github/workflows/deploy.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index e5cf621..51d1074 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v3.0.1 - name: Setup python uses: actions/setup-python@v3 - name: Install environment From 656e1fbf5c09963a324dacf1e9b0bab814f51a5d Mon Sep 17 00:00:00 2001 From: Sebastian Luna-Valero Date: Tue, 19 Apr 2022 07:58:30 +0200 Subject: [PATCH 4/7] https://github.com/actions/checkout/issues/766 --- .github/workflows/deploy.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 51d1074..9a9a138 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -12,6 +12,8 @@ jobs: name: 'Terraform' runs-on: ubuntu-latest steps: + - name: work around permission issue + run: git config --global --add safe.directory "$GITHUB_WORKSPACE" - name: Checkout uses: actions/checkout@v3.0.1 - name: Setup python From 4afc8f3102a7265bdc7311b97422915d8997cf90 Mon Sep 17 00:00:00 2001 From: Sebastian Luna-Valero Date: Tue, 19 Apr 2022 08:03:13 +0200 Subject: [PATCH 5/7] test actions/checkout@v3.0.1 with .github/workflows/check-links.yml --- .github/workflows/check-links.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-links.yml b/.github/workflows/check-links.yml index 749e368..48b35f9 100644 --- a/.github/workflows/check-links.yml +++ b/.github/workflows/check-links.yml @@ -11,7 +11,7 @@ jobs: steps: # Checks out a copy of your repository on the ubuntu-latest machine - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v3.0.1 - name: Check links on new changes uses: gaurav-nelson/github-action-markdown-link-check@v1 From 6348865c06927411f4951809771be8d37706a5f7 Mon Sep 17 00:00:00 2001 From: Sebastian Luna-Valero Date: Tue, 19 Apr 2022 08:05:36 +0200 Subject: [PATCH 6/7] safe.directory for .github/workflows/check-links.yml --- .github/workflows/check-links.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/check-links.yml b/.github/workflows/check-links.yml index 48b35f9..6186464 100644 --- a/.github/workflows/check-links.yml +++ b/.github/workflows/check-links.yml @@ -10,6 +10,10 @@ jobs: steps: # Checks out a copy of your repository on the ubuntu-latest machine + # see https://github.com/actions/checkout/issues/766 + - name: work around permission issue + run: git config --global --add safe.directory "$GITHUB_WORKSPACE" + - name: Checkout code uses: actions/checkout@v3.0.1 From eabf28425c37bdacca95ec449649b504cd5fcdd1 Mon Sep 17 00:00:00 2001 From: Sebastian Luna-Valero Date: Tue, 19 Apr 2022 08:11:55 +0200 Subject: [PATCH 7/7] manually revert changes to actions/checkout --- .github/workflows/check-links.yml | 6 +----- .github/workflows/deploy.yaml | 4 +--- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/check-links.yml b/.github/workflows/check-links.yml index 6186464..749e368 100644 --- a/.github/workflows/check-links.yml +++ b/.github/workflows/check-links.yml @@ -10,12 +10,8 @@ jobs: steps: # Checks out a copy of your repository on the ubuntu-latest machine - # see https://github.com/actions/checkout/issues/766 - - name: work around permission issue - run: git config --global --add safe.directory "$GITHUB_WORKSPACE" - - name: Checkout code - uses: actions/checkout@v3.0.1 + uses: actions/checkout@v3 - name: Check links on new changes uses: gaurav-nelson/github-action-markdown-link-check@v1 diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 9a9a138..e5cf621 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -12,10 +12,8 @@ jobs: name: 'Terraform' runs-on: ubuntu-latest steps: - - name: work around permission issue - run: git config --global --add safe.directory "$GITHUB_WORKSPACE" - name: Checkout - uses: actions/checkout@v3.0.1 + uses: actions/checkout@v3 - name: Setup python uses: actions/setup-python@v3 - name: Install environment