From afcecc421f33e723bf5185224e01f010a1b4ac2c Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 7 Mar 2022 13:46:08 +0000 Subject: [PATCH] Update actions/checkout action to v3 --- .github/workflows/releaseWorkflow.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/releaseWorkflow.yml b/.github/workflows/releaseWorkflow.yml index a3bdbdb..c1f47e7 100644 --- a/.github/workflows/releaseWorkflow.yml +++ b/.github/workflows/releaseWorkflow.yml @@ -9,7 +9,7 @@ jobs: Create-new-Release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: get version id: vars run: echo ::set-output name=tag::${GITHUB_REF#refs/*/} # pls dont ask me why it has to work like this.