From fe49c15c15d6103e96f5aa8bad44bf598dea1838 Mon Sep 17 00:00:00 2001 From: schapron Date: Tue, 19 Dec 2023 16:27:11 +0100 Subject: [PATCH] enh(chore): github actions hardening --- .github/dependabot.yml | 9 +++++++++ .github/workflows/actionlint.yml | 4 ++-- .github/workflows/archive.yml | 8 ++++---- .github/workflows/documentation.yml | 22 +++++++++++----------- 4 files changed, 26 insertions(+), 17 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000000..e5f677b68c3b --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,9 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: '/' + schedule: + interval: weekly + open-pull-requests-limit: 5 + labels: + - 'pr: dependencies' diff --git a/.github/workflows/actionlint.yml b/.github/workflows/actionlint.yml index f98dfca9c875..8c4d0f7df1d2 100644 --- a/.github/workflows/actionlint.yml +++ b/.github/workflows/actionlint.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout sources - uses: actions/checkout@v4 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Download actionlint id: get_actionlint @@ -39,7 +39,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout sources - uses: actions/checkout@v4 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Install Yaml run: | diff --git a/.github/workflows/archive.yml b/.github/workflows/archive.yml index 0f14ccf74914..861a7e0c58ca 100644 --- a/.github/workflows/archive.yml +++ b/.github/workflows/archive.yml @@ -15,10 +15,10 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout sources - uses: actions/checkout@v3 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Set up Node - uses: actions/setup-node@v3 + uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3.8.2 with: node-version: 20 @@ -37,7 +37,7 @@ jobs: run: ARCHIVED_VERSION="${{ github.event.inputs.version }}" yarn build - name: Store build archived doc in cache - uses: actions/cache/save@v3 + uses: actions/cache/save@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 with: path: "./build" key: "${{ github.sha }}-${{ github.run_id }}-build-archived-doc" @@ -47,7 +47,7 @@ jobs: runs-on: [self-hosted, infra] steps: - name: Restore built archived doc from cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 with: path: "./build" key: "${{ github.sha }}-${{ github.run_id }}-build-archived-doc" diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 317bdb523243..ee99de018a71 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -26,10 +26,10 @@ jobs: steps: - name: Checkout sources - uses: actions/checkout@v4 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Get changes - uses: dorny/paths-filter@v2 + uses: dorny/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 # v2.11.1 id: changes with: token: ${{ github.token }} @@ -169,10 +169,10 @@ jobs: steps: - name: Checkout sources - uses: actions/checkout@v4 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Set up Node - uses: actions/setup-node@v3 + uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3.8.2 with: node-version: 20 cache: yarn @@ -191,7 +191,7 @@ jobs: BASE_URL: ${{ github.event_name == 'pull_request' && format('/previews/pr-{0}/{1}', github.event.pull_request.number, matrix.environment) || '' }} - name: Store build in cache - uses: actions/cache/save@v3 + uses: actions/cache/save@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 with: path: "./build" key: "${{ github.sha }}-${{ github.run_id }}-build-doc-${{ matrix.environment }}" @@ -210,10 +210,10 @@ jobs: steps: - name: Checkout sources - uses: actions/checkout@v4 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Restore build from cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 with: path: "./build" key: "${{ github.sha }}-${{ github.run_id }}-build-doc-${{ matrix.environment }}" @@ -290,10 +290,10 @@ jobs: steps: - name: Checkout sources - uses: actions/checkout@v4 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Restore build from cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 with: path: "./build" key: "${{ github.sha }}-${{ github.run_id }}-build-doc-staging" @@ -322,10 +322,10 @@ jobs: steps: - name: Checkout sources - uses: actions/checkout@v4 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - name: Restore build from cache - uses: actions/cache/restore@v3 + uses: actions/cache/restore@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2 with: path: "./build" key: "${{ github.sha }}-${{ github.run_id }}-build-doc-next"