Skip to content

Commit baf4fbc

Browse files
ajitpratap0Ajit Pratap Singh
authored andcommitted
fix: resolve GitHub Action test failures caused by security fixes
- Update actions/cache from deprecated commit hash to @v4 - The commit hash 0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 was deprecated by GitHub - This was causing all GitHub Action workflow tests to fail - Using semantic version @v4 is the recommended approach Root cause: Security fixes in previous commit used pinned commit hash that GitHub has since deprecated, breaking all action tests. Fixes #92
1 parent 3bec7f8 commit baf4fbc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ runs:
8989

9090
- name: Cache GoSQLX binary
9191
id: cache-gosqlx
92-
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
92+
uses: actions/cache@v4
9393
with:
9494
path: ~/go/bin/gosqlx
9595
key: gosqlx-${{ inputs.gosqlx-version }}-${{ runner.os }}-${{ runner.arch }}

0 commit comments

Comments
 (0)