diff options
| -rw-r--r-- | .github/workflows/create_release.yml | 8 | ||||
| -rw-r--r-- | .github/workflows/validate.yml | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index 5b9506356..8fa63899e 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -13,7 +13,7 @@ jobs: VCPKG_VERSION: 2022.08.15 steps: - - uses: actions/[email protected] + - uses: actions/checkout@v3 - name: Setup xmake uses: xmake-io/github-action-setup-xmake@v1 @@ -64,7 +64,7 @@ jobs: VCPKG_VERSION: 2022.08.15 steps: - - uses: actions/[email protected] + - uses: actions/checkout@v3 - name: Set up GCC 11 uses: egor-tensin/setup-gcc@v1 @@ -127,7 +127,7 @@ jobs: VCPKG_VERSION: 2022.08.15 steps: - - uses: actions/[email protected] + - uses: actions/checkout@v3 # - name: Set up GCC 11 # uses: egor-tensin/setup-gcc@v1 @@ -193,7 +193,7 @@ jobs: needs: [bundle-linux, bundle-macos, bundle-windows] steps: - - uses: actions/[email protected] + - uses: actions/checkout@v3 - name: Read VERSION.txt id: read_version diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 5d4f4617b..a12878e87 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -32,7 +32,7 @@ jobs: runs-on: [self-hosted, linux, x64] steps: - - uses: actions/[email protected] + - uses: actions/checkout@v3 - name: clang-format uses: jidicula/[email protected] @@ -58,7 +58,7 @@ jobs: steps: - name: Checkout - uses: actions/[email protected] + uses: actions/checkout@v3 - name: Setup xmake uses: xmake-io/github-action-setup-xmake@v1 @@ -124,7 +124,7 @@ jobs: steps: - name: Checkout - uses: actions/[email protected] + uses: actions/checkout@v3 - name: Set up GCC 11 uses: egor-tensin/setup-gcc@v1 @@ -195,7 +195,7 @@ jobs: steps: - name: Checkout - uses: actions/[email protected] + uses: actions/checkout@v3 - name: Setup xmake uses: xmake-io/github-action-setup-xmake@v1 |