diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml index 17096cda0..8779ea203 100644 --- a/.github/workflows/builder.yml +++ b/.github/workflows/builder.yml @@ -50,7 +50,7 @@ jobs: requirements: ${{ steps.requirements.outputs.changed }} steps: - name: Checkout the repository - uses: actions/checkout@v3 + uses: actions/checkout@v3.0.0 with: fetch-depth: 0 @@ -85,7 +85,7 @@ jobs: arch: ${{ fromJson(needs.init.outputs.architectures) }} steps: - name: Checkout the repository - uses: actions/checkout@v3 + uses: actions/checkout@v3.0.0 with: fetch-depth: 0 @@ -145,13 +145,13 @@ jobs: steps: - name: Checkout the repository if: needs.init.outputs.publish == 'true' - uses: actions/checkout@v3 + uses: actions/checkout@v3.0.0 with: fetch-depth: 0 - name: Set up Python ${{ env.DEFAULT_PYTHON }} if: needs.init.outputs.publish == 'true' - uses: actions/setup-python@v3 + uses: actions/setup-python@v3.0.0 with: python-version: ${{ env.DEFAULT_PYTHON }} @@ -184,7 +184,7 @@ jobs: steps: - name: Checkout the repository if: needs.init.outputs.publish == 'true' - uses: actions/checkout@v3 + uses: actions/checkout@v3.0.0 - name: Initialize git if: needs.init.outputs.publish == 'true' @@ -209,7 +209,7 @@ jobs: timeout-minutes: 60 steps: - name: Checkout the repository - uses: actions/checkout@v3 + uses: actions/checkout@v3.0.0 - name: Build the Supervisor if: needs.init.outputs.publish != 'true' diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index fb564ac40..bf34e5a2e 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -23,10 +23,10 @@ jobs: name: Prepare Python ${{ matrix.python-version }} dependencies steps: - name: Check out code from GitHub - uses: actions/checkout@v3 + uses: actions/checkout@v3.0.0 - name: Set up Python ${{ matrix.python-version }} id: python - uses: actions/setup-python@v3 + uses: actions/setup-python@v3.0.0 with: python-version: ${{ matrix.python-version }} - name: Restore Python virtual environment @@ -64,9 +64,9 @@ jobs: needs: prepare steps: - name: Check out code from GitHub - uses: actions/checkout@v3 + uses: actions/checkout@v3.0.0 - name: Set up Python ${{ env.DEFAULT_PYTHON }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v3.0.0 id: python with: python-version: ${{ env.DEFAULT_PYTHON }} @@ -93,7 +93,7 @@ jobs: needs: prepare steps: - name: Check out code from GitHub - uses: actions/checkout@v3 + uses: actions/checkout@v3.0.0 - name: Register hadolint problem matcher run: | echo "::add-matcher::.github/workflows/matchers/hadolint.json" @@ -108,9 +108,9 @@ jobs: needs: prepare steps: - name: Check out code from GitHub - uses: actions/checkout@v3 + uses: actions/checkout@v3.0.0 - name: Set up Python ${{ env.DEFAULT_PYTHON }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v3.0.0 id: python with: python-version: ${{ env.DEFAULT_PYTHON }} @@ -152,9 +152,9 @@ jobs: needs: prepare steps: - name: Check out code from GitHub - uses: actions/checkout@v3 + uses: actions/checkout@v3.0.0 - name: Set up Python ${{ env.DEFAULT_PYTHON }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v3.0.0 id: python with: python-version: ${{ env.DEFAULT_PYTHON }} @@ -184,9 +184,9 @@ jobs: needs: prepare steps: - name: Check out code from GitHub - uses: actions/checkout@v3 + uses: actions/checkout@v3.0.0 - name: Set up Python ${{ env.DEFAULT_PYTHON }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v3.0.0 id: python with: python-version: ${{ env.DEFAULT_PYTHON }} @@ -225,9 +225,9 @@ jobs: needs: prepare steps: - name: Check out code from GitHub - uses: actions/checkout@v3 + uses: actions/checkout@v3.0.0 - name: Set up Python ${{ env.DEFAULT_PYTHON }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v3.0.0 id: python with: python-version: ${{ env.DEFAULT_PYTHON }} @@ -269,9 +269,9 @@ jobs: needs: prepare steps: - name: Check out code from GitHub - uses: actions/checkout@v3 + uses: actions/checkout@v3.0.0 - name: Set up Python ${{ env.DEFAULT_PYTHON }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v3.0.0 id: python with: python-version: ${{ env.DEFAULT_PYTHON }} @@ -301,9 +301,9 @@ jobs: needs: prepare steps: - name: Check out code from GitHub - uses: actions/checkout@v3 + uses: actions/checkout@v3.0.0 - name: Set up Python ${{ env.DEFAULT_PYTHON }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v3.0.0 id: python with: python-version: ${{ env.DEFAULT_PYTHON }} @@ -345,9 +345,9 @@ jobs: name: Run tests Python ${{ matrix.python-version }} steps: - name: Check out code from GitHub - uses: actions/checkout@v3 + uses: actions/checkout@v3.0.0 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v3.0.0 id: python with: python-version: ${{ matrix.python-version }} @@ -403,9 +403,9 @@ jobs: needs: pytest steps: - name: Check out code from GitHub - uses: actions/checkout@v3 + uses: actions/checkout@v3.0.0 - name: Set up Python ${{ env.DEFAULT_PYTHON }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v3.0.0 id: python with: python-version: ${{ env.DEFAULT_PYTHON }} diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml index 1c7be54b2..e2d34e9e1 100644 --- a/.github/workflows/lock.yml +++ b/.github/workflows/lock.yml @@ -9,7 +9,7 @@ jobs: lock: runs-on: ubuntu-latest steps: - - uses: dessant/lock-threads@v3 + - uses: dessant/lock-threads@v3.0.0 with: github-token: ${{ github.token }} issue-inactive-days: "30" diff --git a/.github/workflows/release-drafter.yml b/.github/workflows/release-drafter.yml index 0d649f03f..08dc4f3c1 100644 --- a/.github/workflows/release-drafter.yml +++ b/.github/workflows/release-drafter.yml @@ -11,7 +11,7 @@ jobs: name: Release Drafter steps: - name: Checkout the repository - uses: actions/checkout@v3 + uses: actions/checkout@v3.0.0 with: fetch-depth: 0 @@ -36,7 +36,7 @@ jobs: echo "::set-output name=version::$datepre.$newpost" - name: Run Release Drafter - uses: release-drafter/release-drafter@v5 + uses: release-drafter/release-drafter@v5.18.1 with: tag: ${{ steps.version.outputs.version }} name: ${{ steps.version.outputs.version }} diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 76eb89e54..61f96e08b 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -9,7 +9,7 @@ jobs: stale: runs-on: ubuntu-latest steps: - - uses: actions/stale@v4 + - uses: actions/stale@v4.1.0 with: repo-token: ${{ secrets.GITHUB_TOKEN }} days-before-stale: 60