diff --git a/.github/workflows/foreman_plugin.yml b/.github/workflows/foreman_plugin.yml index c807358..0971e80 100644 --- a/.github/workflows/foreman_plugin.yml +++ b/.github/workflows/foreman_plugin.yml @@ -115,12 +115,12 @@ jobs: - name: generate artifact suffix run: echo "ARTIFACT_SUFFIX=$(echo '${{ inputs.plugin }}-ruby-${{ matrix.ruby }}-node-${{ matrix.node }}-pg-${{ matrix.postgresql }}-foreman-${{ inputs.foreman_version }}-${{ matrix.task }}' | tr -cd '[:alnum:]-')" >> "${GITHUB_ENV}" - name: "Check out Foreman ${{ inputs.foreman_version }}" - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: ${{ inputs.foreman_repository }} ref: ${{ inputs.foreman_version }} - name: Check out plugin - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: ${{ inputs.plugin_repository }} ref: ${{ inputs.plugin_version }} @@ -228,7 +228,7 @@ jobs: - run: sudo apt-get update - run: sudo apt-get install -y build-essential libcurl4-openssl-dev zlib1g-dev libpq-dev - name: "Check out Foreman ${{ inputs.foreman_version }}" - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: ${{ inputs.foreman_repository }} ref: ${{ inputs.foreman_version }} @@ -243,7 +243,7 @@ jobs: bundle exec rake db:migrate bundle exec rake db:seed - name: Check out plugin - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: ${{ inputs.plugin_repository }} ref: ${{ inputs.plugin_version }} diff --git a/.github/workflows/foreman_plugin_js.yml b/.github/workflows/foreman_plugin_js.yml index 1560459..eb633e5 100644 --- a/.github/workflows/foreman_plugin_js.yml +++ b/.github/workflows/foreman_plugin_js.yml @@ -85,13 +85,13 @@ jobs: - name: generate artifact suffix run: echo "ARTIFACT_SUFFIX=$(echo 'ruby-${{ matrix.ruby }}-node-${{ matrix.node }}-foreman-${{ inputs.foreman_version }}' | tr -cd '[:alnum:]-')" >> "${GITHUB_ENV}" - name: "Check out Foreman ${{ inputs.foreman_version }}" - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: ${{ inputs.foreman_repository }} ref: ${{ inputs.foreman_version }} path: ./foreman - name: Check out plugin - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: ${{ inputs.plugin_repository }} ref: ${{ inputs.plugin_version }} diff --git a/.github/workflows/release-gem.yml b/.github/workflows/release-gem.yml index c8f4869..fc0a84d 100644 --- a/.github/workflows/release-gem.yml +++ b/.github/workflows/release-gem.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest if: github.repository_owner == inputs.allowed_owner steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: 'Install Ruby ${{ inputs.ruby_version }}' uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/rubocop.yml b/.github/workflows/rubocop.yml index 425df94..43b1256 100644 --- a/.github/workflows/rubocop.yml +++ b/.github/workflows/rubocop.yml @@ -35,7 +35,7 @@ jobs: name: Rubocop runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: install additional packages if: ${{ inputs.additional_packages != '' }} run: sudo apt-get install -y ${{ inputs.additional_packages }} diff --git a/.github/workflows/smart_proxy_plugin.yml b/.github/workflows/smart_proxy_plugin.yml index 2a66417..38bc3e6 100644 --- a/.github/workflows/smart_proxy_plugin.yml +++ b/.github/workflows/smart_proxy_plugin.yml @@ -32,7 +32,7 @@ jobs: name: Verify supported Ruby versions runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: repository: ${{ inputs.plugin_repository }} ref: ${{ inputs.plugin_version }} diff --git a/.github/workflows/test-gem.yml b/.github/workflows/test-gem.yml index 4642f1f..71e5e00 100644 --- a/.github/workflows/test-gem.yml +++ b/.github/workflows/test-gem.yml @@ -60,7 +60,7 @@ jobs: if: ${{ inputs.extra_packages }} - name: Load environment variables from caller run: echo "${{ inputs.environment_variables }}" >> $GITHUB_ENV - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: repository: ${{ inputs.gem_repository }} ref: ${{ inputs.gem_version }}