Skip to content

Commit c6aae36

Browse files
authored
Merge pull request #211 from github/dependabot/github_actions/dependencies-bb5c4f169a
2 parents e03cc46 + 16170f1 commit c6aae36

7 files changed

+10
-10
lines changed

.github/workflows/docker-image.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
build:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
17+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
1818
- name: Build the Docker image
1919
run: docker build . --file Dockerfile --platform linux/amd64 --tag stale_repos:"$(date +%s)"

.github/workflows/linter.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
statuses: write
1919
steps:
2020
- name: Checkout Code
21-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
21+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
2222
with:
2323
# Full git history is needed to get a proper
2424
# list of changed files within `super-linter`

.github/workflows/major-version-updater.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
contents: write
1616
steps:
1717
- name: Checkout Repo
18-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
18+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
1919
- name: version
2020
id: version
2121
run: |

.github/workflows/python-package.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
matrix:
2020
python-version: [3.9, 3.11, 3.12]
2121
steps:
22-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
22+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
2323
- name: Set up Python ${{ matrix.python-version }}
2424
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3
2525
with:

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ jobs:
6060
registry: ${{ env.REGISTRY }}
6161
username: ${{ github.actor }}
6262
password: ${{ secrets.GITHUB_TOKEN }}
63-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
63+
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
6464
- name: Push Docker Image
6565
if: ${{ success() }}
66-
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85
66+
uses: docker/build-push-action@32945a339266b759abcbdc89316275140b0fc960
6767
with:
6868
context: .
6969
file: ./Dockerfile

.github/workflows/scorecard.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: "Checkout code"
28-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
28+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
2929
with:
3030
persist-credentials: false
3131

@@ -42,6 +42,6 @@ jobs:
4242
path: results.sarif
4343
retention-days: 5
4444
- name: "Upload to code-scanning"
45-
uses: github/codeql-action/upload-sarif@294a9d92911152fe08befb9ec03e240add280cb3 # v3.26.8
45+
uses: github/codeql-action/upload-sarif@461ef6c76dfe95d5c364de2f431ddbd31a417628 # v3.26.9
4646
with:
4747
sarif_file: results.sarif

.github/workflows/use-action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ jobs:
1919
packages: read
2020
steps:
2121
- name: Checkout code
22-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
22+
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938
2323
- name: Run stale_repos tool
2424
uses: docker://ghcr.io/github/stale_repos:v1
2525
env:
2626
GH_TOKEN: ${{ secrets.GH_TOKEN }}
2727
ORGANIZATION: github
2828
INACTIVE_DAYS: 1
2929
- name: Create issue
30-
uses: peter-evans/create-issue-from-file@24452a72d85239eacf1468b0f1982a9f3fec4c94
30+
uses: peter-evans/create-issue-from-file@e8ef132d6df98ed982188e460ebb3b5d4ef3a9cd
3131
with:
3232
title: Stale repository report
3333
content-filepath: ./stale_repos.md

0 commit comments

Comments
 (0)