From 089be2e604b6ccd5c9dcaec76959bf392662acdf Mon Sep 17 00:00:00 2001 From: Siegfried Weber Date: Fri, 22 Oct 2021 10:17:12 +0200 Subject: [PATCH 1/2] Bump actions/checkout from 2.3.4 to 2.3.5 --- .github/workflows/run.yml | 4 ++-- template/.github/workflows/daily_security.yml | 2 +- template/.github/workflows/docker.yml | 2 +- .../.github/workflows/publish_dev_artifacts.yml.j2 | 4 ++-- .../.github/workflows/publish_release_artifacts.yml.j2 | 4 ++-- template/.github/workflows/rust.yml | 10 +++++----- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/run.yml b/.github/workflows/run.yml index 743c6c42..282fefcb 100644 --- a/.github/workflows/run.yml +++ b/.github/workflows/run.yml @@ -13,7 +13,7 @@ jobs: create-prs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v2.3.5 - name: Install Ansible env: DEBIAN_FRONTEND: noninteractive @@ -29,4 +29,4 @@ jobs: sudo apt update && \ sudo apt install gh - name: Run playbook - run: ansible-playbook playbook/playbook.yaml --extra-vars "gh_access_token=${{ secrets.gh_access_token }} base_dir=$(pwd) commit_hash=${{ github.sha }} original_commit_message='${{ github.event.head_commit.message }}'" \ No newline at end of file + run: ansible-playbook playbook/playbook.yaml --extra-vars "gh_access_token=${{ secrets.gh_access_token }} base_dir=$(pwd) commit_hash=${{ github.sha }} original_commit_message='${{ github.event.head_commit.message }}'" diff --git a/template/.github/workflows/daily_security.yml b/template/.github/workflows/daily_security.yml index 0223b77a..7b8f6b67 100644 --- a/template/.github/workflows/daily_security.yml +++ b/template/.github/workflows/daily_security.yml @@ -13,7 +13,7 @@ jobs: audit: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v2.3.5 - uses: actions-rs/audit-check@v1.2.0 with: token: ${{ secrets.GITHUB_TOKEN }} diff --git a/template/.github/workflows/docker.yml b/template/.github/workflows/docker.yml index be303d7b..966787f3 100644 --- a/template/.github/workflows/docker.yml +++ b/template/.github/workflows/docker.yml @@ -14,7 +14,7 @@ jobs: name: Build Docker image runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v2.3.5 - shell: bash env: NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }} diff --git a/template/.github/workflows/publish_dev_artifacts.yml.j2 b/template/.github/workflows/publish_dev_artifacts.yml.j2 index 0974e538..855b8b37 100644 --- a/template/.github/workflows/publish_dev_artifacts.yml.j2 +++ b/template/.github/workflows/publish_dev_artifacts.yml.j2 @@ -23,7 +23,7 @@ jobs: debian10: runs-on: debian10 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v2.3.5 - name: Change version if is PR if: ${{ github.event_name == 'pull_request' }} # We use "mr" instead of "pr" to denote pull request builds, as this prefix comes before "nightly" when lexically @@ -54,7 +54,7 @@ jobs: matrix: node: [ 7, 8 ] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v2.3.5 - name: Change version if is PR if: ${{ github.event_name == 'pull_request' }} # We use "mr" instead of "pr" to denote pull request builds, as this prefix comes before "nightly" when lexically diff --git a/template/.github/workflows/publish_release_artifacts.yml.j2 b/template/.github/workflows/publish_release_artifacts.yml.j2 index bc3bbf5b..25acc4db 100644 --- a/template/.github/workflows/publish_release_artifacts.yml.j2 +++ b/template/.github/workflows/publish_release_artifacts.yml.j2 @@ -22,7 +22,7 @@ jobs: debian10: runs-on: debian10 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v2.3.5 - name: Change version if is PR if: ${{ github.event_name == 'pull_request' }} # We use "mr" instead of "pr" to denote pull request builds, as this prefix comes before "nightly" when lexically @@ -53,7 +53,7 @@ jobs: matrix: node: [ 7, 8 ] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v2.3.5 - name: Change version if is PR if: ${{ github.event_name == 'pull_request' }} # We use "mr" instead of "pr" to denote pull request builds, as this prefix comes before "nightly" when lexically diff --git a/template/.github/workflows/rust.yml b/template/.github/workflows/rust.yml index 27ee21d5..3d281d5c 100644 --- a/template/.github/workflows/rust.yml +++ b/template/.github/workflows/rust.yml @@ -22,7 +22,7 @@ jobs: name: Run tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v2.3.5 - uses: actions-rs/toolchain@v1.0.7 with: profile: minimal @@ -40,7 +40,7 @@ jobs: name: Run rustfmt runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v2.3.5 - uses: actions-rs/toolchain@v1.0.7 with: profile: minimal @@ -56,7 +56,7 @@ jobs: name: Run rustdoc runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v2.3.5 - uses: actions-rs/toolchain@v1.0.7 with: profile: minimal @@ -73,7 +73,7 @@ jobs: name: Run clippy runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v2.3.5 - uses: actions-rs/toolchain@v1.0.7 with: profile: minimal @@ -111,7 +111,7 @@ jobs: continue-on-error: ${{ matrix.checks == 'advisories' }} steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v2.3.5 - uses: EmbarkStudios/cargo-deny-action@v1.2.6 with: command: check ${{ matrix.checks }} From 803084c9b19befc69aa0991d62a609e7c5dc3fb2 Mon Sep 17 00:00:00 2001 From: Siegfried Weber Date: Mon, 25 Oct 2021 10:25:47 +0200 Subject: [PATCH 2/2] Add extra crate stackable-hdfs-crd to hbase-operator --- repositories.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/repositories.yaml b/repositories.yaml index 943cdb1c..6f565b72 100644 --- a/repositories.yaml +++ b/repositories.yaml @@ -35,6 +35,8 @@ repositories: url: stackabletech/hbase-operator.git product_string: hbase pretty_string: Apache HBase + extra_crates: + - stackable-hdfs-crd - name: hdfs-operator url: stackabletech/hdfs-operator.git product_string: hdfs @@ -48,4 +50,4 @@ repositories: # This is uncommented as I had issues with everything being deleted when this was just present as an empty key. # May be something to investigate. -#retired_files: \ No newline at end of file +#retired_files: