Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: DontShaveTheYak/jenkins-std-lib
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3aefe2cee0a4c5e95e9b25e8d8e3f350c829a804
Choose a base ref
..
head repository: DontShaveTheYak/jenkins-std-lib
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9d77f387af11c372828ccf0bc60ae4e84d5e1e7c
Choose a head ref
Showing with 8 additions and 8 deletions.
  1. +4 −4 .github/workflows/release.yml
  2. +2 −2 .github/workflows/test.yml
  3. +1 −1 build.gradle
  4. +1 −1 tests/requirements.txt
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ jobs:
steps:

- name: Checkout Code
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3
with:
fetch-depth: 0

@@ -51,7 +51,7 @@ jobs:
needs: tag
steps:
- name: Checkout Code
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3
with:
ref: ${{ github.base_ref }}

@@ -72,7 +72,7 @@ jobs:
needs: [tag, publish]
steps:
- name: Create Draft Release
uses: release-drafter/release-drafter@v5.15.0
uses: release-drafter/release-drafter@v5.19.0
if: github.base_ref == 'develop'
with:
tag: ${{needs.tag.outputs.tag}}
@@ -82,7 +82,7 @@ jobs:

- name: Create Release
id: release_info
uses: release-drafter/release-drafter@v5.15.0
uses: release-drafter/release-drafter@v5.19.0
if: github.base_ref == 'master'
with:
tag: ${{needs.tag.outputs.tag}}
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3

- name: Run FOSSA scan and upload build data
uses: fossa-contrib/fossa-action@v1.2.0
@@ -52,7 +52,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2.4.0
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v2.2.2
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -131,7 +131,7 @@ configurations {
dependencies {
// Use the latest Groovy version for building this library
compileOnly('org.codehaus.groovy:groovy-all:3.0.9')
compileOnly('org.jenkins-ci.main:jenkins-core:2.320')
compileOnly('org.jenkins-ci.main:jenkins-core:2.338')
compileOnly('com.cloudbees:groovy-cps:1.32')
}

2 changes: 1 addition & 1 deletion tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
docker==5.0.3
pre-commit==2.17.0
pytest==6.2.5
requests==2.26.0
requests==2.27.1
semver==2.13.0