From d2fddced1705f4297bcd797353627305d4a75542 Mon Sep 17 00:00:00 2001 From: Oliver Feldmann Date: Mon, 6 Nov 2023 11:20:00 +0100 Subject: [PATCH 1/4] Use checkout v3 action --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0ae1bb4..a027ce5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: matrix: base-image-tag: [16-buster, 16-bullseye, 18-bullseye, 16-bookworm, 18-bookworm, 20-bookworm] steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Determine Java version id: java_version run: | From 6c86cc3ead64c26509d587008d3329abfa7e59ca Mon Sep 17 00:00:00 2001 From: Oliver Feldmann Date: Mon, 6 Nov 2023 11:21:21 +0100 Subject: [PATCH 2/4] Use checkout v3 action --- .github/workflows/reuse.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/reuse.yaml b/.github/workflows/reuse.yaml index 082f443..b4606a4 100644 --- a/.github/workflows/reuse.yaml +++ b/.github/workflows/reuse.yaml @@ -6,6 +6,6 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: REUSE Compliance Check uses: fsfe/reuse-action@v1.1 From f63495b887a9ba6db572c2b1c3a178a6337726bb Mon Sep 17 00:00:00 2001 From: Oliver Feldmann Date: Mon, 6 Nov 2023 11:33:02 +0100 Subject: [PATCH 3/4] Drop 16-buster --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a567846..ff9bc89 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - base-image-tag: [16-buster, 16-bullseye, 18-bullseye, 16-bookworm, 18-bookworm, 20-bookworm] + base-image-tag: [16-bullseye, 18-bullseye, 16-bookworm, 18-bookworm, 20-bookworm] steps: - uses: actions/checkout@master - name: Determine Java version From 6adacca546945f8d9934a14a69da951fd9b0d490 Mon Sep 17 00:00:00 2001 From: Oliver Feldmann Date: Mon, 6 Nov 2023 12:24:53 +0100 Subject: [PATCH 4/4] Remove buster image --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a027ce5..68c9909 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - base-image-tag: [16-buster, 16-bullseye, 18-bullseye, 16-bookworm, 18-bookworm, 20-bookworm] + base-image-tag: [16-bullseye, 18-bullseye, 16-bookworm, 18-bookworm, 20-bookworm] steps: - uses: actions/checkout@v3 - name: Determine Java version