From 09bb59e7a7d6d6ec34253e004a610d88b1f371d9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Oct 2022 16:28:48 +0000 Subject: [PATCH] Bump actions/checkout from 2 to 3.1.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.1.0. - [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.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yaml | 14 +++++++------- action.yaml | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9bce218..0b9c041 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -5,7 +5,7 @@ jobs: testWithOwnerAndBranch: # will create a pr to update existing file runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 - name: sync uses: ./ with: @@ -28,7 +28,7 @@ jobs: testUpdate: # will create a pr to update existing file runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 - name: sync uses: ./ with: @@ -45,7 +45,7 @@ jobs: testCopy: # will create a pr to copy over a new file runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 - name: sync uses: ./ with: @@ -69,7 +69,7 @@ jobs: testDelete: # will create a pr to delete file from dst runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 - name: sync uses: ./ with: @@ -102,7 +102,7 @@ jobs: testUpdateWithExistingBranch: # will update existing branch/pr runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 - name: sync uses: ./ with: @@ -126,7 +126,7 @@ jobs: testUpdateDir: # will create a pr to update existing file runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 - name: sync uses: ./ with: @@ -143,7 +143,7 @@ jobs: testCopyWithSubdir: # will create a pr to copy over a new file and creating the subdir's runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 - name: sync uses: ./ with: diff --git a/action.yaml b/action.yaml index b043bb3..5aa8137 100644 --- a/action.yaml +++ b/action.yaml @@ -32,7 +32,7 @@ runs: using: "composite" steps: # two phases: fetch, sync - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 with: clean: false persist-credentials: false