diff options
author | morpheus65535 <[email protected]> | 2023-11-15 06:23:39 -0500 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2023-11-15 06:23:39 -0500 |
commit | c10f5cf1a7b816d27b77c55d626324b1f055df20 (patch) | |
tree | f5777508f507e55a661bbbe9fbc30493b116389c | |
parent | f2bb48ac9a47e738e09fa5386cbf5189f3b51210 (diff) | |
download | bazarr-c10f5cf1a7b816d27b77c55d626324b1f055df20.tar.gz bazarr-c10f5cf1a7b816d27b77c55d626324b1f055df20.zip |
no log: pipeline action fix... again...v1.3.2-beta.13
-rw-r--r-- | .github/workflows/ci.yml | 4 | ||||
-rw-r--r-- | .github/workflows/release_beta_to_dev.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/release_dev_to_master.yaml | 4 | ||||
-rw-r--r-- | .github/workflows/test_bazarr_execution.yml | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21c8b1228..160644586 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/[email protected] - name: Cache node_modules uses: actions/cache@v3 @@ -73,7 +73,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/[email protected] - name: Set up Python 3.8 uses: actions/setup-python@v4 diff --git a/.github/workflows/release_beta_to_dev.yaml b/.github/workflows/release_beta_to_dev.yaml index ac0f7ec32..24e29c894 100644 --- a/.github/workflows/release_beta_to_dev.yaml +++ b/.github/workflows/release_beta_to_dev.yaml @@ -18,7 +18,7 @@ jobs: exit 1 - name: Checkout - uses: actions/checkout@v3 + uses: actions/[email protected] with: fetch-depth: ${{ env.FETCH_DEPTH }} ref: development diff --git a/.github/workflows/release_dev_to_master.yaml b/.github/workflows/release_dev_to_master.yaml index 79dd17cd1..a618f43cb 100644 --- a/.github/workflows/release_dev_to_master.yaml +++ b/.github/workflows/release_dev_to_master.yaml @@ -22,7 +22,7 @@ jobs: exit 1 - name: Checkout - uses: actions/checkout@v3 + uses: actions/[email protected] with: fetch-depth: 0 ref: development @@ -64,7 +64,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/[email protected] - name: Merge development -> master uses: devmasx/[email protected] diff --git a/.github/workflows/test_bazarr_execution.yml b/.github/workflows/test_bazarr_execution.yml index e12512f6f..a10a2add2 100644 --- a/.github/workflows/test_bazarr_execution.yml +++ b/.github/workflows/test_bazarr_execution.yml @@ -16,7 +16,7 @@ jobs: exit 1 - name: Checkout - uses: actions/checkout@v3 + uses: actions/[email protected] with: fetch-depth: ${{ env.FETCH_DEPTH }} ref: development |