diff --git a/.github/workflows/reusable-base.yml b/.github/workflows/reusable-base.yml index 027c440..2d4ab21 100644 --- a/.github/workflows/reusable-base.yml +++ b/.github/workflows/reusable-base.yml @@ -60,7 +60,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: submodules: ${{ inputs.submodules }} diff --git a/.github/workflows/reusable-sync.yml b/.github/workflows/reusable-sync.yml index ad7adfd..f5f4962 100644 --- a/.github/workflows/reusable-sync.yml +++ b/.github/workflows/reusable-sync.yml @@ -97,7 +97,7 @@ jobs: steps: # Base setup - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 # As we want to check if the remote branch already exists and is up to date token: ${{ secrets.GITHUB_TOKEN_OVERRIDE || secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/type-check.yml b/.github/workflows/type-check.yml index 5dcc20f..d62f6c2 100644 --- a/.github/workflows/type-check.yml +++ b/.github/workflows/type-check.yml @@ -34,7 +34,7 @@ on: type: string submodules: default: false - description: 'From actions/checkout@v5' + description: 'From actions/checkout@v6' required: false type: string @@ -73,7 +73,7 @@ jobs: ts_lib: ${{ fromJson(needs.resolve_inputs.outputs.tsLibs) }} ts_project: ${{ fromJson(needs.resolve_inputs.outputs.tsProjects) }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Use Node.js ${{ matrix.node_version }} uses: actions/setup-node@v4 with: