diff --git a/.github/workflows/images.yml b/.github/workflows/images.yml index df29e46..205e7d6 100644 --- a/.github/workflows/images.yml +++ b/.github/workflows/images.yml @@ -4,7 +4,8 @@ on: pull_request: workflow_run: workflows: ["update.sh"] - branches: [stable] + branches: + - stable types: - completed @@ -20,8 +21,8 @@ jobs: outputs: strategy: ${{ steps.generate-jobs.outputs.strategy }} steps: - - uses: actions/checkout@v3 - - uses: docker-library/bashbrew@v0.1.5 + - uses: actions/checkout@v4 + - uses: docker-library/bashbrew@v0.1.12 - id: generate-jobs name: Generate Jobs run: | @@ -35,7 +36,7 @@ jobs: name: ${{ matrix.name }} runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Prepare Environment run: ${{ matrix.runs.prepare }} - name: Run update.sh script diff --git a/.github/workflows/update-sh.yml b/.github/workflows/update-sh.yml index 1fc7f8f..9c2502b 100644 --- a/.github/workflows/update-sh.yml +++ b/.github/workflows/update-sh.yml @@ -12,7 +12,7 @@ jobs: name: Run update.sh script runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Run update.sh script run: ./update.sh - name: Commit files