diff options
author | J0WI <J0WI@users.noreply.github.com> | 2024-03-05 23:24:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-05 23:24:25 +0000 |
commit | 6151f60208d08fe7dbd28b6b00a3bcd1e626e7ff (patch) | |
tree | 89cbf7d3454f5ab93dac52b4720fd4545a6c09c2 | |
parent | f9ce81fb7fa05e854bbdac7a180b267e2403e93c (diff) |
Update GitHub Actions (#2170)
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
-rw-r--r-- | .github/workflows/images.yml | 6 | ||||
-rw-r--r-- | .github/workflows/update-sh.yml | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/images.yml b/.github/workflows/images.yml index ae9762a6..e8b70226 100644 --- a/.github/workflows/images.yml +++ b/.github/workflows/images.yml @@ -20,8 +20,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@HEAD - id: generate-jobs name: Generate Jobs run: | @@ -36,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 4e03239a..3b969c9e 100644 --- a/.github/workflows/update-sh.yml +++ b/.github/workflows/update-sh.yml @@ -13,7 +13,7 @@ jobs: name: Run update.sh script runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Run update.sh script run: ./update.sh - name: Commit files |