From b49d8b6ab089664803fda94b8561d1e76950c76e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 3 Sep 2021 22:08:44 +0000 Subject: [PATCH 1/3] Bump docker/setup-buildx-action from 1.5.1 to 1.6.0 Bumps [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) from 1.5.1 to 1.6.0. - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v1.5.1...v1.6.0) --- updated-dependencies: - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/docker.build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker.build.yml b/.github/workflows/docker.build.yml index abe4958..9d7b813 100644 --- a/.github/workflows/docker.build.yml +++ b/.github/workflows/docker.build.yml @@ -26,7 +26,7 @@ jobs: uses: docker/setup-qemu-action@v1.2.0 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1.5.1 + uses: docker/setup-buildx-action@v1.6.0 - name: Cache Docker layers uses: actions/cache@v2.1.6 From cfbb5651792cecf6860f9b672a712a5067df1acc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Sep 2021 22:11:27 +0000 Subject: [PATCH 2/3] Bump actions/github-script from 4.1 to 5 Bumps [actions/github-script](https://github.com/actions/github-script) from 4.1 to 5. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v4.1...v5) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/github.prs.combine.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/github.prs.combine.yml b/.github/workflows/github.prs.combine.yml index 9172d6d..3a3973a 100644 --- a/.github/workflows/github.prs.combine.yml +++ b/.github/workflows/github.prs.combine.yml @@ -31,7 +31,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: - - uses: actions/github-script@v4.1 + - uses: actions/github-script@v5 id: fetch-branch-names name: Fetch branch names with: @@ -117,7 +117,7 @@ jobs: git pull origin $sourcebranches --no-edit git push origin $COMBINE_BRANCH_NAME --force-with-lease # Creates a PR with the new combined branch - - uses: actions/github-script@v4.1 + - uses: actions/github-script@v5 name: Create Combined Pull Request env: PRS_STRING: ${{ steps.fetch-branch-names.outputs.prs-string }} From ccf952cb55c677ab45615bf76ce286f8525f89e1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Oct 2021 22:07:46 +0000 Subject: [PATCH 3/3] Bump actions/checkout from 2.3.4 to 2.3.5 Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.4 to 2.3.5. - [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.3.4...v2.3.5) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/docker.build.yml | 2 +- .github/workflows/docker.lint.yml | 2 +- .github/workflows/github.prs.combine.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker.build.yml b/.github/workflows/docker.build.yml index 3ddd3d3..2e06141 100644 --- a/.github/workflows/docker.build.yml +++ b/.github/workflows/docker.build.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2.3.4 + uses: actions/checkout@v2.3.5 - name: Docker meta id: docker_meta diff --git a/.github/workflows/docker.lint.yml b/.github/workflows/docker.lint.yml index c42420d..286b458 100644 --- a/.github/workflows/docker.lint.yml +++ b/.github/workflows/docker.lint.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2.3.4 + uses: actions/checkout@v2.3.5 - name: lint uses: hadolint/hadolint-action@v1.5.0 with: diff --git a/.github/workflows/github.prs.combine.yml b/.github/workflows/github.prs.combine.yml index 9172d6d..74e3a4b 100644 --- a/.github/workflows/github.prs.combine.yml +++ b/.github/workflows/github.prs.combine.yml @@ -93,7 +93,7 @@ jobs: console.log('Combined: ' + combined); return combined # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2.3.3 + - uses: actions/checkout@v2.3.5 with: fetch-depth: 0 token: ${{ secrets.GH_TOKEN_PLUSW }}