diff --git a/.github/workflows/pr_tests.yml b/.github/workflows/pr_tests.yml index 62dfeb04..dbb7a28c 100644 --- a/.github/workflows/pr_tests.yml +++ b/.github/workflows/pr_tests.yml @@ -32,7 +32,7 @@ jobs: runs-on: ubuntu-latest continue-on-error: true steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - name: "Install Ruby ${{matrix.puppet.ruby_version}}" uses: ruby/setup-ruby@v1 with: @@ -46,7 +46,7 @@ jobs: name: 'RELENG checks' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - name: 'Install Ruby ${{matrix.puppet.ruby_version}}' uses: ruby/setup-ruby@v1 with: @@ -82,7 +82,7 @@ jobs: env: PUPPET_VERSION: '${{matrix.puppet.puppet_version}}' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - name: 'Install Ruby ${{matrix.puppet.ruby_version}}' uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/release_rpms.yml b/.github/workflows/release_rpms.yml index 92b219ec..9e2a4bad 100644 --- a/.github/workflows/release_rpms.yml +++ b/.github/workflows/release_rpms.yml @@ -194,7 +194,7 @@ jobs: ) - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v5 with: repository: ${{ env.TARGET_REPO }} ref: ${{ env.RELEASE_TAG }} diff --git a/.github/workflows/tag_deploy_rubygem__github-rpms.yml b/.github/workflows/tag_deploy_rubygem__github-rpms.yml index c7674d1c..964540ff 100644 --- a/.github/workflows/tag_deploy_rubygem__github-rpms.yml +++ b/.github/workflows/tag_deploy_rubygem__github-rpms.yml @@ -64,7 +64,7 @@ jobs: steps: - name: "Assert '${{ github.ref }}' is a tag" run: '[[ "$GITHUB_REF" =~ ^refs/tags/ ]] || { echo "::error ::GITHUB_REF is not a tag: ${GITHUB_REF}"; exit 1 ; }' - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 with: ref: ${{ github.ref }} clean: true @@ -117,7 +117,7 @@ jobs: tag: ${{ steps.tag-check.outputs.tag }} steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v5 with: ref: ${{ github.ref }} clean: true